From a692f716706da06d74cc9cdc5b99889ef7dc9c21 Mon Sep 17 00:00:00 2001 From: Wenhan Tang Date: Tue, 29 Aug 2023 15:24:35 -0500 Subject: [PATCH 001/127] change aero_data --- src/aero_data.F90 | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/src/aero_data.F90 b/src/aero_data.F90 index 223271495..078c99d36 100644 --- a/src/aero_data.F90 +++ b/src/aero_data.F90 @@ -62,6 +62,10 @@ module pmc_aero_data real(kind=dp), allocatable :: molec_weight(:) !> Length \c aero_data_n_spec(aero_data), kappas (1). real(kind=dp), allocatable :: kappa(:) + !> Length \c aero_data_n_spec(aero_data), abifm_m (1). + real(kind=dp), allocatable :: abifm_m(:) + !> Length \c aero_data_n_spec(aero_data), abifm_c (1). + real(kind=dp), allocatable :: abifm_c(:) !> Length \c aero_data_n_source(aero_data), source names. character(len=AERO_SOURCE_NAME_LEN), allocatable :: source_name(:) !> Fractal particle parameters. @@ -404,6 +408,8 @@ subroutine spec_file_read_aero_data(file, aero_data) !! - molecular weight (real, unit kg/mol) !! - kappa hygroscopicity parameter (real, dimensionless) - if !! zero, then inferred from the ions value + !! - abifm_m: The m parameter for ABIFM algorithm + !! - abifm_c: The c parameter for ABIFM algorithm !! !! This specifies both which species are to be recognized as !! aerosol consituents, as well as their physical properties. For @@ -430,7 +436,7 @@ subroutine spec_file_read_aero_data(file, aero_data) ! check the data size n_species = size(species_data, 1) - if (.not. ((size(species_data, 2) == 4) .or. (n_species == 0))) then + if (.not. ((size(species_data, 2) == 6) .or. (n_species == 0))) then call die_msg(428926381, 'each line in ' // trim(file%name) & // ' should contain exactly 5 values') end if @@ -442,12 +448,16 @@ subroutine spec_file_read_aero_data(file, aero_data) call ensure_integer_array_size(aero_data%num_ions, n_species) call ensure_real_array_size(aero_data%molec_weight, n_species) call ensure_real_array_size(aero_data%kappa, n_species) + call ensure_real_array_size(aero_data%abifm_m, n_species) + call ensure_real_array_size(aero_data%abifm_c, n_species) do i = 1,n_species aero_data%name(i) = species_name(i)(1:AERO_NAME_LEN) aero_data%density(i) = species_data(i,1) aero_data%num_ions(i) = nint(species_data(i,2)) aero_data%molec_weight(i) = species_data(i,3) aero_data%kappa(i) = species_data(i,4) + aero_data%abifm_m(i) = species_data(i,5) + aero_data%abifm_c(i) = species_data(i,6) call assert_msg(232362742, & (aero_data%num_ions(i) == 0) .or. (aero_data%kappa(i) == 0d0), & "ions and kappa both non-zero for species " & @@ -519,6 +529,8 @@ integer function pmc_mpi_pack_size_aero_data(val) + pmc_mpi_pack_size_integer_array(val%num_ions) & + pmc_mpi_pack_size_real_array(val%molec_weight) & + pmc_mpi_pack_size_real_array(val%kappa) & + + pmc_mpi_pack_size_real_array(val%abifm_m) & + + pmc_mpi_pack_size_real_array(val%abifm_c) & + pmc_mpi_pack_size_string_array(val%source_name) & + pmc_mpi_pack_size_fractal(val%fractal) @@ -547,6 +559,8 @@ subroutine pmc_mpi_pack_aero_data(buffer, position, val) call pmc_mpi_pack_integer_array(buffer, position, val%num_ions) call pmc_mpi_pack_real_array(buffer, position, val%molec_weight) call pmc_mpi_pack_real_array(buffer, position, val%kappa) + call pmc_mpi_pack_real_array(buffer, position, val%abifm_m) + call pmc_mpi_pack_real_array(buffer, position, val%abifm_c) call pmc_mpi_pack_string_array(buffer, position, val%source_name) call pmc_mpi_pack_fractal(buffer, position, val%fractal) call assert(183834856, & @@ -578,6 +592,8 @@ subroutine pmc_mpi_unpack_aero_data(buffer, position, val) call pmc_mpi_unpack_integer_array(buffer, position, val%num_ions) call pmc_mpi_unpack_real_array(buffer, position, val%molec_weight) call pmc_mpi_unpack_real_array(buffer, position, val%kappa) + call pmc_mpi_unpack_real_array(buffer, position, val%abifm_m) + call pmc_mpi_unpack_real_array(buffer, position, val%abifm_c) call pmc_mpi_unpack_string_array(buffer, position, val%source_name) call pmc_mpi_unpack_fractal(buffer, position, val%fractal) call assert(188522823, & @@ -735,6 +751,8 @@ subroutine aero_data_output_netcdf(aero_data, ncid) !! weights of aerosol species !! - \b aero_kappa (unit kg/mol, dim \c aero_species): hygroscopicity !! parameters of aerosol species + !! - \b aero_abifm_m (dim \c aero_species): m parameter of ABIFM + !! - \b aero_abifm_c (dim \c aero_species): c parameter of ABIFM !! - \b fractal parameters, see \ref output_format_fractal !! !! See also: @@ -760,6 +778,13 @@ subroutine aero_data_output_netcdf(aero_data, ncid) call pmc_nc_write_real_1d(ncid, aero_data%kappa, & "aero_kappa", (/ dimid_aero_species /), unit="1", & long_name="hygroscopicity parameters (kappas) of aerosol species") + call pmc_nc_write_real_1d(ncid, aero_data%abifm_m, & + "aero_abifm_m", (/ dimid_aero_species /), unit="1", & + long_name="m parameter of ABIFM") + call pmc_nc_write_real_1d(ncid, aero_data%abifm_c, & + "aero_abifm_c", (/ dimid_aero_species /), unit="1", & + long_name="c parameter of ABIFM") + call fractal_output_netcdf(aero_data%fractal, ncid) end subroutine aero_data_output_netcdf @@ -801,6 +826,8 @@ subroutine aero_data_input_netcdf(aero_data, ncid) call pmc_nc_read_integer_1d(ncid, aero_data%num_ions, "aero_num_ions") call pmc_nc_read_real_1d(ncid, aero_data%molec_weight, "aero_molec_weight") call pmc_nc_read_real_1d(ncid, aero_data%kappa, "aero_kappa") + call pmc_nc_read_real_1d(ncid, aero_data%abifm_m, "aero_abifm_m") + call pmc_nc_read_real_1d(ncid, aero_data%abifm_c, "aero_abifm_c") call pmc_nc_check(nf90_inq_varid(ncid, "aero_species", & varid_aero_species)) @@ -899,6 +926,8 @@ subroutine aero_data_initialize(aero_data, camp_core) allocate(aero_data%num_ions(num_spec)) allocate(aero_data%molec_weight(num_spec)) allocate(aero_data%kappa(num_spec)) + allocate(aero_data%abifm_m(num_spec)) + allocate(aero_data%abifm_c(num_spec)) allocate(aero_data%camp_particle_spec_id(num_spec)) ! Assume no aerosol water @@ -936,6 +965,18 @@ subroutine aero_data_initialize(aero_data, camp_core) call die_msg(944207343, "Missing kappa for aerosol species " & // spec_names(i_spec)%string) end if + prop_name = "abifm_m" + if (.not. property_set%get_real(prop_name, & + aero_data%abifm_m(i_spec))) then + call die_msg(944207345, "Missing abifm_m for aerosol species " & + // spec_names(i_spec)%string) + end if + prop_name = "abifm_c" + if (.not. property_set%get_real(prop_name, & + aero_data%abifm_c(i_spec))) then + call die_msg(944207346, "Missing abifm_c for aerosol species " & + // spec_names(i_spec)%string) + end if prop_name = "PartMC name" if (property_set%get_string(prop_name, str_val)) then if (str_val == "H2O") then From 44a075a28aa5d6fa1edfbf4ddc74d971c7418577 Mon Sep 17 00:00:00 2001 From: Wenhan Tang Date: Tue, 29 Aug 2023 15:28:33 -0500 Subject: [PATCH 002/127] add freezing folder --- scenarios/7_freezing/README | 6 + .../__pycache__/case_obj_test.cpython-310.pyc | Bin 0 -> 295 bytes scenarios/7_freezing/aero_back.dat | 6 + scenarios/7_freezing/aero_back_dist.dat | 1 + scenarios/7_freezing/aero_data.dat | 30 + scenarios/7_freezing/aero_emit.dat | 6 + scenarios/7_freezing/aero_emit_dist.dat | 1 + scenarios/7_freezing/aero_init_comp.dat | 8 + scenarios/7_freezing/aero_init_comp1.dat | 8 + scenarios/7_freezing/aero_init_comp2.dat | 7 + scenarios/7_freezing/aero_init_comp3.dat | 5 + scenarios/7_freezing/aero_init_dist.dat | 18 + .../__pycache__/set_chi.cpython-310.pyc | Bin 0 -> 6124 bytes scenarios/7_freezing/aero_init_tools/chi.py | 132 + .../7_freezing/aero_init_tools/run_setchi.py | 42 + .../7_freezing/aero_init_tools/set_chi.py | 211 + scenarios/7_freezing/analysis.txt | 1680 + scenarios/7_freezing/case_obj_test.py | 14 + scenarios/7_freezing/data_temp/sdm_a.dat | 4 + scenarios/7_freezing/data_temp/sdm_b.dat | 4 + scenarios/7_freezing/data_temp/sdm_c.dat | 4 + scenarios/7_freezing/data_temp/sdm_d.dat | 4 + scenarios/7_freezing/data_temp/sdm_d1.dat | 4 + scenarios/7_freezing/data_temp/sdm_e.dat | 4 + scenarios/7_freezing/data_temp/sdm_f.dat | 4 + scenarios/7_freezing/data_temp/temp.data.1 | 4 + scenarios/7_freezing/data_temp/temp.data.2 | 4 + scenarios/7_freezing/data_temp/temp.data.3 | 4 + scenarios/7_freezing/data_temp/temp.data.4 | 4 + scenarios/7_freezing/data_temp/temp.data.5 | 4 + scenarios/7_freezing/data_temp/temp.data.6 | 4 + scenarios/7_freezing/freezing_run.sh | 19 + scenarios/7_freezing/gas_back.dat | 7 + scenarios/7_freezing/gas_data.dat | 7 + scenarios/7_freezing/gas_emit.dat | 7 + scenarios/7_freezing/gas_init.dat | 3 + scenarios/7_freezing/gmon.out | Bin 0 -> 742922 bytes scenarios/7_freezing/height.dat | 4 + scenarios/7_freezing/hist.py | 168 + scenarios/7_freezing/make_pres.py | 79 + scenarios/7_freezing/make_temp.py | 80 + .../7_freezing/multicases_plot_freezing.py | 141 + scenarios/7_freezing/nohup.log | 69172 ++++++++++++++++ .../out_sese_default1/run_part.spec | 57 + scenarios/7_freezing/output | 1 + scenarios/7_freezing/plot.gnuplot | 13 + scenarios/7_freezing/plot_freezing.py | 141 + scenarios/7_freezing/plot_temp1.py | 86 + scenarios/7_freezing/pressure.dat | 4 + scenarios/7_freezing/pressure.dat.bck | 4 + scenarios/7_freezing/profile.sh | 2 + scenarios/7_freezing/run_part.spec | 59 + .../run_scripts/freezing_run_chi.sh | 72 + scenarios/7_freezing/run_scripts/gmon.out | Bin 0 -> 729272 bytes scenarios/7_freezing/run_scripts/multi_run.sh | 15 + .../7_freezing/run_scripts/return_spec.sh | 45 + scenarios/7_freezing/temp.dat | 4 + scenarios/7_freezing/temp.dat.bck | 4 + scenarios/7_freezing/visual_tools/Bench.py | 198 + scenarios/7_freezing/visual_tools/__init__.py | 0 .../__pycache__/Bench.cpython-310.pyc | Bin 0 -> 6461 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 179 bytes .../__pycache__/bar.cpython-310.pyc | Bin 0 -> 1613 bytes .../__pycache__/case.cpython-310.pyc | Bin 0 -> 12635 bytes .../__pycache__/plots_lib.cpython-310.pyc | Bin 0 -> 1269 bytes scenarios/7_freezing/visual_tools/bar.py | 26 + scenarios/7_freezing/visual_tools/case.py | 494 + .../7_freezing/visual_tools/plots_lib.py | 34 + 68 files changed, 73173 insertions(+) create mode 100644 scenarios/7_freezing/README create mode 100644 scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc create mode 100644 scenarios/7_freezing/aero_back.dat create mode 100644 scenarios/7_freezing/aero_back_dist.dat create mode 100644 scenarios/7_freezing/aero_data.dat create mode 100644 scenarios/7_freezing/aero_emit.dat create mode 100644 scenarios/7_freezing/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/aero_init_comp.dat create mode 100644 scenarios/7_freezing/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/aero_init_dist.dat create mode 100644 scenarios/7_freezing/aero_init_tools/__pycache__/set_chi.cpython-310.pyc create mode 100755 scenarios/7_freezing/aero_init_tools/chi.py create mode 100755 scenarios/7_freezing/aero_init_tools/run_setchi.py create mode 100755 scenarios/7_freezing/aero_init_tools/set_chi.py create mode 100644 scenarios/7_freezing/analysis.txt create mode 100755 scenarios/7_freezing/case_obj_test.py create mode 100644 scenarios/7_freezing/data_temp/sdm_a.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_b.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_c.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_d.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_d1.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_e.dat create mode 100644 scenarios/7_freezing/data_temp/sdm_f.dat create mode 100644 scenarios/7_freezing/data_temp/temp.data.1 create mode 100644 scenarios/7_freezing/data_temp/temp.data.2 create mode 100644 scenarios/7_freezing/data_temp/temp.data.3 create mode 100644 scenarios/7_freezing/data_temp/temp.data.4 create mode 100644 scenarios/7_freezing/data_temp/temp.data.5 create mode 100644 scenarios/7_freezing/data_temp/temp.data.6 create mode 100755 scenarios/7_freezing/freezing_run.sh create mode 100644 scenarios/7_freezing/gas_back.dat create mode 100644 scenarios/7_freezing/gas_data.dat create mode 100644 scenarios/7_freezing/gas_emit.dat create mode 100644 scenarios/7_freezing/gas_init.dat create mode 100644 scenarios/7_freezing/gmon.out create mode 100644 scenarios/7_freezing/height.dat create mode 100755 scenarios/7_freezing/hist.py create mode 100755 scenarios/7_freezing/make_pres.py create mode 100755 scenarios/7_freezing/make_temp.py create mode 100755 scenarios/7_freezing/multicases_plot_freezing.py create mode 100644 scenarios/7_freezing/nohup.log create mode 100644 scenarios/7_freezing/out_sese_default1/run_part.spec create mode 120000 scenarios/7_freezing/output create mode 100644 scenarios/7_freezing/plot.gnuplot create mode 100755 scenarios/7_freezing/plot_freezing.py create mode 100755 scenarios/7_freezing/plot_temp1.py create mode 100644 scenarios/7_freezing/pressure.dat create mode 100644 scenarios/7_freezing/pressure.dat.bck create mode 100755 scenarios/7_freezing/profile.sh create mode 100644 scenarios/7_freezing/run_part.spec create mode 100755 scenarios/7_freezing/run_scripts/freezing_run_chi.sh create mode 100644 scenarios/7_freezing/run_scripts/gmon.out create mode 100755 scenarios/7_freezing/run_scripts/multi_run.sh create mode 100755 scenarios/7_freezing/run_scripts/return_spec.sh create mode 100644 scenarios/7_freezing/temp.dat create mode 100644 scenarios/7_freezing/temp.dat.bck create mode 100755 scenarios/7_freezing/visual_tools/Bench.py create mode 100644 scenarios/7_freezing/visual_tools/__init__.py create mode 100644 scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc create mode 100644 scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc create mode 100644 scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc create mode 100644 scenarios/7_freezing/visual_tools/__pycache__/case.cpython-310.pyc create mode 100644 scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc create mode 100755 scenarios/7_freezing/visual_tools/bar.py create mode 100755 scenarios/7_freezing/visual_tools/case.py create mode 100755 scenarios/7_freezing/visual_tools/plots_lib.py diff --git a/scenarios/7_freezing/README b/scenarios/7_freezing/README new file mode 100644 index 000000000..1bff2f5b6 --- /dev/null +++ b/scenarios/7_freezing/README @@ -0,0 +1,6 @@ + +Freezing Test +============= + +This test reproduces immersion freezing simulations from Alpert & Knopf 2016 +(https://doi.org/10.5194/acp-16-2083-2016). diff --git a/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc b/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9e10415d16b860907e257b776b4c5cc0d47c2df GIT binary patch literal 295 zcmYjLJxc{K5X|Q8VhXR`dC@xSf&k%>t-nE!^a~<^qe2&lGXPBM6r&8^} z1FTtV)L5F2MC`@VZ;B?7rauFX*N~!X$b{OQt8<3U>D;)dxh6Nch0@|S&!M!r!}BO} zyugbn9e#k9dF38+^L&QSf>HnlO97?GOYdp5h16-b{3yD(75IPDHLXy^$Hhj~^MWvl zJ?}&$S{p0Xw(!I1x$3%j?(|Bv)!B?`hO!d@h>|{TK_5j99FFwkkUD1eXMt?k3ZE?81(ON#b zK4x!pq&l!_5N4+_?0RP0V|-52Lh63ED?+Z6Qy*{hBkFR!HXiy_bBEo!FQtDc8#*oX ze~)`iR$Yo{%kPRzP$OEYu0J9HW^$>EqsNre4|%6u4?D8$w@!cn-ul`JvZ~t1o?tma zPoV!$A{kZf5s^yX`danmNwpp|!~X4lKr^n_*H%wgPtwfY0Hx}Tu_sSHuX;CO>Ekbt znuT-`Df$J|w1g#^2QMA4gbmcf z9vnk)%*QzxUr4m=LN)@uiyIiHs3gles%@7BIK%Wm|XRwf1do1d{rE%vj`w>fW zee33ji3OPl6C3#<)koVtxW{HR`B`E>_Q7n0!_^%I&7M%OKkQ+eqINJ^=@GP!PGrh2 z<3*moi`8J%EYgu3J^J!34J%P{mT3P=@gjD24BRCGulqXnA5%(1L9gS9K6q+RBNPXC zl^YM)>VyB_OXrmnkjVtimhjquG`BQ%j3B-rbg(8X=&OK-CQVc(PXI=LO6;jmOXjPwdT9BO@(QZ4{Kj@}bv(<@2EuWg?S(0vP?4!9M=|)bOCy$|&$C0@P zW^^4ALvd( z*t~9|WwQ!fV6*xHtC%I`uvu^xsE5^?8{Lidk<=#XfAmq^L{iAnKqc0;ff%r1vTJjX zEY<=IKDKRf#&u=GIcg#0l-*N}lCwZwkWaKhVQk+T^`x0R22CZJLRb z*$bL z>Lyo8hOaN11Ai(t9vx7h|(8U78pdp3rYFISP(3QF_t z;>cp+PVBe5%>6Tya-E^`arfY;*N~shVtc=l}iMJ?b=(PAyRDMiwu@cy;YX=^U zb_>_H;xK)CwAP^W{b>=^CSIa%2l+& zq@J4ZdVY`^?|Lfp(_*vJ?(W8d5LT|yO#6XBSxyV|XdW4X!90Fc4uN52eCip#Ja*iK z3knl{g$iLPJWyc*XFEUz9Ekx69UDA#LEBT$pZj`|6asuz7@{y1Jc`hAL>tO*#xk6t z3@4MZ$JF>dsH6r&NElfhwlZZA8W0Z=9e8EbD3z45Dpcd<5i*7{m5Mr};u5PNPhlq$ z@XjLfn21BW*~^0X%b?0C9TH-q-t%lIXdS`4TlRP^SEQg3@J$(pj(;xjC4F*SWFn7DmV{Zo3Yy_6r1{s`mQ0 zc7ecrNTXT~^D0sWK_McrO)M6``8 z{3^jZ3-}Q{JM1Z>L-?J*57EQ~G_tY#0tpi`#&-G{8Uz~9D8PbH7jCOsDs0eWgX1}N z7k}A6M`ji>;0a~qNw*fqe<$?E40;g~+te=x+)T?;PZvW4A9$2O4oSCnm^>G!if3zP7M>B+Elp40I%Ep10MCW}5RHH!i;#bcF%d~RmZy_9na)aj388PvD4?$Y zqf+e6j^TPZ=*dU_TSx*#XuFyutQ@LfPw(sDGclln6N>AH@lTs_7z;H-N(sv%s^JK0 zM5Fi*ksV&a7&X;by##Xubv1%hK%{7+rxE7{%DL66_50wI)q8U2?3q(;t)IgOq!pM|Qr)#tj^hpZ~e_h&ZE$mKVY4V9ke zI=k^@ygKDG#G!c~Rke*CxUPQ*R&)dzJ!qD7@+>@XkPb0hU)=9u*@zlz)JpVzqUWXO zr3KH!V{8|%X)i5#-pyUVHRR+xk9V4$C!eMH*C|uRN+G1AODHqjD^$Bm*~A)E?Ih9Y z-pM0H3&e-jfwHct%dh~_l|-N`o|!?c}D2u01S` zZYy?;F25nw1@$IGr8X`PtWKS`q?cU=INwFh)qP(oJ*vw{8Ss-dnmT7QdwG>%WJF4K jbPB=MqgvN~;G6~C7`kr%t6=NO7Ii$q^?%OV=HLGd89&W3 literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/aero_init_tools/chi.py b/scenarios/7_freezing/aero_init_tools/chi.py new file mode 100755 index 000000000..9be67ab3c --- /dev/null +++ b/scenarios/7_freezing/aero_init_tools/chi.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python + +import numpy as np +import matplotlib.pyplot as plt +from pdb import set_trace + +class aero_init(object): + + def __init__(self, mean = 1e-6, logstd = 0.326, Npart = 1000, species = ["OIN", "ILT", "KLN"]): + self.Npart = Npart + self.species = species + self.Ns = len(species) + + self.aero_dens = { + "H2O": 1000, + "OIN": 2600, + "ILT": 2750, + "KLN": 2650, + } + self.species_dens = [] + for spec in self.species: + self.species_dens.append(self.aero_dens[spec]) + self.species_dens = np.array(self.species_dens) + self.species_dens = self.species_dens.reshape(self.Ns, 1) + self.logDp = np.random.normal(np.log10(mean), logstd, size = (self.Npart)) + self.Dp = 10 **self.logDp + self.Vp = 1.0/6 * np.pi * self.Dp **3 + + + def init_random(self): + + self.species_volume_ratio = np.random.rand(self.Ns, self.Npart) + self.species_volume_ratio_one_parm = np.sum(self.species_volume_ratio, axis = 0) + self.species_volume_ratio = self.species_volume_ratio / self.species_volume_ratio_one_parm + self.species_volume = self.species_volume_ratio * self.Vp + self.update() + + def init_external(self, species_total_volume_ratio): + self.species_volume_ratio = np.full((self.Ns, self.Npart), 0.0) + species_total_volume_ratio = np.array(species_total_volume_ratio) + species_total_volume_ratio = species_total_volume_ratio / np.sum(species_total_volume_ratio) + aero_ind = np.arange(self.Npart) + np.random.shuffle(aero_ind) + species_volume_cumsum = np.cumsum(self.Vp[aero_ind]) + species_volume_cumratio = species_volume_cumsum / species_volume_cumsum[-1] + threshold_ratio = np.cumsum(species_total_volume_ratio) + threshold = [0] + for ratio in threshold_ratio: + threshold.append(np.argmin(np.abs(species_volume_cumratio - ratio)) + 1) + for i_spec in range(self.Ns): + spec_index = aero_ind[threshold[i_spec]:threshold[i_spec+1]] + self.species_volume_ratio[i_spec, spec_index] = 1.0 + self.species_volume = self.species_volume_ratio * self.Vp + + #species_total_volume = (self.species_volume_ratio * self.Vp).sum(axis=1) + #species_total_volume_ratio = species_total_volume / np.sum(species_total_volume) + self.update() + + def update(self): + self.species_volume_ratio = self.species_volume / self.Vp + self.species_mass = self.species_volume * self.species_dens + self.aero_mass = np.sum(self.species_mass, axis = 0) + self.species_total_mass = np.sum(self.species_mass, axis = 1) + self.total_mass = np.sum(self.aero_mass) + self.P_ai = self.species_mass / self.aero_mass + self.P_i = self.aero_mass / self.total_mass + self.P_a = self.species_total_mass / self.total_mass + self.compute_chi() + + def compute_chi(self): + self.Hi = -np.sum(np.where(self.P_ai == 0.0, 0.0, self.P_ai * np.log(self.P_ai)), axis = 0) + self.Ha = np.sum(self.P_i * self.Hi) + self.Hy = -np.sum(np.where(self.P_a == 0.0, 0.0, self.P_a * np.log(self.P_a))) + self.Di = np.exp(self.Hi) + self.Da = np.exp(self.Ha) + self.Dy = np.exp(self.Hy) + self.Db = self.Dy / self.Da + self.chi = (self.Da - 1) / (self.Dy - 1) + + def mixing(self, Npars, chi_obj = None): + assert Npars * 2 <= self.Npart + aero_index = np.arange(self.Npart) + np.random.shuffle(aero_index) + parA_ind = aero_index[:Npars] + parB_ind = aero_index[-Npars:] + parA_vol = self.Vp[parA_ind] + parB_vol = self.Vp[parB_ind] + min_vol = np.min(np.array([parA_vol, parB_vol]), axis = 0) + exchange_ratio = np.random.rand(len(min_vol)) + if not(chi_obj is None): + exchange_ratio *= np.abs(self.chi - chi_obj) / np.abs(chi_obj) + exchange_vol = exchange_ratio * min_vol + exchange_species_vol_A = self.species_volume_ratio[:, parA_ind] * exchange_vol + exchange_species_vol_B = self.species_volume_ratio[:, parB_ind] * exchange_vol + self.species_volume[:, parB_ind] = self.species_volume[:, parB_ind] - exchange_species_vol_B + exchange_species_vol_A + self.species_volume[:, parA_ind] = self.species_volume[:, parA_ind] - exchange_species_vol_A + exchange_species_vol_B + self.update() + #set_trace() + #print(np.sum(self.species_volume, axis = 0)) + + + + + + +if __name__ == "__main__": + chi_list = [] + a = aero_init() +#a.init_random() +#a.compute_chi() +#plt.hist(a.logDp, bins = 100) +#plt.show() + a.init_external([0.3, 0.5, 0.2]) +#a.compute_chi() + chi_obj = 1 + while True: + a.mixing(Npars = 100)#, chi_obj = chi_obj) +#a.compute_chi() + print("chi = ", a.chi) + chi_list.append(a.chi) + if np.abs(a.chi - chi_obj) < 0.0001: + break + print(a.species_volume_ratio) + fig = plt.figure() + ax = fig.add_subplot(1, 1, 1) + ax.plot(chi_list) + ax.set_xlabel("Iteration") + ax.set_ylabel("χ") + ax.grid() + plt.show() + + diff --git a/scenarios/7_freezing/aero_init_tools/run_setchi.py b/scenarios/7_freezing/aero_init_tools/run_setchi.py new file mode 100755 index 000000000..81e457a7d --- /dev/null +++ b/scenarios/7_freezing/aero_init_tools/run_setchi.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python + +from set_chi import classChi +import numpy as np +import sys + +def read_mass_ratio_dict(compFile): + with open(compFile) as f: + lines = [] + for line in f: + lines.append(line) + mass_ratio_dict = {} + for line in lines: + if line.strip()[0] == "#": + continue + infoList = line.strip().split() + if len(infoList) == 2: + mass_ratio_dict[infoList[0]] = float(infoList[1]) + return mass_ratio_dict + +#compFile = "../aero_init_comp.dat" +#mass_ratio_dict = read_mass_ratio_dict(compFile) +#print(mass_ratio_dict) +#exit() + +chi = float(sys.argv[1]) +init_fileName = sys.argv[2] +compFile = sys.argv[3] +print("===============") +print(chi, init_fileName, compFile) +print("===============") +mass_ratio_dict = read_mass_ratio_dict(compFile) +objChi = classChi(init_fileName = init_fileName) +while True: + objChi.set_chi(chi = chi)#, mass_ratio_dict = mass_ratio_dict) + if np.abs(objChi.chi - chi) < 0.01: + print("Set chi = ", objChi.chi, ".") + break + else: + print("Chi expected = ", chi, "; chi received = ", objChi.chi, ", redo ...") +objChi.output(outFile = "restart.nc") + diff --git a/scenarios/7_freezing/aero_init_tools/set_chi.py b/scenarios/7_freezing/aero_init_tools/set_chi.py new file mode 100755 index 000000000..b272c9bbe --- /dev/null +++ b/scenarios/7_freezing/aero_init_tools/set_chi.py @@ -0,0 +1,211 @@ +#!/usr/bin/env python + +import numpy as np +import netCDF4 as nc +import matplotlib.pyplot as plt +from pdb import set_trace +import os + +class classChi(object): + + """ + def __init__(self, mean = 1e-6, logstd = 0.326, Npart = 1000, species = ["OIN", "ILT", "KLN"]): + + self.Npart = Npart + self.species = species + self.Ns = len(species) + + self.aero_dens = { + "H2O": 1000, + "OIN": 2600, + "ILT": 2750, + "KLN": 2650, + } + self.species_dens = [] + for spec in self.species: + self.species_dens.append(self.aero_dens[spec]) + self.species_dens = np.array(self.species_dens) + self.species_dens = self.species_dens.reshape(self.Ns, 1) + self.logDp = np.random.normal(np.log10(mean), logstd, size = (self.Npart)) + self.Dp = 10 **self.logDp + self.Vp = 1.0/6 * np.pi * self.Dp **3 + """ + + def __init__(self, init_fileName): + self.init_fileName = init_fileName + self.init_dir = "/".join(init_fileName.split("/")[:-1]) + ncf = nc.Dataset(init_fileName) + aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) + self.species_dens = ncf.variables["aero_density"][:].filled(np.nan) + self.species_dens = self.species_dens[:, np.newaxis] + self.species_name = ncf.variables["aero_species"].names.strip().split(",") + self.Ns_orig, _ = aero_particle_mass.shape + H2O_ind = np.nan + exc_H2O_ind = [] + for ind, specName in enumerate(self.species_name): + if specName.lower() != "h2o": + exc_H2O_ind.append(ind) + else: + assert np.isnan(H2O_ind), "Double \"H2O\" found." + H2O_ind = ind + self.H2O_ind = H2O_ind + self.exc_H2O_ind = exc_H2O_ind + if ~np.isnan(self.H2O_ind): + self.H2O_mass = aero_particle_mass[self.H2O_ind, :] + + aero_particle_mass = aero_particle_mass[exc_H2O_ind, :] + self.species_dens = self.species_dens[exc_H2O_ind, :] + #set_trace() + #self.species_name = self.species_name[exc_H2O_ind] + + self.Ns, self.Npart = aero_particle_mass.shape + if np.isnan(self.H2O_ind): + print("No H2O found.") + assert self.Ns_orig == self.Ns + self.species_volume = aero_particle_mass / self.species_dens + print(np.sum(self.species_volume, axis=1)) + self.Vp = np.sum(self.species_volume, axis = 0) + #assert len(self.species_name) == len(self.species_dens) + #self.aero_dens = {} + #for ind, speciesName in enumerate(self.species_name): + # self.aero_dens[speciesName] = self.species_dens[ind, 0] + ncf.close() + + + + + def init_random(self): + + self.species_volume_ratio = np.random.rand(self.Ns, self.Npart) + self.species_volume_ratio_one_parm = np.sum(self.species_volume_ratio, axis = 0) + self.species_volume_ratio = self.species_volume_ratio / self.species_volume_ratio_one_parm + self.species_volume = self.species_volume_ratio * self.Vp + self.update() + + def init_external(self, species_total_volume_ratio): + self.species_volume_ratio = np.full((self.Ns, self.Npart), 0.0) + species_total_volume_ratio = np.array(species_total_volume_ratio) + species_total_volume_ratio = species_total_volume_ratio / np.sum(species_total_volume_ratio) + aero_ind = np.arange(self.Npart) + np.random.shuffle(aero_ind) + species_volume_cumsum = np.cumsum(self.Vp[aero_ind]) + species_volume_cumratio = species_volume_cumsum / species_volume_cumsum[-1] + threshold_ratio = np.cumsum(species_total_volume_ratio) + threshold = [0] + for ratio in threshold_ratio: + if ratio == 0: + threshold.append(0) + else: + threshold.append(np.argmin(np.abs(species_volume_cumratio - ratio)) + 1) + for i_spec in range(self.Ns): + spec_index = aero_ind[threshold[i_spec]:threshold[i_spec+1]] + self.species_volume_ratio[i_spec, spec_index] = 1.0 + self.species_volume = self.species_volume_ratio * self.Vp + #species_total_volume = (self.species_volume_ratio * self.Vp).sum(axis=1) + #species_total_volume_ratio = species_total_volume / np.sum(species_total_volume) + self.update() + + def update(self): + self.species_volume_ratio = self.species_volume / self.Vp + self.species_mass = self.species_volume * self.species_dens + self.aero_mass = np.sum(self.species_mass, axis = 0) + self.species_total_mass = np.sum(self.species_mass, axis = 1) + self.total_mass = np.sum(self.aero_mass) + self.P_ai = self.species_mass / self.aero_mass + self.P_i = self.aero_mass / self.total_mass + self.P_a = self.species_total_mass / self.total_mass + self.compute_chi() + + def compute_chi(self): + self.Hi = -np.sum(np.where(self.P_ai == 0.0, 0.0, self.P_ai * np.log(self.P_ai)), axis = 0) + self.Ha = np.sum(self.P_i * self.Hi) + self.Hy = -np.sum(np.where(self.P_a == 0.0, 0.0, self.P_a * np.log(self.P_a))) + self.Di = np.exp(self.Hi) + self.Da = np.exp(self.Ha) + self.Dy = np.exp(self.Hy) + self.Db = self.Dy / self.Da + self.chi = (self.Da - 1) / (self.Dy - 1) + + def mixing(self, Npars, chi_obj = None): + assert Npars * 2 <= self.Npart + aero_index = np.arange(self.Npart) + np.random.shuffle(aero_index) + parA_ind = aero_index[:Npars] + parB_ind = aero_index[-Npars:] + parA_vol = self.Vp[parA_ind] + parB_vol = self.Vp[parB_ind] + min_vol = np.min(np.array([parA_vol, parB_vol]), axis = 0) + exchange_ratio = np.random.rand(len(min_vol)) + if not(chi_obj is None): + exchange_ratio *= np.abs(self.chi - chi_obj) / np.abs(chi_obj) + exchange_vol = exchange_ratio * min_vol + exchange_species_vol_A = self.species_volume_ratio[:, parA_ind] * exchange_vol + exchange_species_vol_B = self.species_volume_ratio[:, parB_ind] * exchange_vol + self.species_volume[:, parB_ind] = self.species_volume[:, parB_ind] - exchange_species_vol_B + exchange_species_vol_A + self.species_volume[:, parA_ind] = self.species_volume[:, parA_ind] - exchange_species_vol_A + exchange_species_vol_B + self.update() + #set_trace() + #print(np.sum(self.species_volume, axis = 0)) + + def set_chi(self, chi): + #volume_ratio = [] + #for specName in self.aero_dens: + # if specName in mass_ratio_dict: + # volume_ratio.append(mass_ratio_dict[specName] / self.aero_dens[specName]) + # else: + # volume_ratio.append(0) + #volume_ratio = np.array(volume_ratio) + #volume_ratio /= np.sum(volume_ratio) + volume_ratio = np.sum(self.species_volume,axis=1)/np.sum(self.species_volume) + print("volume_ratio = ", volume_ratio) + self.init_external(volume_ratio) + chi_list = [] + while True: + #self.mixing(Npars = int(self.Npart / 200) if int(self.Npart / 200) > 1 else 1)#, chi_obj = chi_obj) + self.mixing(Npars = 2)#, chi_obj = chi_obj) + #a.compute_chi() + print("chi = ", self.chi) + print(np.sum(self.species_volume, axis=1)) + #print(np.sum(self.species_mass, axis=1)) + #print(np.sum(self.species_volume, axis=0)[500]) + chi_list.append(self.chi) + if chi <= self.chi: + break + print(self.species_mass) + + def output(self, outFile = None): + if outFile is None: + ncf = nc.Dataset(self.init_fileName, "r+") + else: + os.system("cp -p " + self.init_fileName + " " + self.init_dir + "/" + outFile) + ncf = nc.Dataset(self.init_dir + "/" + outFile, "r+") + print("Create " + self.init_dir + "/" + outFile) + aero_particle_mass = np.full((self.Ns_orig, self.Npart), 0.0) + if ~np.isnan(self.H2O_ind): + aero_particle_mass[self.H2O_ind, :] = self.H2O_mass + aero_particle_mass[self.exc_H2O_ind, :] = self.species_mass + else: + aero_particle_mass = self.species_mass + ncf.variables["aero_particle_mass"][:, :] = aero_particle_mass + ncf.close() + + + + + +if __name__ == "__main__": + chi = 0.9 + mass_ratio_dict = { + #"OIN": 0.3, + "ILT": 0.5, + #"KLN": 0.2, + "NVF": 0.5, + } + aa = classChi(init_fileName = "/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/output/chiexp_0.2/freezing_part_0001_00000001.nc") + while True: + aa.set_chi(chi = chi, mass_ratio_dict = mass_ratio_dict) + if np.abs(aa.chi - chi) < 0.01: + break + else: + print("Chi expected = ", chi, "; chi received = ", aa.chi, ", rerun ...") + aa.output(outFile = "freezing_part_0001_restart.nc") diff --git a/scenarios/7_freezing/analysis.txt b/scenarios/7_freezing/analysis.txt new file mode 100644 index 000000000..76a804132 --- /dev/null +++ b/scenarios/7_freezing/analysis.txt @@ -0,0 +1,1680 @@ +Flat profile: + +Each sample counts as 0.01 seconds. + % cumulative self self total + time seconds seconds calls ms/call ms/call name + 28.57 0.12 0.12 2010 0.06 0.14 __pmc_aero_state_MOD_aero_state_output_netcdf + 14.29 0.18 0.06 2016231 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius + 4.76 0.20 0.02 4032462 0.00 0.00 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius + 4.76 0.22 0.02 2072122 0.00 0.00 __pmc_fractal_MOD_fractal_is_spherical + 4.76 0.24 0.02 2045320 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_radius + 4.76 0.26 0.02 2006200 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_mass + 4.76 0.28 0.02 9076 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_realloc + 4.76 0.30 0.02 4000 0.01 0.01 __pmc_aero_state_MOD_aero_state_masses + 4.76 0.32 0.02 2000 0.01 0.05 __pmc_freezing_MOD_freeze + 2.38 0.33 0.01 2062091 0.00 0.00 __pmc_aero_data_MOD_aero_data_vol2rad + 2.38 0.34 0.01 2045320 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_volume + 2.38 0.35 0.01 2016231 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc + 2.38 0.36 0.01 358827 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_n_entry + 2.38 0.37 0.01 30113 0.00 0.00 __pmc_rand_MOD_rand_normal + 2.38 0.38 0.01 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_volume + 2.38 0.39 0.01 4020 0.00 0.00 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species + 2.38 0.40 0.01 75 0.13 0.13 __pmc_spec_line_MOD_spec_line_set_size + 2.38 0.41 0.01 __pmc_fractal_MOD_fractal_vol_to_mobility_rad + 1.19 0.42 0.01 570840 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_check + 1.19 0.42 0.01 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_check_msg + 0.00 0.42 0.00 2062091 0.00 0.00 __pmc_fractal_MOD_fractal_vol2rad + 0.00 0.42 0.00 2062091 0.00 0.00 __pmc_util_MOD_sphere_vol2rad + 0.00 0.42 0.00 2016231 0.00 0.00 __pmc_aero_state_MOD_aero_state_particle_num_conc + 0.00 0.42 0.00 2006200 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_species_mass + 0.00 0.42 0.00 1282969 0.00 0.00 __pmc_rand_MOD_pmc_random + 0.00 0.42 0.00 1200910 0.00 0.00 __pmc_rand_MOD_pmc_random_geometric + 0.00 0.42 0.00 322340 0.00 0.00 __pmc_util_MOD_assert + 0.00 0.42 0.00 196800 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_append + 0.00 0.42 0.00 196800 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_enlarge + 0.00 0.42 0.00 126000 0.00 0.00 __pmc_freezing_MOD_abifm_max + 0.00 0.42 0.00 100489 0.00 0.00 __pmc_aero_data_MOD_aero_data_n_spec + 0.00 0.42 0.00 90028 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_size + 0.00 0.42 0.00 84420 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_atts + 0.00 0.42 0.00 78291 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_n_part + 0.00 0.42 0.00 68260 0.00 0.00 __pmc_aero_state_MOD_aero_state_n_part + 0.00 0.42 0.00 49200 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_append + 0.00 0.42 0.00 48244 0.00 0.00 __pmc_gas_data_MOD_gas_data_n_spec + 0.00 0.42 0.00 30150 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real + 0.00 0.42 0.00 30141 0.00 0.00 __pmc_aero_data_MOD_aero_data_n_source + 0.00 0.42 0.00 24629 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin + 0.00 0.42 0.00 24629 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_find + 0.00 0.42 0.00 24619 0.00 0.00 __pmc_util_MOD_linspace_find + 0.00 0.42 0.00 24619 0.00 0.00 __pmc_util_MOD_logspace_find + 0.00 0.42 0.00 20152 0.00 0.00 __pmc_util_MOD_integer_to_string + 0.00 0.42 0.00 20100 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real_1d + 0.00 0.42 0.00 18090 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer_1d + 0.00 0.42 0.00 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_diameter + 0.00 0.42 0.00 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_radius + 0.00 0.42 0.00 16771 0.00 0.00 __pmc_freezing_MOD_abifm_particle + 0.00 0.42 0.00 14070 0.00 0.00 __pmc_aero_state_MOD_aero_state_total_particles + 0.00 0.42 0.00 14070 0.00 0.00 __pmc_util_MOD_integer_to_string_max_len + 0.00 0.42 0.00 14030 0.00 0.00 __pmc_util_MOD_find_1d + 0.00 0.42 0.00 14003 0.00 0.00 __pmc_gas_state_MOD_gas_state_is_allocated + 0.00 0.42 0.00 13302 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_shift + 0.00 0.42 0.00 12091 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_size + 0.00 0.42 0.00 12058 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_rank + 0.00 0.42 0.00 12031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_class + 0.00 0.42 0.00 12000 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer + 0.00 0.42 0.00 10070 0.00 0.00 __pmc_aero_state_MOD_aero_state_total_particles_all_procs + 0.00 0.42 0.00 10070 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer + 0.00 0.42 0.00 10036 0.00 0.00 __pmc_util_MOD_ensure_real_array_size + 0.00 0.42 0.00 10034 0.00 0.00 __pmc_util_MOD_ensure_integer_array_size + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_data_MOD_aero_data_rad2vol + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_sample_radius + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_sample_vols + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_new_id + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_create_time + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_source + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_vols + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_weight + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_zero + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_add_particle + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_group + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_state_MOD_aero_state_add_particle + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_fractal_MOD_fractal_rad2vol + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_rand_MOD_rand_normal_array_1d + 0.00 0.42 0.00 10031 0.00 0.00 __pmc_util_MOD_sphere_rad2vol + 0.00 0.42 0.00 9189 0.00 0.00 __pmc_util_MOD_pow2_above + 0.00 0.42 0.00 8050 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_n_mode + 0.00 0.42 0.00 6030 0.00 0.00 __pmc_aero_info_array_MOD_aero_info_array_n_item + 0.00 0.42 0.00 6030 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer + 0.00 0.42 0.00 6030 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real_2d + 0.00 0.42 0.00 6030 0.00 0.00 __pmc_util_MOD_interp_1d + 0.00 0.42 0.00 6030 0.00 0.00 __pmc_util_MOD_time_to_string_max_len + 0.00 0.42 0.00 6020 0.00 0.00 __pmc_aero_info_array_MOD_aero_info_array_zero + 0.00 0.42 0.00 4148 0.00 0.00 __pmc_util_MOD_assert_msg + 0.00 0.42 0.00 4020 0.00 0.00 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source + 0.00 0.42 0.00 4020 0.00 0.00 __pmc_aero_weight_MOD_aero_weight_scale + 0.00 0.42 0.00 4020 0.00 0.00 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species + 0.00 0.42 0.00 4020 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer_2d + 0.00 0.42 0.00 4010 0.00 0.01 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_interp_1d + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_env_state_MOD_env_state_sat_vapor_pressure + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_add_scaled + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_interp_1d + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_scale + 0.00 0.42 0.00 4000 0.00 0.00 __pmc_util_MOD_check_event + 0.00 0.42 0.00 2189 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_zero + 0.00 0.42 0.00 2049 0.00 0.01 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed + 0.00 0.42 0.00 2020 0.00 0.01 __pmc_aero_state_MOD_aero_state_sort + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_data_MOD_aero_data_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_zero + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_rebalance + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_zero + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_env_state_MOD_env_state_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_fractal_MOD_fractal_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_gas_data_MOD_gas_data_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_gas_state_MOD_gas_state_output_netcdf + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_open_write + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_info + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_output_MOD_make_filename + 0.00 0.42 0.00 2010 0.00 0.14 __pmc_output_MOD_output_state + 0.00 0.42 0.00 2010 0.00 0.14 __pmc_output_MOD_output_state_to_file + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_output_MOD_write_time + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_run_part_MOD_print_part_progress + 0.00 0.42 0.00 2010 0.00 0.00 __pmc_util_MOD_iso8601_date_and_time + 0.00 0.42 0.00 2002 0.00 0.00 __pmc_aero_data_MOD_aero_data_spec_by_name + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_bin + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_state_MOD_aero_state_copy_weight + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_state_MOD_aero_state_sample_particles + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_scale + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_air_molar_den + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_freezing_MOD_abifm_max_spec + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_freezing_MOD_unfreeze + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_gas_state_MOD_gas_state_ensure_nonnegative + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_rand_MOD_rand_binomial + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_particle_loss + 0.00 0.42 0.00 2000 0.00 0.01 __pmc_scenario_MOD_scenario_update_aero_state + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_update_env_state + 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_update_gas_state + 0.00 0.42 0.00 916 0.00 0.00 __pmc_spec_line_MOD_spec_line_strip_leading_spaces + 0.00 0.42 0.00 304 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_read_iostat + 0.00 0.42 0.00 301 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_real + 0.00 0.42 0.00 175 0.00 0.00 __pmc_spec_file_MOD_spec_file_read_line_raw + 0.00 0.42 0.00 163 0.00 0.00 __pmc_spec_line_MOD_spec_line_strip_comment + 0.00 0.42 0.00 163 0.00 0.00 __pmc_spec_line_MOD_spec_line_tabs_to_spaces + 0.00 0.42 0.00 130 0.00 0.00 __pmc_util_MOD_real_to_string + 0.00 0.42 0.00 113 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_realloc + 0.00 0.42 0.00 104 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges + 0.00 0.42 0.00 87 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_line + 0.00 0.42 0.00 87 0.00 0.00 __pmc_spec_file_MOD_spec_file_read_next_data_line + 0.00 0.42 0.00 84 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_zero + 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_interp_linear_disc + 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_linspace + 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_logspace + 0.00 0.42 0.00 52 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid + 0.00 0.42 0.00 52 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_make + 0.00 0.42 0.00 51 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_line_length + 0.00 0.42 0.00 51 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_line_name + 0.00 0.42 0.00 50 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_n_class + 0.00 0.42 0.00 50 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_line_no_eof + 0.00 0.42 0.00 42 0.00 0.33 __pmc_aero_sorted_MOD_aero_sorted_sort_particles + 0.00 0.42 0.00 40 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_number + 0.00 0.42 0.00 33 0.00 0.00 __pmc_rand_MOD_pmc_rand_int + 0.00 0.42 0.00 32 0.00 0.00 __pmc_rand_MOD_rand_hex_char + 0.00 0.42 0.00 30 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type + 0.00 0.42 0.00 30 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_n_group + 0.00 0.42 0.00 30 0.00 0.00 __pmc_util_MOD_check_time_multiple + 0.00 0.42 0.00 20 0.00 0.01 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add + 0.00 0.42 0.00 20 0.00 0.01 __pmc_aero_state_MOD_aero_state_scale_weight + 0.00 0.42 0.00 20 0.00 0.00 __pmc_aero_state_MOD_aero_state_weight_class_for_source + 0.00 0.42 0.00 20 0.00 0.00 __pmc_rand_MOD_rand_poisson + 0.00 0.42 0.00 17 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_string + 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_close + 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_open + 0.00 0.42 0.00 15 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_logical + 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_logical + 0.00 0.42 0.00 15 0.00 0.00 __pmc_util_MOD_free_unit + 0.00 0.42 0.00 15 0.00 0.00 __pmc_util_MOD_get_unit + 0.00 0.42 0.00 13 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_real + 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_line_array + 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_line_list + 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_real_named_array + 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_state_MOD_aero_state_set_n_part_ideal + 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_state_MOD_aero_state_set_weight + 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass + 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes + 0.00 0.42 0.00 10 0.00 0.00 __pmc_rand_MOD_prob_round + 0.00 0.42 0.00 10 0.00 40.00 __pmc_run_part_MOD_run_part + 0.00 0.42 0.00 10 0.00 0.00 __pmc_scenario_MOD_scenario_contains_aero_mode_type + 0.00 0.42 0.00 10 0.00 0.00 __pmc_scenario_MOD_scenario_init_env_state + 0.00 0.42 0.00 4 0.00 0.37 __pmc_aero_mode_MOD_spec_file_read_aero_mode + 0.00 0.42 0.00 3 0.00 0.50 __pmc_aero_dist_MOD_spec_file_read_aero_dist + 0.00 0.42 0.00 3 0.00 0.00 __pmc_gas_state_MOD_gas_state_set_size + 0.00 0.42 0.00 3 0.00 0.00 __pmc_gas_state_MOD_gas_state_zero + 0.00 0.42 0.00 3 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_integer + 0.00 0.42 0.00 3 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_timed_real_array + 0.00 0.42 0.00 3 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_integer + 0.00 0.42 0.00 3 0.00 0.00 __pmc_util_MOD_string_array_find + 0.00 0.42 0.00 2 0.00 0.96 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates + 0.00 0.42 0.00 2 0.00 0.34 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates + 0.00 0.42 0.00 2 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_bcast_integer + 0.00 0.42 0.00 2 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_bcast_string + 0.00 0.42 0.00 2 0.00 0.00 __pmc_rand_MOD_pmc_rand_finalize + 0.00 0.42 0.00 2 0.00 0.00 __pmc_rand_MOD_pmc_srand + 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_almost_equal + 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_ensure_string_array_size + 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_warn_assert_msg + 0.00 0.42 0.00 1 0.00 410.00 MAIN__ + 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_set_mosaic_map + 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_set_water_index + 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_source_by_name + 0.00 0.42 0.00 1 0.00 0.34 __pmc_aero_data_MOD_spec_file_read_aero_data + 0.00 0.42 0.00 1 0.00 0.34 __pmc_aero_mode_MOD_spec_file_read_vol_frac + 0.00 0.42 0.00 1 0.00 0.69 __pmc_env_state_MOD_spec_file_read_env_state + 0.00 0.42 0.00 1 0.00 0.00 __pmc_fractal_MOD_fractal_set_spherical + 0.00 0.42 0.00 1 0.00 0.11 __pmc_fractal_MOD_spec_file_read_fractal + 0.00 0.42 0.00 1 0.00 0.00 __pmc_gas_data_MOD_gas_data_set_mosaic_map + 0.00 0.42 0.00 1 0.00 0.34 __pmc_gas_data_MOD_spec_file_read_gas_data + 0.00 0.42 0.00 1 0.00 0.34 __pmc_gas_state_MOD_spec_file_read_gas_state + 0.00 0.42 0.00 1 0.00 0.00 __pmc_mosaic_MOD_mosaic_support + 0.00 0.42 0.00 1 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_finalize + 0.00 0.42 0.00 1 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_init + 0.00 0.42 0.00 1 0.00 0.00 __pmc_rand_MOD_uuid4_str + 0.00 0.42 0.00 1 0.00 4.56 __pmc_scenario_MOD_spec_file_read_scenario + 0.00 0.42 0.00 1 0.00 0.00 __pmc_util_MOD_diam2rad + + % the percentage of the total running time of the +time program used by this function. + +cumulative a running sum of the number of seconds accounted + seconds for by this function and those listed above it. + + self the number of seconds accounted for by this +seconds function alone. This is the major sort for this + listing. + +calls the number of times this function was invoked, if + this function is profiled, else blank. + + self the average number of milliseconds spent in this +ms/call function per call, if this function is profiled, + else blank. + + total the average number of milliseconds spent in this +ms/call function and its descendents per call, if this + function is profiled, else blank. + +name the name of the function. This is the minor sort + for this listing. The index shows the location of + the function in the gprof listing. If the index is + in parenthesis it shows where it would appear in + the gprof listing if it were to be printed. + +Copyright (C) 2012-2016 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. + + Call graph (explanation follows) + + +granularity: each sample hit covers 2 byte(s) for 2.38% of 0.42 seconds + +index % time self children called name + 2 MAIN__ [1] + 0.00 0.41 1/1 main [2] +[1] 97.6 0.00 0.41 1+2 MAIN__ [1] + 0.00 0.40 10/10 __pmc_run_part_MOD_run_part [3] + 0.00 0.00 1/1 __pmc_scenario_MOD_spec_file_read_scenario [47] + 0.00 0.00 14/15 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 6/17 __pmc_spec_file_MOD_spec_file_read_string [52] + 0.00 0.00 1/1 __pmc_env_state_MOD_spec_file_read_env_state [66] + 0.00 0.00 5/13 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 1/3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] + 0.00 0.00 1/1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] + 0.00 0.00 1/1 __pmc_gas_state_MOD_spec_file_read_gas_state [71] + 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 2/3 __pmc_spec_file_MOD_spec_file_read_integer [72] + 0.00 0.00 1/1 __pmc_fractal_MOD_spec_file_read_fractal [89] + 0.00 0.00 10/4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] + 0.00 0.00 10/2010 __pmc_aero_state_MOD_aero_state_zero [424] + 0.00 0.00 10/30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] + 0.00 0.00 10/10 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] + 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_weight [475] + 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] + 0.00 0.00 10/10 __pmc_scenario_MOD_scenario_init_env_state [480] + 0.00 0.00 5/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] + 0.00 0.00 5/15 __pmc_spec_file_MOD_spec_file_open [470] + 0.00 0.00 5/15 __pmc_spec_file_MOD_spec_file_close [469] + 0.00 0.00 2/2 __pmc_mpi_MOD_pmc_mpi_bcast_string [486] + 0.00 0.00 2/2 __pmc_rand_MOD_pmc_srand [488] + 0.00 0.00 2/2 __pmc_rand_MOD_pmc_rand_finalize [487] + 0.00 0.00 1/1 __pmc_mpi_MOD_pmc_mpi_init [499] + 0.00 0.00 1/1 __pmc_mpi_MOD_pmc_mpi_finalize [498] + 0.00 0.00 1/1 __pmc_mosaic_MOD_mosaic_support [497] + 0.00 0.00 1/1 __pmc_rand_MOD_uuid4_str [500] + 2 MAIN__ [1] +----------------------------------------------- + +[2] 97.6 0.00 0.41 main [2] + 0.00 0.41 1/1 MAIN__ [1] +----------------------------------------------- + 0.00 0.40 10/10 MAIN__ [1] +[3] 95.2 0.00 0.40 10 __pmc_run_part_MOD_run_part [3] + 0.00 0.29 2010/2010 __pmc_output_MOD_output_state [4] + 0.02 0.07 2000/2000 __pmc_freezing_MOD_freeze [9] + 0.00 0.02 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] + 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_rebalance [85] + 0.00 0.00 2010/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] + 0.00 0.00 12000/12000 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [394] + 0.00 0.00 4010/6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] + 0.00 0.00 4000/4000 __pmc_util_MOD_check_event [421] + 0.00 0.00 2010/2010 __pmc_run_part_MOD_print_part_progress [426] + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_env_state [441] + 0.00 0.00 2000/2000 __pmc_freezing_MOD_unfreeze [436] + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] + 0.00 0.00 30/30 __pmc_util_MOD_check_time_multiple [467] + 0.00 0.00 10/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] + 0.00 0.00 10/12091 __pmc_mpi_MOD_pmc_mpi_size [391] +----------------------------------------------- + 0.00 0.29 2010/2010 __pmc_run_part_MOD_run_part [3] +[4] 68.8 0.00 0.29 2010 __pmc_output_MOD_output_state [4] + 0.00 0.29 2010/2010 __pmc_output_MOD_output_state_to_file [5] + 0.00 0.00 2010/12091 __pmc_mpi_MOD_pmc_mpi_size [391] + 0.00 0.00 2010/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] +----------------------------------------------- + 0.00 0.29 2010/2010 __pmc_output_MOD_output_state [4] +[5] 68.8 0.00 0.29 2010 __pmc_output_MOD_output_state_to_file [5] + 0.12 0.16 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.01 2010/2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] + 0.00 0.01 2010/2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] + 0.00 0.00 2010/2010 __pmc_env_state_MOD_env_state_output_netcdf [60] + 0.00 0.00 2010/2010 __pmc_output_MOD_write_time [76] + 0.00 0.00 2010/2010 __pmc_gas_state_MOD_gas_state_output_netcdf [81] + 0.00 0.00 2010/2010 __pmc_gas_data_MOD_gas_data_output_netcdf [82] + 0.00 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] + 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] + 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 2010/2010 __pmc_output_MOD_make_filename [425] +----------------------------------------------- + 0.12 0.16 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[6] 65.6 0.12 0.16 2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.15 2016231/2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] + 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] + 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] + 0.00 0.00 10050/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 8040/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] + 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] + 0.00 0.00 2010/4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] + 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] + 0.00 0.00 42210/68260 __pmc_aero_state_MOD_aero_state_n_part [380] + 0.00 0.00 6030/6030 __pmc_aero_info_array_MOD_aero_info_array_n_item [410] + 0.00 0.00 2010/30141 __pmc_aero_data_MOD_aero_data_n_source [382] + 0.00 0.00 2010/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.15 2016231/2016231 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[7] 35.4 0.00 0.15 2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] + 0.01 0.14 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] +----------------------------------------------- + 0.01 0.14 2016231/2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] +[8] 35.4 0.01 0.14 2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] + 0.06 0.02 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] + 0.02 0.04 2016231/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] +----------------------------------------------- + 0.02 0.07 2000/2000 __pmc_run_part_MOD_run_part [3] +[9] 21.6 0.02 0.07 2000 __pmc_freezing_MOD_freeze [9] + 0.02 0.02 4000/4000 __pmc_aero_state_MOD_aero_state_masses [12] + 0.00 0.02 2000/2020 __pmc_aero_state_MOD_aero_state_sort [25] + 0.00 0.01 16771/16771 __pmc_freezing_MOD_abifm_particle [29] + 0.00 0.00 126000/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] + 0.00 0.00 1200910/1200910 __pmc_rand_MOD_pmc_random_geometric [374] + 0.00 0.00 126000/126000 __pmc_freezing_MOD_abifm_max [376] + 0.00 0.00 16771/1282969 __pmc_rand_MOD_pmc_random [373] + 0.00 0.00 6000/68260 __pmc_aero_state_MOD_aero_state_n_part [380] + 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [434] + 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [433] + 0.00 0.00 2000/2000 __pmc_freezing_MOD_abifm_max_spec [435] + 0.00 0.00 2000/2000 __pmc_aero_sorted_MOD_aero_sorted_n_bin [429] + 0.00 0.00 2000/12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] +----------------------------------------------- + 0.06 0.02 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] +[10] 19.0 0.06 0.02 2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] + 0.02 0.00 4032462/4032462 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [17] +----------------------------------------------- + 0.00 0.00 4460/2045320 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] + 0.00 0.00 24629/2045320 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] + 0.02 0.04 2016231/2045320 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] +[11] 14.2 0.02 0.04 2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] + 0.01 0.02 2045320/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] + 0.01 0.00 2045320/2045320 __pmc_aero_particle_MOD_aero_particle_volume [31] +----------------------------------------------- + 0.02 0.02 4000/4000 __pmc_freezing_MOD_freeze [9] +[12] 9.5 0.02 0.02 4000 __pmc_aero_state_MOD_aero_state_masses [12] + 0.02 0.00 2006200/2006200 __pmc_aero_particle_MOD_aero_particle_mass [19] + 0.00 0.00 2006200/2006200 __pmc_aero_particle_MOD_aero_particle_species_mass [372] + 0.00 0.00 8000/68260 __pmc_aero_state_MOD_aero_state_n_part [380] + 0.00 0.00 6000/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] + 0.00 0.00 2000/2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] + 0.00 0.00 2000/4148 __pmc_util_MOD_assert_msg [414] +----------------------------------------------- + 0.00 0.00 16771/2062091 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] + 0.01 0.02 2045320/2062091 __pmc_aero_particle_MOD_aero_particle_radius [11] +[13] 7.1 0.01 0.02 2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] + 0.00 0.02 2062091/2062091 __pmc_fractal_MOD_fractal_vol2rad [23] +----------------------------------------------- + 0.00 0.01 20004/49200 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.01 29196/49200 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] +[14] 5.4 0.00 0.02 49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] + 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_append [20] + 0.00 0.00 98400/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] + 0.00 0.00 246000/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.02 2000/2000 __pmc_run_part_MOD_run_part [3] +[15] 4.8 0.00 0.02 2000 __pmc_scenario_MOD_scenario_update_aero_state [15] + 0.00 0.02 4000/4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] + 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] + 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 4000/4000 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_particle_loss [440] + 0.00 0.00 2000/2000 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] +----------------------------------------------- + 0.00 0.00 10/4010 MAIN__ [1] + 0.00 0.02 4000/4010 __pmc_scenario_MOD_scenario_update_aero_state [15] +[16] 4.8 0.00 0.02 4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] + 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_particle [39] + 0.00 0.01 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] + 0.00 0.00 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] + 0.00 0.00 10031/10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] + 0.00 0.00 20/20 __pmc_rand_MOD_rand_poisson [95] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_zero [403] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_vols [401] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_new_id [398] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_weight [402] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_create_time [399] + 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_source [400] + 0.00 0.00 8020/8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] + 0.00 0.00 4010/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] + 0.00 0.00 40/40 __pmc_aero_mode_MOD_aero_mode_number [462] + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] +----------------------------------------------- + 0.02 0.00 4032462/4032462 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] +[17] 4.8 0.02 0.00 4032462 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [17] +----------------------------------------------- + 0.00 0.00 10031/2072122 __pmc_fractal_MOD_fractal_rad2vol [93] + 0.02 0.00 2062091/2072122 __pmc_fractal_MOD_fractal_vol2rad [23] +[18] 4.8 0.02 0.00 2072122 __pmc_fractal_MOD_fractal_is_spherical [18] +----------------------------------------------- + 0.02 0.00 2006200/2006200 __pmc_aero_state_MOD_aero_state_masses [12] +[19] 4.8 0.02 0.00 2006200 __pmc_aero_particle_MOD_aero_particle_mass [19] +----------------------------------------------- + 0.00 0.02 196800/196800 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] +[20] 4.8 0.00 0.02 196800 __pmc_integer_varray_MOD_integer_varray_append [20] + 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_enlarge [21] +----------------------------------------------- + 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_append [20] +[21] 4.8 0.00 0.02 196800 __pmc_integer_varray_MOD_integer_varray_enlarge [21] + 0.02 0.00 9076/9076 __pmc_integer_varray_MOD_integer_varray_realloc [22] + 0.00 0.00 9076/9189 __pmc_util_MOD_pow2_above [408] +----------------------------------------------- + 0.02 0.00 9076/9076 __pmc_integer_varray_MOD_integer_varray_enlarge [21] +[22] 4.8 0.02 0.00 9076 __pmc_integer_varray_MOD_integer_varray_realloc [22] + 0.00 0.00 7478/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.02 2062091/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] +[23] 4.7 0.00 0.02 2062091 __pmc_fractal_MOD_fractal_vol2rad [23] + 0.02 0.00 2062091/2072122 __pmc_fractal_MOD_fractal_is_spherical [18] + 0.00 0.00 2062091/2062091 __pmc_util_MOD_sphere_vol2rad [371] +----------------------------------------------- + 0.00 0.00 29/2049 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.02 2020/2049 __pmc_aero_state_MOD_aero_state_sort [25] +[24] 4.2 0.00 0.02 2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] + 0.00 0.01 42/42 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] + 0.00 0.00 126357/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] + 0.00 0.00 4460/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] + 0.00 0.00 6078/90028 __pmc_bin_grid_MOD_bin_grid_size [378] + 0.00 0.00 2049/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 52/52 __pmc_bin_grid_MOD_bin_grid_make [458] + 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] +----------------------------------------------- + 0.00 0.00 20/2020 __pmc_aero_state_MOD_aero_state_scale_weight [80] + 0.00 0.02 2000/2020 __pmc_freezing_MOD_freeze [9] +[25] 4.1 0.00 0.02 2020 __pmc_aero_state_MOD_aero_state_sort [25] + 0.00 0.02 2020/2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] +----------------------------------------------- + 0.00 0.01 42/42 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] +[26] 3.3 0.00 0.01 42 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] + 0.00 0.01 29196/49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] + 0.00 0.00 14598/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] + 0.00 0.00 84/84 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] +----------------------------------------------- + 0.00 0.01 16771/16771 __pmc_freezing_MOD_abifm_particle [29] +[27] 2.4 0.00 0.01 16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] + 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] +----------------------------------------------- + 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] +[28] 2.4 0.00 0.01 16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] + 0.01 0.00 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] + 0.00 0.00 16771/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] +----------------------------------------------- + 0.00 0.01 16771/16771 __pmc_freezing_MOD_freeze [9] +[29] 2.4 0.00 0.01 16771 __pmc_freezing_MOD_abifm_particle [29] + 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] + 0.00 0.00 33542/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.01 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_output_netcdf [42] +[30] 2.4 0.01 0.00 4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] + 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 24120/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.01 0.00 2045320/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] +[31] 2.4 0.01 0.00 2045320 __pmc_aero_particle_MOD_aero_particle_volume [31] +----------------------------------------------- + 0.00 0.00 20/30113 __pmc_rand_MOD_rand_poisson [95] + 0.00 0.00 10031/30113 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] + 0.01 0.00 20062/30113 __pmc_rand_MOD_rand_normal_array_1d [41] +[32] 2.4 0.01 0.00 30113 __pmc_rand_MOD_rand_normal [32] + 0.00 0.00 60226/1282969 __pmc_rand_MOD_pmc_random [373] + 0.00 0.00 30113/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.01 0.00 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] +[33] 2.4 0.01 0.00 16771 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] + 0.00 0.00 16771/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.00 4/87 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 33/87 __pmc_spec_file_MOD_spec_file_read_line_list [49] + 0.00 0.01 50/87 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] +[34] 2.4 0.00 0.01 87 __pmc_spec_file_MOD_spec_file_read_line [34] + 0.01 0.00 75/75 __pmc_spec_line_MOD_spec_line_set_size [35] + 0.00 0.00 753/916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] + 0.00 0.00 87/87 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] +----------------------------------------------- + 0.01 0.00 75/75 __pmc_spec_file_MOD_spec_file_read_line [34] +[35] 2.4 0.01 0.00 75 __pmc_spec_line_MOD_spec_line_set_size [35] +----------------------------------------------- + +[36] 2.4 0.01 0.00 __pmc_fractal_MOD_fractal_vol_to_mobility_rad [36] +----------------------------------------------- + 0.00 0.00 20/358827 __pmc_aero_state_MOD_aero_state_scale_weight [80] + 0.00 0.00 8050/358827 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 98400/358827 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] + 0.00 0.00 126000/358827 __pmc_freezing_MOD_freeze [9] + 0.00 0.00 126357/358827 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] +[37] 2.4 0.01 0.00 358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] +----------------------------------------------- + 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_particle [39] +[38] 2.3 0.00 0.01 10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.01 20004/49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] + 0.00 0.00 10031/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] + 0.00 0.00 29/2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] + 0.00 0.00 20062/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 10031/90028 __pmc_bin_grid_MOD_bin_grid_size [378] + 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_n_group [406] + 0.00 0.00 10031/12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] + 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] +----------------------------------------------- + 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[39] 2.3 0.00 0.01 10031 __pmc_aero_state_MOD_aero_state_add_particle [39] + 0.00 0.01 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] +----------------------------------------------- + 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[40] 1.6 0.00 0.01 10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] + 0.00 0.01 10031/10031 __pmc_rand_MOD_rand_normal_array_1d [41] +----------------------------------------------- + 0.00 0.01 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] +[41] 1.6 0.00 0.01 10031 __pmc_rand_MOD_rand_normal_array_1d [41] + 0.01 0.00 20062/30113 __pmc_rand_MOD_rand_normal [32] +----------------------------------------------- + 0.00 0.01 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[42] 1.5 0.00 0.01 2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] + 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] + 0.00 0.00 10050/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 2010/2010 __pmc_fractal_MOD_fractal_output_netcdf [73] + 0.00 0.00 4020/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] +----------------------------------------------- + 0.00 0.00 2/50 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 3/50 __pmc_spec_file_MOD_spec_file_read_integer [72] + 0.00 0.00 13/50 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 15/50 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 17/50 __pmc_spec_file_MOD_spec_file_read_string [52] +[43] 1.4 0.00 0.01 50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.01 50/87 __pmc_spec_file_MOD_spec_file_read_line [34] +----------------------------------------------- + 0.00 0.01 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[44] 1.2 0.00 0.01 2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] + 0.01 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_check_msg [45] + 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_check [46] +----------------------------------------------- + 0.01 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] +[45] 1.2 0.01 0.00 2010 __pmc_netcdf_MOD_pmc_nc_check_msg [45] +----------------------------------------------- + 0.00 0.00 2010/570840 __pmc_output_MOD_output_state_to_file [5] + 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_open_write [44] + 0.00 0.00 6030/570840 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] + 0.00 0.00 12060/570840 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] + 0.00 0.00 12060/570840 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] + 0.00 0.00 14070/570840 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] + 0.00 0.00 14070/570840 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] + 0.00 0.00 14070/570840 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] + 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_write_info [88] + 0.00 0.00 16080/570840 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] + 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] + 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_write_integer [74] + 0.00 0.00 72360/570840 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 80400/570840 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 120600/570840 __pmc_netcdf_MOD_pmc_nc_write_real [55] + 0.00 0.00 142710/570840 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +[46] 1.2 0.01 0.00 570840 __pmc_netcdf_MOD_pmc_nc_check [46] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[47] 1.1 0.00 0.00 1 __pmc_scenario_MOD_spec_file_read_scenario [47] + 0.00 0.00 2/2 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] + 0.00 0.00 8/17 __pmc_spec_file_MOD_spec_file_read_string [52] + 0.00 0.00 2/2 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] + 0.00 0.00 7/15 __pmc_spec_file_MOD_spec_file_open [470] + 0.00 0.00 7/15 __pmc_spec_file_MOD_spec_file_close [469] +----------------------------------------------- + 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] +[48] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_line_array [48] + 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_list [49] +----------------------------------------------- + 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_array [48] +[49] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_line_list [49] + 0.00 0.00 33/87 __pmc_spec_file_MOD_spec_file_read_line [34] +----------------------------------------------- + 0.00 0.00 1/11 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] + 0.00 0.00 1/11 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 1/11 __pmc_gas_data_MOD_spec_file_read_gas_data [70] + 0.00 0.00 1/11 __pmc_gas_state_MOD_spec_file_read_gas_state [71] + 0.00 0.00 2/11 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 2/11 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] + 0.00 0.00 3/11 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] +[50] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_array [48] + 0.00 0.00 288/301 __pmc_spec_file_MOD_spec_file_string_to_real [445] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[51] 0.8 0.00 0.00 10031 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] + 0.00 0.00 10031/30113 __pmc_rand_MOD_rand_normal [32] +----------------------------------------------- + 0.00 0.00 3/17 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 6/17 MAIN__ [1] + 0.00 0.00 8/17 __pmc_scenario_MOD_spec_file_read_scenario [47] +[52] 0.5 0.00 0.00 17 __pmc_spec_file_MOD_spec_file_read_string [52] + 0.00 0.00 17/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] +----------------------------------------------- + 0.00 0.00 2/2 __pmc_scenario_MOD_spec_file_read_scenario [47] +[53] 0.5 0.00 0.00 2 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 2/3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] + 0.00 0.00 2/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 2/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.00 2/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 2/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] + 0.00 0.00 2/15 __pmc_spec_file_MOD_spec_file_open [470] + 0.00 0.00 2/15 __pmc_spec_file_MOD_spec_file_close [469] +----------------------------------------------- + 0.00 0.00 1/15 __pmc_fractal_MOD_spec_file_read_fractal [89] + 0.00 0.00 14/15 MAIN__ [1] +[54] 0.4 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 15/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] + 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_string_to_logical [471] +----------------------------------------------- + 0.00 0.00 4020/30150 __pmc_output_MOD_write_time [76] + 0.00 0.00 6030/30150 __pmc_fractal_MOD_fractal_output_netcdf [73] + 0.00 0.00 20100/30150 __pmc_env_state_MOD_env_state_output_netcdf [60] +[55] 0.4 0.00 0.00 30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] + 0.00 0.00 120600/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 30150/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 4/4 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] +[56] 0.4 0.00 0.00 4 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 4/87 __pmc_spec_file_MOD_spec_file_read_line [34] + 0.00 0.00 3/17 __pmc_spec_file_MOD_spec_file_read_string [52] + 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] + 0.00 0.00 3/13 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 1/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 1/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] + 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_source_by_name [494] + 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_open [470] + 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_close [469] + 0.00 0.00 1/1 __pmc_util_MOD_diam2rad [501] +----------------------------------------------- + 0.00 0.00 1/3 MAIN__ [1] + 0.00 0.00 2/3 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] +[57] 0.4 0.00 0.00 3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] + 0.00 0.00 4/4 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] +----------------------------------------------- + 0.00 0.00 3/13 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 5/13 MAIN__ [1] + 0.00 0.00 5/13 __pmc_env_state_MOD_spec_file_read_env_state [66] +[58] 0.4 0.00 0.00 13 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 13/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] + 0.00 0.00 13/301 __pmc_spec_file_MOD_spec_file_string_to_real [445] +----------------------------------------------- + 0.00 0.00 4020/84420 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] + 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] + 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_integer [74] + 0.00 0.00 18090/84420 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 20100/84420 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 30150/84420 __pmc_netcdf_MOD_pmc_nc_write_real [55] +[59] 0.3 0.00 0.00 84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] + 0.00 0.00 142710/570840 __pmc_netcdf_MOD_pmc_nc_check [46] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[60] 0.3 0.00 0.00 2010 __pmc_env_state_MOD_env_state_output_netcdf [60] + 0.00 0.00 20100/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] + 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] +----------------------------------------------- + 0.00 0.00 3/3 __pmc_scenario_MOD_spec_file_read_scenario [47] +[61] 0.2 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] + 0.00 0.00 3/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] +----------------------------------------------- + 0.00 0.00 2010/20100 __pmc_gas_state_MOD_gas_state_output_netcdf [81] + 0.00 0.00 8040/20100 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 10050/20100 __pmc_aero_data_MOD_aero_data_output_netcdf [42] +[62] 0.2 0.00 0.00 20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 80400/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 20100/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 2010/18090 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] + 0.00 0.00 2010/18090 __pmc_gas_data_MOD_gas_data_output_netcdf [82] + 0.00 0.00 4020/18090 __pmc_aero_data_MOD_aero_data_output_netcdf [42] + 0.00 0.00 10050/18090 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[63] 0.2 0.00 0.00 18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 72360/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 18090/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 10031/24629 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.00 14598/24629 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] +[64] 0.2 0.00 0.00 24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] + 0.00 0.00 24629/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] + 0.00 0.00 24629/24629 __pmc_bin_grid_MOD_bin_grid_find [383] +----------------------------------------------- + 0.00 0.00 2/2 __pmc_scenario_MOD_spec_file_read_scenario [47] +[65] 0.2 0.00 0.00 2 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] + 0.00 0.00 2/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 2/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] + 0.00 0.00 2/3 __pmc_gas_state_MOD_gas_state_set_size [481] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[66] 0.2 0.00 0.00 1 __pmc_env_state_MOD_spec_file_read_env_state [66] + 0.00 0.00 5/13 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 1/3 __pmc_spec_file_MOD_spec_file_read_integer [72] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[67] 0.1 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] + 0.00 0.00 4020/6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] + 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] + 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] + 0.00 0.00 2010/4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[68] 0.1 0.00 0.00 1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 5/10036 __pmc_util_MOD_ensure_real_array_size [396] + 0.00 0.00 4/130 __pmc_util_MOD_real_to_string [449] + 0.00 0.00 2/10034 __pmc_util_MOD_ensure_integer_array_size [397] + 0.00 0.00 2/4148 __pmc_util_MOD_assert_msg [414] + 0.00 0.00 2/2 __pmc_util_MOD_almost_equal [489] + 0.00 0.00 2/2 __pmc_util_MOD_warn_assert_msg [491] + 0.00 0.00 1/2 __pmc_util_MOD_ensure_string_array_size [490] + 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] + 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_set_water_index [493] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] +[69] 0.1 0.00 0.00 1 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] + 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 2/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] + 0.00 0.00 2/2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[70] 0.1 0.00 0.00 1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] + 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 1/2 __pmc_util_MOD_ensure_string_array_size [490] + 0.00 0.00 1/10034 __pmc_util_MOD_ensure_integer_array_size [397] + 0.00 0.00 1/1 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[71] 0.1 0.00 0.00 1 __pmc_gas_state_MOD_spec_file_read_gas_state [71] + 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] + 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] + 0.00 0.00 1/3 __pmc_gas_state_MOD_gas_state_set_size [481] +----------------------------------------------- + 0.00 0.00 1/3 __pmc_env_state_MOD_spec_file_read_env_state [66] + 0.00 0.00 2/3 MAIN__ [1] +[72] 0.1 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_read_integer [72] + 0.00 0.00 3/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] + 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] + 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] + 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_string_to_integer [483] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] +[73] 0.1 0.00 0.00 2010 __pmc_fractal_MOD_fractal_output_netcdf [73] + 0.00 0.00 6030/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] +----------------------------------------------- + 0.00 0.00 2010/6030 __pmc_env_state_MOD_env_state_output_netcdf [60] + 0.00 0.00 2010/6030 __pmc_output_MOD_output_state_to_file [5] + 0.00 0.00 2010/6030 __pmc_output_MOD_write_time [76] +[74] 0.1 0.00 0.00 6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] + 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 2010/6030 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 4020/6030 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] +[75] 0.1 0.00 0.00 6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] + 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[76] 0.1 0.00 0.00 2010 __pmc_output_MOD_write_time [76] + 0.00 0.00 4020/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] + 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] +----------------------------------------------- + 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_sample_particles [94] + 0.00 0.00 2000/14070 __pmc_scenario_MOD_scenario_update_aero_state [15] + 0.00 0.00 10070/14070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] +[77] 0.1 0.00 0.00 14070 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 8050/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] + 0.00 0.00 8060/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 6020/68260 __pmc_aero_state_MOD_aero_state_n_part [380] +----------------------------------------------- + 0.00 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 2010/4020 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] +[78] 0.0 0.00 0.00 4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] + 0.00 0.00 16080/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 4020/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] +----------------------------------------------- + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[79] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_scale_weight [80] + 0.00 0.00 20/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] + 0.00 0.00 40/12091 __pmc_mpi_MOD_pmc_mpi_size [391] + 0.00 0.00 20/30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] + 0.00 0.00 20/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] +----------------------------------------------- + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] +[80] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_scale_weight [80] + 0.00 0.00 20/2020 __pmc_aero_state_MOD_aero_state_sort [25] + 0.00 0.00 20/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] + 0.00 0.00 20/4020 __pmc_aero_weight_MOD_aero_weight_scale [415] + 0.00 0.00 10/10 __pmc_rand_MOD_prob_round [478] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[81] 0.0 0.00 0.00 2010 __pmc_gas_state_MOD_gas_state_output_netcdf [81] + 0.00 0.00 2010/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] + 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[82] 0.0 0.00 0.00 2010 __pmc_gas_data_MOD_gas_data_output_netcdf [82] + 0.00 0.00 2010/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] +----------------------------------------------- + 0.00 0.00 20/10070 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] + 0.00 0.00 2010/10070 __pmc_run_part_MOD_run_part [3] + 0.00 0.00 8040/10070 __pmc_aero_state_MOD_aero_state_rebalance [85] +[83] 0.0 0.00 0.00 10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] + 0.00 0.00 10070/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 10070/10070 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [395] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[84] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] + 0.00 0.00 2010/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] + 0.00 0.00 6030/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 6030/68260 __pmc_aero_state_MOD_aero_state_n_part [380] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_run_part_MOD_run_part [3] +[85] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_rebalance [85] + 0.00 0.00 8040/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] +----------------------------------------------- + 0.00 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_output_netcdf [42] +[86] 0.0 0.00 0.00 4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] + 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 18090/30141 __pmc_aero_data_MOD_aero_data_n_source [382] +----------------------------------------------- + 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_output_netcdf [82] + 0.00 0.00 2010/4020 __pmc_gas_state_MOD_gas_state_output_netcdf [81] +[87] 0.0 0.00 0.00 4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] + 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 48240/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[88] 0.0 0.00 0.00 2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] + 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] + 0.00 0.00 2010/2010 __pmc_util_MOD_iso8601_date_and_time [427] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[89] 0.0 0.00 0.00 1 __pmc_fractal_MOD_spec_file_read_fractal [89] + 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 1/1 __pmc_fractal_MOD_fractal_set_spherical [495] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] +[90] 0.0 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] + 0.00 0.00 12060/570840 __pmc_netcdf_MOD_pmc_nc_check [46] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] +[91] 0.0 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] + 0.00 0.00 12060/570840 __pmc_netcdf_MOD_pmc_nc_check [46] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[92] 0.0 0.00 0.00 10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] + 0.00 0.00 10031/10031 __pmc_fractal_MOD_fractal_rad2vol [93] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] +[93] 0.0 0.00 0.00 10031 __pmc_fractal_MOD_fractal_rad2vol [93] + 0.00 0.00 10031/2072122 __pmc_fractal_MOD_fractal_is_spherical [18] + 0.00 0.00 10031/10031 __pmc_util_MOD_sphere_rad2vol [407] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] +[94] 0.0 0.00 0.00 2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] + 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 2000/2010 __pmc_aero_state_MOD_aero_state_zero [424] + 0.00 0.00 2000/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_copy_weight [430] + 0.00 0.00 2000/2000 __pmc_rand_MOD_rand_binomial [439] +----------------------------------------------- + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[95] 0.0 0.00 0.00 20 __pmc_rand_MOD_rand_poisson [95] + 0.00 0.00 20/30113 __pmc_rand_MOD_rand_normal [32] + 0.00 0.00 20/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.00 2062091/2062091 __pmc_fractal_MOD_fractal_vol2rad [23] +[371] 0.0 0.00 0.00 2062091 __pmc_util_MOD_sphere_vol2rad [371] +----------------------------------------------- + 0.00 0.00 2006200/2006200 __pmc_aero_state_MOD_aero_state_masses [12] +[372] 0.0 0.00 0.00 2006200 __pmc_aero_particle_MOD_aero_particle_species_mass [372] +----------------------------------------------- + 0.00 0.00 10/1282969 __pmc_rand_MOD_prob_round [478] + 0.00 0.00 33/1282969 __pmc_rand_MOD_pmc_rand_int [463] + 0.00 0.00 16771/1282969 __pmc_freezing_MOD_freeze [9] + 0.00 0.00 60226/1282969 __pmc_rand_MOD_rand_normal [32] + 0.00 0.00 1205929/1282969 __pmc_rand_MOD_pmc_random_geometric [374] +[373] 0.0 0.00 0.00 1282969 __pmc_rand_MOD_pmc_random [373] +----------------------------------------------- + 0.00 0.00 1200910/1200910 __pmc_freezing_MOD_freeze [9] +[374] 0.0 0.00 0.00 1200910 __pmc_rand_MOD_pmc_random_geometric [374] + 0.00 0.00 1205929/1282969 __pmc_rand_MOD_pmc_random [373] +----------------------------------------------- + 0.00 0.00 20/322340 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] + 0.00 0.00 20/322340 __pmc_rand_MOD_rand_poisson [95] + 0.00 0.00 84/322340 __pmc_util_MOD_linspace [455] + 0.00 0.00 99/322340 __pmc_rand_MOD_pmc_rand_int [463] + 0.00 0.00 103/322340 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] + 0.00 0.00 252/322340 __pmc_util_MOD_logspace [456] + 0.00 0.00 2000/322340 __pmc_aero_state_MOD_aero_state_sample_particles [94] + 0.00 0.00 2049/322340 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] + 0.00 0.00 6000/322340 __pmc_rand_MOD_rand_binomial [439] + 0.00 0.00 7478/322340 __pmc_integer_varray_MOD_integer_varray_realloc [22] + 0.00 0.00 8060/322340 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 20062/322340 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.00 30113/322340 __pmc_rand_MOD_rand_normal [32] + 0.00 0.00 246000/322340 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] +[375] 0.0 0.00 0.00 322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.00 126000/126000 __pmc_freezing_MOD_freeze [9] +[376] 0.0 0.00 0.00 126000 __pmc_freezing_MOD_abifm_max [376] +----------------------------------------------- + 0.00 0.00 1/100489 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] + 0.00 0.00 2/100489 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] + 0.00 0.00 2000/100489 __pmc_freezing_MOD_abifm_max_spec [435] + 0.00 0.00 2002/100489 __pmc_aero_data_MOD_aero_data_spec_by_name [428] + 0.00 0.00 2010/100489 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 4010/100489 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] + 0.00 0.00 6000/100489 __pmc_aero_state_MOD_aero_state_masses [12] + 0.00 0.00 10031/100489 __pmc_aero_particle_MOD_aero_particle_zero [403] + 0.00 0.00 16771/100489 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] + 0.00 0.00 24120/100489 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] + 0.00 0.00 33542/100489 __pmc_freezing_MOD_abifm_particle [29] +[377] 0.0 0.00 0.00 100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.00 52/90028 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] + 0.00 0.00 6078/90028 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] + 0.00 0.00 10031/90028 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] + 0.00 0.00 73867/90028 __pmc_bin_grid_MOD_bin_grid_find [383] +[378] 0.0 0.00 0.00 90028 __pmc_bin_grid_MOD_bin_grid_size [378] +----------------------------------------------- + 0.00 0.00 10031/78291 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] + 0.00 0.00 68260/78291 __pmc_aero_state_MOD_aero_state_n_part [380] +[379] 0.0 0.00 0.00 78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] +----------------------------------------------- + 0.00 0.00 6000/68260 __pmc_freezing_MOD_freeze [9] + 0.00 0.00 6020/68260 __pmc_aero_state_MOD_aero_state_total_particles [77] + 0.00 0.00 6030/68260 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] + 0.00 0.00 8000/68260 __pmc_aero_state_MOD_aero_state_masses [12] + 0.00 0.00 42210/68260 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[380] 0.0 0.00 0.00 68260 __pmc_aero_state_MOD_aero_state_n_part [380] + 0.00 0.00 68260/78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] +----------------------------------------------- + 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] + 0.00 0.00 1/48244 __pmc_gas_state_MOD_spec_file_read_gas_state [71] + 0.00 0.00 2/48244 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] + 0.00 0.00 48240/48244 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] +[381] 0.0 0.00 0.00 48244 __pmc_gas_data_MOD_gas_data_n_spec [381] +----------------------------------------------- + 0.00 0.00 10/30141 __pmc_aero_state_MOD_aero_state_set_weight [475] + 0.00 0.00 2010/30141 __pmc_aero_state_MOD_aero_state_output_netcdf [6] + 0.00 0.00 10031/30141 __pmc_aero_particle_MOD_aero_particle_zero [403] + 0.00 0.00 18090/30141 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] +[382] 0.0 0.00 0.00 30141 __pmc_aero_data_MOD_aero_data_n_source [382] +----------------------------------------------- + 0.00 0.00 24629/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] +[383] 0.0 0.00 0.00 24629 __pmc_bin_grid_MOD_bin_grid_find [383] + 0.00 0.00 73867/90028 __pmc_bin_grid_MOD_bin_grid_size [378] + 0.00 0.00 24619/24619 __pmc_util_MOD_logspace_find [385] +----------------------------------------------- + 0.00 0.00 24619/24619 __pmc_util_MOD_logspace_find [385] +[384] 0.0 0.00 0.00 24619 __pmc_util_MOD_linspace_find [384] +----------------------------------------------- + 0.00 0.00 24619/24619 __pmc_bin_grid_MOD_bin_grid_find [383] +[385] 0.0 0.00 0.00 24619 __pmc_util_MOD_logspace_find [385] + 0.00 0.00 24619/24619 __pmc_util_MOD_linspace_find [384] +----------------------------------------------- + 0.00 0.00 52/20152 __pmc_bin_grid_MOD_bin_grid_make [458] + 0.00 0.00 6030/20152 __pmc_util_MOD_time_to_string_max_len [412] + 0.00 0.00 14070/20152 __pmc_util_MOD_integer_to_string_max_len [387] +[386] 0.0 0.00 0.00 20152 __pmc_util_MOD_integer_to_string [386] +----------------------------------------------- + 0.00 0.00 14070/14070 __pmc_run_part_MOD_print_part_progress [426] +[387] 0.0 0.00 0.00 14070 __pmc_util_MOD_integer_to_string_max_len [387] + 0.00 0.00 14070/20152 __pmc_util_MOD_integer_to_string [386] +----------------------------------------------- + 0.00 0.00 4000/14030 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] + 0.00 0.00 4000/14030 __pmc_gas_state_MOD_gas_state_interp_1d [419] + 0.00 0.00 6030/14030 __pmc_util_MOD_interp_1d [411] +[388] 0.0 0.00 0.00 14030 __pmc_util_MOD_find_1d [388] +----------------------------------------------- + 0.00 0.00 3/14003 __pmc_gas_state_MOD_gas_state_zero [482] + 0.00 0.00 2000/14003 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] + 0.00 0.00 4000/14003 __pmc_gas_state_MOD_gas_state_scale [420] + 0.00 0.00 8000/14003 __pmc_gas_state_MOD_gas_state_add_scaled [418] +[389] 0.0 0.00 0.00 14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] +----------------------------------------------- + 0.00 0.00 13302/13302 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] +[390] 0.0 0.00 0.00 13302 __pmc_aero_particle_MOD_aero_particle_shift [390] +----------------------------------------------- + 0.00 0.00 10/12091 __pmc_run_part_MOD_run_part [3] + 0.00 0.00 40/12091 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] + 0.00 0.00 2010/12091 __pmc_output_MOD_output_state [4] + 0.00 0.00 10031/12091 __pmc_aero_particle_MOD_aero_particle_new_id [398] +[391] 0.0 0.00 0.00 12091 __pmc_mpi_MOD_pmc_mpi_size [391] +----------------------------------------------- + 0.00 0.00 2/12058 __pmc_rand_MOD_pmc_srand [488] + 0.00 0.00 5/12058 MAIN__ [1] + 0.00 0.00 10/12058 __pmc_run_part_MOD_run_part [3] + 0.00 0.00 2010/12058 __pmc_output_MOD_output_state [4] + 0.00 0.00 10031/12058 __pmc_aero_particle_MOD_aero_particle_new_id [398] +[392] 0.0 0.00 0.00 12058 __pmc_mpi_MOD_pmc_mpi_rank [392] +----------------------------------------------- + 0.00 0.00 2000/12031 __pmc_freezing_MOD_freeze [9] + 0.00 0.00 10031/12031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] +[393] 0.0 0.00 0.00 12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] +----------------------------------------------- + 0.00 0.00 12000/12000 __pmc_run_part_MOD_run_part [3] +[394] 0.0 0.00 0.00 12000 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [394] +----------------------------------------------- + 0.00 0.00 10070/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] +[395] 0.0 0.00 0.00 10070 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [395] +----------------------------------------------- + 0.00 0.00 5/10036 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 10031/10036 __pmc_aero_particle_MOD_aero_particle_zero [403] +[396] 0.0 0.00 0.00 10036 __pmc_util_MOD_ensure_real_array_size [396] +----------------------------------------------- + 0.00 0.00 1/10034 __pmc_gas_data_MOD_spec_file_read_gas_data [70] + 0.00 0.00 2/10034 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 10031/10034 __pmc_aero_particle_MOD_aero_particle_zero [403] +[397] 0.0 0.00 0.00 10034 __pmc_util_MOD_ensure_integer_array_size [397] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[398] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_new_id [398] + 0.00 0.00 10031/12091 __pmc_mpi_MOD_pmc_mpi_size [391] + 0.00 0.00 10031/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[399] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_create_time [399] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[400] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_source [400] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[401] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_vols [401] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[402] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_weight [402] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[403] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_zero [403] + 0.00 0.00 10031/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] + 0.00 0.00 10031/10036 __pmc_util_MOD_ensure_real_array_size [396] + 0.00 0.00 10031/30141 __pmc_aero_data_MOD_aero_data_n_source [382] + 0.00 0.00 10031/10034 __pmc_util_MOD_ensure_integer_array_size [397] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] +[404] 0.0 0.00 0.00 10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] + 0.00 0.00 10031/78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] + 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] +[405] 0.0 0.00 0.00 10031 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] + 0.00 0.00 113/9189 __pmc_util_MOD_pow2_above [408] + 0.00 0.00 113/113 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] +[406] 0.0 0.00 0.00 10031 __pmc_aero_sorted_MOD_aero_sorted_n_group [406] +----------------------------------------------- + 0.00 0.00 10031/10031 __pmc_fractal_MOD_fractal_rad2vol [93] +[407] 0.0 0.00 0.00 10031 __pmc_util_MOD_sphere_rad2vol [407] +----------------------------------------------- + 0.00 0.00 113/9189 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] + 0.00 0.00 9076/9189 __pmc_integer_varray_MOD_integer_varray_enlarge [21] +[408] 0.0 0.00 0.00 9189 __pmc_util_MOD_pow2_above [408] +----------------------------------------------- + 0.00 0.00 30/8050 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] + 0.00 0.00 8020/8050 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[409] 0.0 0.00 0.00 8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] +----------------------------------------------- + 0.00 0.00 6030/6030 __pmc_aero_state_MOD_aero_state_output_netcdf [6] +[410] 0.0 0.00 0.00 6030 __pmc_aero_info_array_MOD_aero_info_array_n_item [410] +----------------------------------------------- + 0.00 0.00 30/6030 __pmc_scenario_MOD_scenario_init_env_state [480] + 0.00 0.00 6000/6030 __pmc_scenario_MOD_scenario_update_env_state [441] +[411] 0.0 0.00 0.00 6030 __pmc_util_MOD_interp_1d [411] + 0.00 0.00 6030/14030 __pmc_util_MOD_find_1d [388] +----------------------------------------------- + 0.00 0.00 6030/6030 __pmc_run_part_MOD_print_part_progress [426] +[412] 0.0 0.00 0.00 6030 __pmc_util_MOD_time_to_string_max_len [412] + 0.00 0.00 6030/20152 __pmc_util_MOD_integer_to_string [386] +----------------------------------------------- + 0.00 0.00 2010/6020 __pmc_aero_state_MOD_aero_state_zero [424] + 0.00 0.00 4010/6020 __pmc_run_part_MOD_run_part [3] +[413] 0.0 0.00 0.00 6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] +----------------------------------------------- + 0.00 0.00 2/4148 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 136/4148 __pmc_bin_grid_MOD_bin_grid_make [458] + 0.00 0.00 2000/4148 __pmc_aero_state_MOD_aero_state_masses [12] + 0.00 0.00 2010/4148 __pmc_util_MOD_iso8601_date_and_time [427] +[414] 0.0 0.00 0.00 4148 __pmc_util_MOD_assert_msg [414] +----------------------------------------------- + 0.00 0.00 20/4020 __pmc_aero_state_MOD_aero_state_scale_weight [80] + 0.00 0.00 4000/4020 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] +[415] 0.0 0.00 0.00 4020 __pmc_aero_weight_MOD_aero_weight_scale [415] +----------------------------------------------- + 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_aero_state [15] +[416] 0.0 0.00 0.00 4000 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] + 0.00 0.00 4000/14030 __pmc_util_MOD_find_1d [388] +----------------------------------------------- + 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_env_state [441] +[417] 0.0 0.00 0.00 4000 __pmc_env_state_MOD_env_state_sat_vapor_pressure [417] +----------------------------------------------- + 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] +[418] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_add_scaled [418] + 0.00 0.00 8000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] +----------------------------------------------- + 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] +[419] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_interp_1d [419] + 0.00 0.00 4000/14030 __pmc_util_MOD_find_1d [388] +----------------------------------------------- + 0.00 0.00 2000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] + 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] +[420] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_scale [420] + 0.00 0.00 4000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] +----------------------------------------------- + 0.00 0.00 4000/4000 __pmc_run_part_MOD_run_part [3] +[421] 0.0 0.00 0.00 4000 __pmc_util_MOD_check_event [421] +----------------------------------------------- + 0.00 0.00 2189/2189 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] +[422] 0.0 0.00 0.00 2189 __pmc_integer_varray_MOD_integer_varray_zero [422] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_zero [424] +[423] 0.0 0.00 0.00 2010 __pmc_aero_particle_array_MOD_aero_particle_array_zero [423] +----------------------------------------------- + 0.00 0.00 10/2010 MAIN__ [1] + 0.00 0.00 2000/2010 __pmc_aero_state_MOD_aero_state_sample_particles [94] +[424] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_zero [424] + 0.00 0.00 2010/2010 __pmc_aero_particle_array_MOD_aero_particle_array_zero [423] + 0.00 0.00 2010/6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] +[425] 0.0 0.00 0.00 2010 __pmc_output_MOD_make_filename [425] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_run_part_MOD_run_part [3] +[426] 0.0 0.00 0.00 2010 __pmc_run_part_MOD_print_part_progress [426] + 0.00 0.00 14070/14070 __pmc_util_MOD_integer_to_string_max_len [387] + 0.00 0.00 6030/6030 __pmc_util_MOD_time_to_string_max_len [412] +----------------------------------------------- + 0.00 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] +[427] 0.0 0.00 0.00 2010 __pmc_util_MOD_iso8601_date_and_time [427] + 0.00 0.00 2010/4148 __pmc_util_MOD_assert_msg [414] +----------------------------------------------- + 0.00 0.00 2/2002 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] + 0.00 0.00 2000/2002 __pmc_aero_state_MOD_aero_state_masses [12] +[428] 0.0 0.00 0.00 2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] + 0.00 0.00 2002/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] +[429] 0.0 0.00 0.00 2000 __pmc_aero_sorted_MOD_aero_sorted_n_bin [429] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] +[430] 0.0 0.00 0.00 2000 __pmc_aero_state_MOD_aero_state_copy_weight [430] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] +[431] 0.0 0.00 0.00 2000 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] + 0.00 0.00 4000/4020 __pmc_aero_weight_MOD_aero_weight_scale [415] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] +[432] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_air_molar_den [432] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] +[433] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [433] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] +[434] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [434] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] +[435] 0.0 0.00 0.00 2000 __pmc_freezing_MOD_abifm_max_spec [435] + 0.00 0.00 2000/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] +[436] 0.0 0.00 0.00 2000 __pmc_freezing_MOD_unfreeze [436] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] +[437] 0.0 0.00 0.00 2000 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] + 0.00 0.00 2000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] +[438] 0.0 0.00 0.00 2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] + 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_air_molar_den [432] + 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_scale [420] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] +[439] 0.0 0.00 0.00 2000 __pmc_rand_MOD_rand_binomial [439] + 0.00 0.00 6000/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] +[440] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_particle_loss [440] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] +[441] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_update_env_state [441] + 0.00 0.00 6000/6030 __pmc_util_MOD_interp_1d [411] + 0.00 0.00 4000/4000 __pmc_env_state_MOD_env_state_sat_vapor_pressure [417] +----------------------------------------------- + 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] +[442] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_update_gas_state [442] + 0.00 0.00 4000/4000 __pmc_gas_state_MOD_gas_state_interp_1d [419] + 0.00 0.00 4000/4000 __pmc_gas_state_MOD_gas_state_add_scaled [418] + 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] + 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_scale [420] + 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] +----------------------------------------------- + 0.00 0.00 163/916 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] + 0.00 0.00 753/916 __pmc_spec_file_MOD_spec_file_read_line [34] +[443] 0.0 0.00 0.00 916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] +----------------------------------------------- + 0.00 0.00 3/304 __pmc_spec_file_MOD_spec_file_string_to_integer [483] + 0.00 0.00 301/304 __pmc_spec_file_MOD_spec_file_string_to_real [445] +[444] 0.0 0.00 0.00 304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] +----------------------------------------------- + 0.00 0.00 13/301 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 288/301 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] +[445] 0.0 0.00 0.00 301 __pmc_spec_file_MOD_spec_file_string_to_real [445] + 0.00 0.00 301/304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] +----------------------------------------------- + 0.00 0.00 175/175 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] +[446] 0.0 0.00 0.00 175 __pmc_spec_file_MOD_spec_file_read_line_raw [446] +----------------------------------------------- + 0.00 0.00 163/163 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] +[447] 0.0 0.00 0.00 163 __pmc_spec_line_MOD_spec_line_strip_comment [447] +----------------------------------------------- + 0.00 0.00 163/163 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] +[448] 0.0 0.00 0.00 163 __pmc_spec_line_MOD_spec_line_tabs_to_spaces [448] +----------------------------------------------- + 0.00 0.00 4/130 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 126/130 __pmc_bin_grid_MOD_bin_grid_make [458] +[449] 0.0 0.00 0.00 130 __pmc_util_MOD_real_to_string [449] +----------------------------------------------- + 0.00 0.00 113/113 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] +[450] 0.0 0.00 0.00 113 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] + 0.00 0.00 13302/13302 __pmc_aero_particle_MOD_aero_particle_shift [390] + 0.00 0.00 103/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.00 104/104 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] +[451] 0.0 0.00 0.00 104 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [451] +----------------------------------------------- + 0.00 0.00 87/87 __pmc_spec_file_MOD_spec_file_read_line [34] +[452] 0.0 0.00 0.00 87 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] + 0.00 0.00 175/175 __pmc_spec_file_MOD_spec_file_read_line_raw [446] + 0.00 0.00 163/163 __pmc_spec_line_MOD_spec_line_strip_comment [447] + 0.00 0.00 163/163 __pmc_spec_line_MOD_spec_line_tabs_to_spaces [448] + 0.00 0.00 163/916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] +----------------------------------------------- + 0.00 0.00 84/84 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] +[453] 0.0 0.00 0.00 84 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] + 0.00 0.00 2189/2189 __pmc_integer_varray_MOD_integer_varray_zero [422] +----------------------------------------------- + 0.00 0.00 84/84 __pmc_bin_grid_MOD_bin_grid_make [458] +[454] 0.0 0.00 0.00 84 __pmc_util_MOD_interp_linear_disc [454] +----------------------------------------------- + 0.00 0.00 84/84 __pmc_util_MOD_logspace [456] +[455] 0.0 0.00 0.00 84 __pmc_util_MOD_linspace [455] + 0.00 0.00 84/322340 __pmc_util_MOD_assert [375] +----------------------------------------------- + 0.00 0.00 84/84 __pmc_bin_grid_MOD_bin_grid_make [458] +[456] 0.0 0.00 0.00 84 __pmc_util_MOD_logspace [456] + 0.00 0.00 252/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 84/84 __pmc_util_MOD_linspace [455] +----------------------------------------------- + 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] +[457] 0.0 0.00 0.00 52 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] + 0.00 0.00 104/104 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [451] + 0.00 0.00 52/90028 __pmc_bin_grid_MOD_bin_grid_size [378] +----------------------------------------------- + 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] +[458] 0.0 0.00 0.00 52 __pmc_bin_grid_MOD_bin_grid_make [458] + 0.00 0.00 136/4148 __pmc_util_MOD_assert_msg [414] + 0.00 0.00 126/130 __pmc_util_MOD_real_to_string [449] + 0.00 0.00 84/84 __pmc_util_MOD_logspace [456] + 0.00 0.00 84/84 __pmc_util_MOD_interp_linear_disc [454] + 0.00 0.00 52/20152 __pmc_util_MOD_integer_to_string [386] +----------------------------------------------- + 0.00 0.00 1/51 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 2/51 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_read_integer [72] + 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_read_string [52] +[459] 0.0 0.00 0.00 51 __pmc_spec_file_MOD_spec_file_check_line_length [459] +----------------------------------------------- + 0.00 0.00 1/51 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 2/51 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_read_integer [72] + 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_read_real [58] + 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_read_logical [54] + 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_read_string [52] +[460] 0.0 0.00 0.00 51 __pmc_spec_file_MOD_spec_file_check_line_name [460] +----------------------------------------------- + 0.00 0.00 10/50 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] + 0.00 0.00 20/50 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] + 0.00 0.00 20/50 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] +[461] 0.0 0.00 0.00 50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] +----------------------------------------------- + 0.00 0.00 40/40 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[462] 0.0 0.00 0.00 40 __pmc_aero_mode_MOD_aero_mode_number [462] +----------------------------------------------- + 0.00 0.00 1/33 __pmc_rand_MOD_uuid4_str [500] + 0.00 0.00 32/33 __pmc_rand_MOD_rand_hex_char [464] +[463] 0.0 0.00 0.00 33 __pmc_rand_MOD_pmc_rand_int [463] + 0.00 0.00 99/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 33/1282969 __pmc_rand_MOD_pmc_random [373] +----------------------------------------------- + 0.00 0.00 32/32 __pmc_rand_MOD_uuid4_str [500] +[464] 0.0 0.00 0.00 32 __pmc_rand_MOD_rand_hex_char [464] + 0.00 0.00 32/33 __pmc_rand_MOD_pmc_rand_int [463] +----------------------------------------------- + 0.00 0.00 10/30 MAIN__ [1] + 0.00 0.00 20/30 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] +[465] 0.0 0.00 0.00 30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] + 0.00 0.00 30/8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] +----------------------------------------------- + 0.00 0.00 10/30 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] + 0.00 0.00 20/30 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] +[466] 0.0 0.00 0.00 30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] +----------------------------------------------- + 0.00 0.00 30/30 __pmc_run_part_MOD_run_part [3] +[467] 0.0 0.00 0.00 30 __pmc_util_MOD_check_time_multiple [467] +----------------------------------------------- + 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] +[468] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] + 0.00 0.00 20/322340 __pmc_util_MOD_assert [375] + 0.00 0.00 20/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] +----------------------------------------------- + 0.00 0.00 1/15 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 2/15 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 5/15 MAIN__ [1] + 0.00 0.00 7/15 __pmc_scenario_MOD_spec_file_read_scenario [47] +[469] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_close [469] + 0.00 0.00 15/15 __pmc_util_MOD_free_unit [472] +----------------------------------------------- + 0.00 0.00 1/15 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] + 0.00 0.00 2/15 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] + 0.00 0.00 5/15 MAIN__ [1] + 0.00 0.00 7/15 __pmc_scenario_MOD_spec_file_read_scenario [47] +[470] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_open [470] + 0.00 0.00 15/15 __pmc_util_MOD_get_unit [473] +----------------------------------------------- + 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_read_logical [54] +[471] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_string_to_logical [471] +----------------------------------------------- + 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_close [469] +[472] 0.0 0.00 0.00 15 __pmc_util_MOD_free_unit [472] +----------------------------------------------- + 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_open [470] +[473] 0.0 0.00 0.00 15 __pmc_util_MOD_get_unit [473] +----------------------------------------------- + 0.00 0.00 10/10 MAIN__ [1] +[474] 0.0 0.00 0.00 10 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] + 0.00 0.00 10/30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] + 0.00 0.00 10/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] +----------------------------------------------- + 0.00 0.00 10/10 MAIN__ [1] +[475] 0.0 0.00 0.00 10 __pmc_aero_state_MOD_aero_state_set_weight [475] + 0.00 0.00 10/30141 __pmc_aero_data_MOD_aero_data_n_source [382] + 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] +----------------------------------------------- + 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_weight [475] +[476] 0.0 0.00 0.00 10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] + 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [477] +----------------------------------------------- + 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] +[477] 0.0 0.00 0.00 10 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [477] +----------------------------------------------- + 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_scale_weight [80] +[478] 0.0 0.00 0.00 10 __pmc_rand_MOD_prob_round [478] + 0.00 0.00 10/1282969 __pmc_rand_MOD_pmc_random [373] +----------------------------------------------- + 0.00 0.00 10/10 MAIN__ [1] +[479] 0.0 0.00 0.00 10 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] + 0.00 0.00 20/30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] +----------------------------------------------- + 0.00 0.00 10/10 MAIN__ [1] +[480] 0.0 0.00 0.00 10 __pmc_scenario_MOD_scenario_init_env_state [480] + 0.00 0.00 30/6030 __pmc_util_MOD_interp_1d [411] +----------------------------------------------- + 0.00 0.00 1/3 __pmc_gas_state_MOD_spec_file_read_gas_state [71] + 0.00 0.00 2/3 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] +[481] 0.0 0.00 0.00 3 __pmc_gas_state_MOD_gas_state_set_size [481] + 0.00 0.00 3/3 __pmc_gas_state_MOD_gas_state_zero [482] +----------------------------------------------- + 0.00 0.00 3/3 __pmc_gas_state_MOD_gas_state_set_size [481] +[482] 0.0 0.00 0.00 3 __pmc_gas_state_MOD_gas_state_zero [482] + 0.00 0.00 3/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] +----------------------------------------------- + 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_read_integer [72] +[483] 0.0 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_string_to_integer [483] + 0.00 0.00 3/304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] +----------------------------------------------- + 0.00 0.00 1/3 __pmc_aero_data_MOD_aero_data_set_water_index [493] + 0.00 0.00 2/3 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] +[484] 0.0 0.00 0.00 3 __pmc_util_MOD_string_array_find [484] +----------------------------------------------- + 0.00 0.00 2/2 __pmc_rand_MOD_pmc_srand [488] +[485] 0.0 0.00 0.00 2 __pmc_mpi_MOD_pmc_mpi_bcast_integer [485] +----------------------------------------------- + 0.00 0.00 2/2 MAIN__ [1] +[486] 0.0 0.00 0.00 2 __pmc_mpi_MOD_pmc_mpi_bcast_string [486] +----------------------------------------------- + 0.00 0.00 2/2 MAIN__ [1] +[487] 0.0 0.00 0.00 2 __pmc_rand_MOD_pmc_rand_finalize [487] +----------------------------------------------- + 0.00 0.00 2/2 MAIN__ [1] +[488] 0.0 0.00 0.00 2 __pmc_rand_MOD_pmc_srand [488] + 0.00 0.00 2/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] + 0.00 0.00 2/2 __pmc_mpi_MOD_pmc_mpi_bcast_integer [485] +----------------------------------------------- + 0.00 0.00 2/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] +[489] 0.0 0.00 0.00 2 __pmc_util_MOD_almost_equal [489] +----------------------------------------------- + 0.00 0.00 1/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] + 0.00 0.00 1/2 __pmc_gas_data_MOD_spec_file_read_gas_data [70] +[490] 0.0 0.00 0.00 2 __pmc_util_MOD_ensure_string_array_size [490] +----------------------------------------------- + 0.00 0.00 2/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] +[491] 0.0 0.00 0.00 2 __pmc_util_MOD_warn_assert_msg [491] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] +[492] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] + 0.00 0.00 2/3 __pmc_util_MOD_string_array_find [484] + 0.00 0.00 1/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] +[493] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_set_water_index [493] + 0.00 0.00 1/3 __pmc_util_MOD_string_array_find [484] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] +[494] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_source_by_name [494] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_fractal_MOD_spec_file_read_fractal [89] +[495] 0.0 0.00 0.00 1 __pmc_fractal_MOD_fractal_set_spherical [495] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] +[496] 0.0 0.00 0.00 1 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] + 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[497] 0.0 0.00 0.00 1 __pmc_mosaic_MOD_mosaic_support [497] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[498] 0.0 0.00 0.00 1 __pmc_mpi_MOD_pmc_mpi_finalize [498] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[499] 0.0 0.00 0.00 1 __pmc_mpi_MOD_pmc_mpi_init [499] +----------------------------------------------- + 0.00 0.00 1/1 MAIN__ [1] +[500] 0.0 0.00 0.00 1 __pmc_rand_MOD_uuid4_str [500] + 0.00 0.00 32/32 __pmc_rand_MOD_rand_hex_char [464] + 0.00 0.00 1/33 __pmc_rand_MOD_pmc_rand_int [463] +----------------------------------------------- + 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] +[501] 0.0 0.00 0.00 1 __pmc_util_MOD_diam2rad [501] +----------------------------------------------- + + This table describes the call tree of the program, and was sorted by + the total amount of time spent in each function and its children. + + Each entry in this table consists of several lines. The line with the + index number at the left hand margin lists the current function. + The lines above it list the functions that called this function, + and the lines below it list the functions this one called. + This line lists: + index A unique number given to each element of the table. + Index numbers are sorted numerically. + The index number is printed next to every function name so + it is easier to look up where the function is in the table. + + % time This is the percentage of the `total' time that was spent + in this function and its children. Note that due to + different viewpoints, functions excluded by options, etc, + these numbers will NOT add up to 100%. + + self This is the total amount of time spent in this function. + + children This is the total amount of time propagated into this + function by its children. + + called This is the number of times the function was called. + If the function called itself recursively, the number + only includes non-recursive calls, and is followed by + a `+' and the number of recursive calls. + + name The name of the current function. The index number is + printed after it. If the function is a member of a + cycle, the cycle number is printed between the + function's name and the index number. + + + For the function's parents, the fields have the following meanings: + + self This is the amount of time that was propagated directly + from the function into this parent. + + children This is the amount of time that was propagated from + the function's children into this parent. + + called This is the number of times this parent called the + function `/' the total number of times the function + was called. Recursive calls to the function are not + included in the number after the `/'. + + name This is the name of the parent. The parent's index + number is printed after it. If the parent is a + member of a cycle, the cycle number is printed between + the name and the index number. + + If the parents of the function cannot be determined, the word + `' is printed in the `name' field, and all the other + fields are blank. + + For the function's children, the fields have the following meanings: + + self This is the amount of time that was propagated directly + from the child into the function. + + children This is the amount of time that was propagated from the + child's children to the function. + + called This is the number of times the function called + this child `/' the total number of times the child + was called. Recursive calls by the child are not + listed in the number after the `/'. + + name This is the name of the child. The child's index + number is printed after it. If the child is a + member of a cycle, the cycle number is printed + between the name and the index number. + + If there are any cycles (circles) in the call graph, there is an + entry for the cycle-as-a-whole. This entry shows who called the + cycle (as parents) and the members of the cycle (as children.) + The `+' recursive calls entry shows the number of function calls that + were internal to the cycle, and the calls entry for each member shows, + for that member, how many times it was called from other members of + the cycle. + +Copyright (C) 2012-2016 Free Software Foundation, Inc. + +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. + +Index by function name + + [1] MAIN__ [8] __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [5] __pmc_output_MOD_output_state_to_file + [382] __pmc_aero_data_MOD_aero_data_n_source [10] __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [76] __pmc_output_MOD_write_time + [377] __pmc_aero_data_MOD_aero_data_n_spec [67] __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [487] __pmc_rand_MOD_pmc_rand_finalize + [86] __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [431] __pmc_aero_weight_array_MOD_aero_weight_array_scale [463] __pmc_rand_MOD_pmc_rand_int + [30] __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [476] __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [373] __pmc_rand_MOD_pmc_random + [42] __pmc_aero_data_MOD_aero_data_output_netcdf [477] __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [374] __pmc_rand_MOD_pmc_random_geometric + [92] __pmc_aero_data_MOD_aero_data_rad2vol [90] __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [488] __pmc_rand_MOD_pmc_srand + [492] __pmc_aero_data_MOD_aero_data_set_mosaic_map [91] __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [478] __pmc_rand_MOD_prob_round + [493] __pmc_aero_data_MOD_aero_data_set_water_index [383] __pmc_bin_grid_MOD_bin_grid_find [439] __pmc_rand_MOD_rand_binomial + [494] __pmc_aero_data_MOD_aero_data_source_by_name [458] __pmc_bin_grid_MOD_bin_grid_make [464] __pmc_rand_MOD_rand_hex_char + [428] __pmc_aero_data_MOD_aero_data_spec_by_name [378] __pmc_bin_grid_MOD_bin_grid_size [32] __pmc_rand_MOD_rand_normal + [13] __pmc_aero_data_MOD_aero_data_vol2rad [432] __pmc_env_state_MOD_env_state_air_molar_den [41] __pmc_rand_MOD_rand_normal_array_1d + [68] __pmc_aero_data_MOD_spec_file_read_aero_data [60] __pmc_env_state_MOD_env_state_output_netcdf [95] __pmc_rand_MOD_rand_poisson + [465] __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [417] __pmc_env_state_MOD_env_state_sat_vapor_pressure [500] __pmc_rand_MOD_uuid4_str + [416] __pmc_aero_dist_MOD_aero_dist_interp_1d [433] __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [426] __pmc_run_part_MOD_print_part_progress + [409] __pmc_aero_dist_MOD_aero_dist_n_mode [434] __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [3] __pmc_run_part_MOD_run_part + [57] __pmc_aero_dist_MOD_spec_file_read_aero_dist [66] __pmc_env_state_MOD_spec_file_read_env_state [479] __pmc_scenario_MOD_scenario_contains_aero_mode_type + [53] __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [18] __pmc_fractal_MOD_fractal_is_spherical [480] __pmc_scenario_MOD_scenario_init_env_state + [410] __pmc_aero_info_array_MOD_aero_info_array_n_item [73] __pmc_fractal_MOD_fractal_output_netcdf [440] __pmc_scenario_MOD_scenario_particle_loss + [413] __pmc_aero_info_array_MOD_aero_info_array_zero [93] __pmc_fractal_MOD_fractal_rad2vol [15] __pmc_scenario_MOD_scenario_update_aero_state + [462] __pmc_aero_mode_MOD_aero_mode_number [495] __pmc_fractal_MOD_fractal_set_spherical [441] __pmc_scenario_MOD_scenario_update_env_state + [51] __pmc_aero_mode_MOD_aero_mode_sample_radius [23] __pmc_fractal_MOD_fractal_vol2rad [442] __pmc_scenario_MOD_scenario_update_gas_state + [40] __pmc_aero_mode_MOD_aero_mode_sample_vols [36] __pmc_fractal_MOD_fractal_vol_to_mobility_rad [47] __pmc_scenario_MOD_spec_file_read_scenario + [56] __pmc_aero_mode_MOD_spec_file_read_aero_mode [89] __pmc_fractal_MOD_spec_file_read_fractal [459] __pmc_spec_file_MOD_spec_file_check_line_length + [69] __pmc_aero_mode_MOD_spec_file_read_vol_frac [376] __pmc_freezing_MOD_abifm_max [460] __pmc_spec_file_MOD_spec_file_check_line_name + [27] __pmc_aero_particle_MOD_aero_particle_dry_diameter [435] __pmc_freezing_MOD_abifm_max_spec [444] __pmc_spec_file_MOD_spec_file_check_read_iostat + [28] __pmc_aero_particle_MOD_aero_particle_dry_radius [29] __pmc_freezing_MOD_abifm_particle [469] __pmc_spec_file_MOD_spec_file_close + [33] __pmc_aero_particle_MOD_aero_particle_dry_volume [9] __pmc_freezing_MOD_freeze [470] __pmc_spec_file_MOD_spec_file_open + [19] __pmc_aero_particle_MOD_aero_particle_mass [436] __pmc_freezing_MOD_unfreeze [72] __pmc_spec_file_MOD_spec_file_read_integer + [398] __pmc_aero_particle_MOD_aero_particle_new_id [381] __pmc_gas_data_MOD_gas_data_n_spec [34] __pmc_spec_file_MOD_spec_file_read_line + [11] __pmc_aero_particle_MOD_aero_particle_radius [87] __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [48] __pmc_spec_file_MOD_spec_file_read_line_array + [399] __pmc_aero_particle_MOD_aero_particle_set_create_time [82] __pmc_gas_data_MOD_gas_data_output_netcdf [49] __pmc_spec_file_MOD_spec_file_read_line_list + [400] __pmc_aero_particle_MOD_aero_particle_set_source [496] __pmc_gas_data_MOD_gas_data_set_mosaic_map [43] __pmc_spec_file_MOD_spec_file_read_line_no_eof + [401] __pmc_aero_particle_MOD_aero_particle_set_vols [70] __pmc_gas_data_MOD_spec_file_read_gas_data [446] __pmc_spec_file_MOD_spec_file_read_line_raw + [402] __pmc_aero_particle_MOD_aero_particle_set_weight [418] __pmc_gas_state_MOD_gas_state_add_scaled [54] __pmc_spec_file_MOD_spec_file_read_logical + [390] __pmc_aero_particle_MOD_aero_particle_shift [437] __pmc_gas_state_MOD_gas_state_ensure_nonnegative [452] __pmc_spec_file_MOD_spec_file_read_next_data_line + [372] __pmc_aero_particle_MOD_aero_particle_species_mass [419] __pmc_gas_state_MOD_gas_state_interp_1d [58] __pmc_spec_file_MOD_spec_file_read_real + [31] __pmc_aero_particle_MOD_aero_particle_volume [389] __pmc_gas_state_MOD_gas_state_is_allocated [50] __pmc_spec_file_MOD_spec_file_read_real_named_array + [403] __pmc_aero_particle_MOD_aero_particle_zero [438] __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [52] __pmc_spec_file_MOD_spec_file_read_string + [404] __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [81] __pmc_gas_state_MOD_gas_state_output_netcdf [61] __pmc_spec_file_MOD_spec_file_read_timed_real_array + [405] __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [420] __pmc_gas_state_MOD_gas_state_scale [483] __pmc_spec_file_MOD_spec_file_string_to_integer + [379] __pmc_aero_particle_array_MOD_aero_particle_array_n_part [481] __pmc_gas_state_MOD_gas_state_set_size [471] __pmc_spec_file_MOD_spec_file_string_to_logical + [450] __pmc_aero_particle_array_MOD_aero_particle_array_realloc [482] __pmc_gas_state_MOD_gas_state_zero [445] __pmc_spec_file_MOD_spec_file_string_to_real + [423] __pmc_aero_particle_array_MOD_aero_particle_array_zero [71] __pmc_gas_state_MOD_spec_file_read_gas_state [35] __pmc_spec_line_MOD_spec_line_set_size + [38] __pmc_aero_sorted_MOD_aero_sorted_add_particle [65] __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [447] __pmc_spec_line_MOD_spec_line_strip_comment + [429] __pmc_aero_sorted_MOD_aero_sorted_n_bin [14] __pmc_integer_rmap2_MOD_integer_rmap2_append [443] __pmc_spec_line_MOD_spec_line_strip_leading_spaces + [393] __pmc_aero_sorted_MOD_aero_sorted_n_class [451] __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [448] __pmc_spec_line_MOD_spec_line_tabs_to_spaces + [406] __pmc_aero_sorted_MOD_aero_sorted_n_group [453] __pmc_integer_rmap2_MOD_integer_rmap2_zero [489] __pmc_util_MOD_almost_equal + [64] __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [20] __pmc_integer_varray_MOD_integer_varray_append [375] __pmc_util_MOD_assert + [24] __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [21] __pmc_integer_varray_MOD_integer_varray_enlarge [414] __pmc_util_MOD_assert_msg + [457] __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [37] __pmc_integer_varray_MOD_integer_varray_n_entry [421] __pmc_util_MOD_check_event + [26] __pmc_aero_sorted_MOD_aero_sorted_sort_particles [22] __pmc_integer_varray_MOD_integer_varray_realloc [467] __pmc_util_MOD_check_time_multiple + [16] __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [422] __pmc_integer_varray_MOD_integer_varray_zero [501] __pmc_util_MOD_diam2rad + [39] __pmc_aero_state_MOD_aero_state_add_particle [497] __pmc_mosaic_MOD_mosaic_support [397] __pmc_util_MOD_ensure_integer_array_size + [430] __pmc_aero_state_MOD_aero_state_copy_weight [395] __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [396] __pmc_util_MOD_ensure_real_array_size + [12] __pmc_aero_state_MOD_aero_state_masses [485] __pmc_mpi_MOD_pmc_mpi_bcast_integer [490] __pmc_util_MOD_ensure_string_array_size + [380] __pmc_aero_state_MOD_aero_state_n_part [486] __pmc_mpi_MOD_pmc_mpi_bcast_string [388] __pmc_util_MOD_find_1d + [84] __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [498] __pmc_mpi_MOD_pmc_mpi_finalize [472] __pmc_util_MOD_free_unit + [6] __pmc_aero_state_MOD_aero_state_output_netcdf [499] __pmc_mpi_MOD_pmc_mpi_init [473] __pmc_util_MOD_get_unit + [7] __pmc_aero_state_MOD_aero_state_particle_num_conc [392] __pmc_mpi_MOD_pmc_mpi_rank [386] __pmc_util_MOD_integer_to_string + [79] __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [394] __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [387] __pmc_util_MOD_integer_to_string_max_len + [85] __pmc_aero_state_MOD_aero_state_rebalance [391] __pmc_mpi_MOD_pmc_mpi_size [411] __pmc_util_MOD_interp_1d + [94] __pmc_aero_state_MOD_aero_state_sample_particles [46] __pmc_netcdf_MOD_pmc_nc_check [454] __pmc_util_MOD_interp_linear_disc + [80] __pmc_aero_state_MOD_aero_state_scale_weight [45] __pmc_netcdf_MOD_pmc_nc_check_msg [427] __pmc_util_MOD_iso8601_date_and_time + [474] __pmc_aero_state_MOD_aero_state_set_n_part_ideal [44] __pmc_netcdf_MOD_pmc_nc_open_write [455] __pmc_util_MOD_linspace + [475] __pmc_aero_state_MOD_aero_state_set_weight [59] __pmc_netcdf_MOD_pmc_nc_write_atts [384] __pmc_util_MOD_linspace_find + [25] __pmc_aero_state_MOD_aero_state_sort [88] __pmc_netcdf_MOD_pmc_nc_write_info [456] __pmc_util_MOD_logspace + [77] __pmc_aero_state_MOD_aero_state_total_particles [74] __pmc_netcdf_MOD_pmc_nc_write_integer [385] __pmc_util_MOD_logspace_find + [83] __pmc_aero_state_MOD_aero_state_total_particles_all_procs [63] __pmc_netcdf_MOD_pmc_nc_write_integer_1d [408] __pmc_util_MOD_pow2_above + [468] __pmc_aero_state_MOD_aero_state_weight_class_for_source [78] __pmc_netcdf_MOD_pmc_nc_write_integer_2d [449] __pmc_util_MOD_real_to_string + [424] __pmc_aero_state_MOD_aero_state_zero [55] __pmc_netcdf_MOD_pmc_nc_write_real [407] __pmc_util_MOD_sphere_rad2vol + [17] __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [62] __pmc_netcdf_MOD_pmc_nc_write_real_1d [371] __pmc_util_MOD_sphere_vol2rad + [415] __pmc_aero_weight_MOD_aero_weight_scale [75] __pmc_netcdf_MOD_pmc_nc_write_real_2d [484] __pmc_util_MOD_string_array_find + [461] __pmc_aero_weight_array_MOD_aero_weight_array_n_class [425] __pmc_output_MOD_make_filename [412] __pmc_util_MOD_time_to_string_max_len + [466] __pmc_aero_weight_array_MOD_aero_weight_array_n_group [4] __pmc_output_MOD_output_state [491] __pmc_util_MOD_warn_assert_msg diff --git a/scenarios/7_freezing/case_obj_test.py b/scenarios/7_freezing/case_obj_test.py new file mode 100755 index 000000000..37524524b --- /dev/null +++ b/scenarios/7_freezing/case_obj_test.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from visual_tools.case import PartMC_Case + +a = PartMC_Case("sdm_a") +mixing, dim, info = a.compute_ice_ratio("0001") +print(dim) +print(info) +print(mixing) + +import matplotlib.pyplot as plt +plt.plot(mixing) +plt.grid() +plt.show() diff --git a/scenarios/7_freezing/data_temp/sdm_a.dat b/scenarios/7_freezing/data_temp/sdm_a.dat new file mode 100644 index 000000000..e0af14e23 --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_a.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 265.000 264.333 263.667 263.000 262.333 261.667 261.000 260.333 259.667 259.000 258.333 257.667 257.000 256.333 255.667 255.000 254.333 253.667 253.000 252.333 251.667 251.000 250.333 249.667 249.000 248.333 247.667 247.000 246.333 245.667 245.000 244.333 243.667 243.000 242.333 241.667 241.000 240.333 239.667 239.000 238.333 237.667 237.000 236.333 235.667 235.000 234.333 233.667 233.000 232.333 231.667 231.000 230.333 229.667 229.000 228.333 227.667 227.000 226.333 225.667 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_b.dat b/scenarios/7_freezing/data_temp/sdm_b.dat new file mode 100644 index 000000000..7e443c1ef --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_b.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 250.000 249.833 249.667 249.500 249.333 249.167 249.000 248.833 248.667 248.500 248.333 248.167 248.000 247.833 247.667 247.500 247.333 247.167 247.000 246.833 246.667 246.500 246.333 246.167 246.000 245.833 245.667 245.500 245.333 245.167 245.000 244.833 244.667 244.500 244.333 244.167 244.000 243.833 243.667 243.500 243.333 243.167 243.000 242.833 242.667 242.500 242.333 242.167 242.000 241.833 241.667 241.500 241.333 241.167 241.000 240.833 240.667 240.500 240.333 240.167 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_c.dat b/scenarios/7_freezing/data_temp/sdm_c.dat new file mode 100644 index 000000000..0689fcb20 --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_c.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d.dat b/scenarios/7_freezing/data_temp/sdm_d.dat new file mode 100644 index 000000000..9bb989131 --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_d.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d1.dat b/scenarios/7_freezing/data_temp/sdm_d1.dat new file mode 100644 index 000000000..fcea62c44 --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_d1.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_e.dat b/scenarios/7_freezing/data_temp/sdm_e.dat new file mode 100644 index 000000000..bde49568d --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_e.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.222 240.444 240.667 240.889 241.111 241.333 241.556 241.778 242.000 242.222 242.444 242.667 242.889 243.111 243.333 243.556 243.778 244.000 244.222 244.444 244.667 244.889 245.111 245.333 245.556 245.778 246.000 246.222 246.444 246.667 246.889 247.111 247.333 247.556 247.778 248.000 248.222 248.444 248.667 248.889 249.111 249.333 249.556 249.778 250.000 diff --git a/scenarios/7_freezing/data_temp/sdm_f.dat b/scenarios/7_freezing/data_temp/sdm_f.dat new file mode 100644 index 000000000..3f99f48bd --- /dev/null +++ b/scenarios/7_freezing/data_temp/sdm_f.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.1 b/scenarios/7_freezing/data_temp/temp.data.1 new file mode 100644 index 000000000..6e49cce58 --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.1 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 +temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 242.087 244.174 246.261 248.348 250.435 252.522 254.609 256.696 258.783 260.870 262.957 265.043 267.130 269.217 271.304 273.391 275.478 277.565 279.652 281.739 283.826 285.913 288.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.2 b/scenarios/7_freezing/data_temp/temp.data.2 new file mode 100644 index 000000000..cefb6375e --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.2 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 3660 3720 3780 3840 3900 3960 4020 4080 4140 4200 4260 4320 4380 4440 4500 4560 4620 4680 4740 4800 4860 4920 4980 5040 5100 5160 5220 5280 5340 5400 5460 5520 5580 5640 5700 5760 5820 5880 5940 6000 6060 6120 6180 6240 6300 6360 6420 6480 6540 6600 6660 6720 6780 6840 6900 6960 7020 7080 7140 7200 +temp 270.000 269.625 269.250 268.875 268.500 268.125 267.750 267.375 267.000 266.625 266.250 265.875 265.500 265.125 264.750 264.375 264.000 263.625 263.250 262.875 262.500 262.125 261.750 261.375 261.000 260.625 260.250 259.875 259.500 259.125 258.750 258.375 258.000 257.625 257.250 256.875 256.500 256.125 255.750 255.375 255.000 254.625 254.250 253.875 253.500 253.125 252.750 252.375 252.000 251.625 251.250 250.875 250.500 250.125 249.750 249.375 249.000 248.625 248.250 247.875 247.500 247.125 246.750 246.375 246.000 245.625 245.250 244.875 244.500 244.125 243.750 243.375 243.000 242.625 242.250 241.875 241.500 241.125 240.750 240.375 240.000 239.625 239.250 238.875 238.500 238.125 237.750 237.375 237.000 236.625 236.250 235.875 235.500 235.125 234.750 234.375 234.000 233.625 233.250 232.875 232.500 232.125 231.750 231.375 231.000 230.625 230.250 229.875 229.500 229.125 228.750 228.375 228.000 227.625 227.250 226.875 226.500 226.125 225.750 225.375 225.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.3 b/scenarios/7_freezing/data_temp/temp.data.3 new file mode 100644 index 000000000..9f1303d6a --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.3 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 +temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.4 b/scenarios/7_freezing/data_temp/temp.data.4 new file mode 100644 index 000000000..2ee9c4ba6 --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.4 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 +temp 288.000 284.000 280.000 276.000 272.000 268.000 264.000 260.000 256.000 252.000 248.000 244.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.5 b/scenarios/7_freezing/data_temp/temp.data.5 new file mode 100644 index 000000000..bb5ab55ce --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.5 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 +temp 288.000 283.167 278.333 273.500 268.667 263.833 259.000 254.167 249.333 244.500 239.667 234.833 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.6 b/scenarios/7_freezing/data_temp/temp.data.6 new file mode 100644 index 000000000..329ae0d2a --- /dev/null +++ b/scenarios/7_freezing/data_temp/temp.data.6 @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 +temp 288.000 282.333 276.667 271.000 265.333 259.667 254.000 248.333 242.667 237.000 231.333 225.667 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 diff --git a/scenarios/7_freezing/freezing_run.sh b/scenarios/7_freezing/freezing_run.sh new file mode 100755 index 000000000..5790e48c3 --- /dev/null +++ b/scenarios/7_freezing/freezing_run.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +caseName=chiexp_external +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} + +sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec + +# make the output directory if it doesn't exist +mkdir -p output/$caseName +cp -p run_part.spec output/$caseName +cp -p *.dat output/$caseName + +../../build/partmc run_part.spec +#for i in out/freezing_part_*.nc; do ../../build/extract_aero_particles $i; done; diff --git a/scenarios/7_freezing/gas_back.dat b/scenarios/7_freezing/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/gas_data.dat b/scenarios/7_freezing/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/gas_emit.dat b/scenarios/7_freezing/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/gas_init.dat b/scenarios/7_freezing/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/gmon.out b/scenarios/7_freezing/gmon.out new file mode 100644 index 0000000000000000000000000000000000000000..0135bc6988de6a2e55054be9f0fe110de139a153 GIT binary patch literal 742922 zcmeI*3zThlT_5m0_vUf)049J!AditinnD5xaJ9i=JxDN6Aq)W{5R?&arqAbp)yM(t!}j17s8ss1JJf|M&mjz5h4=+(iz+ri=gq0t5&UAV7cs0RjXF5FkK+009C72oNAZ z;MOSMw@kOjqi&xG5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAVA>OD&X%F+**&k{l0k%?74YQZ!|mCkP(JO0t5&UAV7cs0RjXF5FkK+ z009C72xNild+&5ye`DPt9*;3zcF@`ahikOA-TX#P4|i_kNqjSH#_cT=AV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009EGG=ZhOL;Yh}KG;4krK)k|-ot8lus&~!ZF|!o@%^S4 z&lm&<5FkK+009C72oNAZfB*pk1a7$kaeuJfB`lAv{jDqaq>}jFs_wIBQEK9TS3u=^+|jk+x2}#eq35wN=apP};0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5;&o2$U^uS?uq zXJ}qGhJfRKW2owr009C72oU)873lw^wc%f*8}G;PZ?l!Zlpb}*q@p|RFWtNUZ?f-? zED#_-;3g9|Dvfk>9xvAVmAF>rI6dqeuUIBPfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+z_+cy(qYd0aO)1UyTd43>h>N+l@bC3 z2oNAZfB*pk1PBlyK;U2k2Y*L@sIBAe#uC?o~uaA9APg(ddma|5FkK+009C72oNAZfB*pk z1PI))0_7gv4cn{U2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7ZYTkt z@3^5P^+SLF0RjXF5FkK+009C72oNA}{RP~ey8dQb5FkK+009C72oNAZfB*pk1PI)E z1l&Kn^&IP4(w+|IZTvg%!+QMHiGE+lSuB@-JHG46ztdkHkI(iw;^_BN>d((OvgHgqX8%mf`BS#UhT%LIpO3MvwCHQfnSbQy zc@{klf1{yq70-vEK6;AEVdP=d(r?uHPM`=3XLWxzm2;=0tutsiUx%}5Sco3lVpJTln02flvFPEE zqhU&$J}S?>`k6e;^7v7^;kq#VbR73EUM@dZ`sT-u`Z%sTH?O_C+A^-ct}%z2VGo9x z_J28Q_!=t4vnoF|`?`JIsf+JJU2*NVJ*xkfz6PHn^kd!YyOS5&hL&}&x#8mBsP3-a z%epfbOXHah%g6069hS!D-grjCJcgriUHiVjTMOS(fjC1>&vUp_dVKfd`*5_&ITa=2 z^S(c49-Lb)r^mN1zK@T1`#c!;I6gz8tMN0jzB`z-P#qz27ihJ2&YfSv)?lFrC%fDQ#594*+ zy%+1_vvIVO)j1m4CoHmf&oUgp{utHgQGWy%LoL3_-#e?Xl(Fr;iz{P{7RM=;%btwq z)b~_=0`|+pkw0eis+&!YaCKFnYkXS{zGFKXiJ=*5-2 z>+Z1lZ~SbopP^lM+g#msuS`q5+%QHhGt6`Rtn2rs|LSKK`}DEyE-8s`dl&oDe+{!7 z_cNZ)c-*qQXa7&JrTwyH=}z5pcUtN@o}*`rd#pHSb5eXKDKw#WUpgKe*S z`sUYeiZROUZpyLBnAh*|aA$b9b=PO~q0eEd-TqsD=C8j0RjXF z5V*ApEG^#kmESZJgFV-JCpf&a>X*j9OB#NURa$$zH46-9$_=A1oL|v%|9x1xVaCu4 zftym`(9e;&qF$?Kda!Nd%K9G8wXg7f?YOV;a_OgJbzf!cKkTve-TyoqzG8Wtlx>HT z4K+8$jLS@h$1+}d?6;JW<1xOM?eRE#>R{MfS`B?$B0%6-BoA)jqPrt-J0XZb@5c{6mgr(JPNP#Ti!KbCl2A#n`v4K6NGPjv-f#$dQ9PR4nKbBD4gc7>T}i#w_D+EE9@?b(RYs-DQ)Gj8ffLo zQCWp+t#IB7Cr^py)qz{fVb$kGE1dj9WAxQlxbf7etj?tpo^{7_yZ$R7Z|2JHxz8xv z%Hb*FaJ$v#Zmapu%VP8o-v9g4K*#ojZT)P7=R75jW(s$5_{0+)I#flTH&k}&RgMjE9^cLqgQ*hlEZ3BtF6lQRyb=l-)epVReUaS6&{ zIg?X3{diPf_V%be{)k2OdJa#1Q=GIZoaOMT?;M5m9RAKEPMcJ@@`>oP0$FW^>#cC* z)6sl+8hzg7w*8b^;Z`eLxxCf96>hh}$!8kPXRWZiqER`?;h!B7N@?<&t;+7Rt>!sA z``B^wR%Q3OM)S2+xZMgTS2mi@T48rpR6hFXxU9wDXoWkiaC&uPpv_jed`(oI_Ved- z{Z|@jlEY_TF$!06IQ{ccxR%4}w3+4bb*DXO=yS7GIsM`^RXq2UIP1MP&PSEgziEUkf7b}RZ$$XG_l%nFbTR3w&-tE4I6ET3 zs`ia(`jj$>CqGh5Xi)XLn1JtE2LS{47qD%hyEs zu6zMZ;rt8r=u!C>je$0E_|ow}YsbdfR(|ZJ<|Qmw+7zzm%2zxfTBLB6!}nyR6mI75 z$a}^fMR=QhTIUN(fZR61%byp|qoDiFJiz$!yL@6J+|1$Y-x1BzQ)cy~sQkW{j-H$A zIV|$&Xm%$@W!*f7zde2$&U08b-)V)@+^p(zmc#NhF3qz$HAerhXN6Jy2LVwz<=J3d);;NX!jU1N4@#d2km76*I@T;SF3U_i?4)J&QC+*t(YUC8I z!%dUqfn*Db=`9KL!SuH>V5(a*)`XYSkEEv-!AWoz{Ua+<^XrDhJ# z*dD!`*vMi1+Pl@~R;$n5R-fH{V@g$@lN{Fb%waXpjT~0}^|^e%n9_&O z8twZ^4y$=ib6CxDEr-=S=dI=?tOnX?_1WD&rd0Jg&EeWtW8+ePGOXsXn&)~Bt9i~^ zeQvk<+-dc>{M|8X)#v<&BYfM#a(KlfM&T@nUpapi?zEb(UlM)3 z`NC1yiw)k$jn|B))T-QVh0D)qOld8L zum0WWGyUY+Y=zscaQT_hXVrYQ6>hY`tyb8rN1s>!@6nW|Ijja+Z-w(#*gZS?tZsQN zx57y)Ty2Hxt#FpZ`mWK7V)P@9jy>AbU%|HWZpdU=_ho=4q(h~`x|ZH4Qta5IPH)kQovTj6dFt6Mb7 zuZYpBn>o`~xRJwZpsiN8lf&n{FZxbXn&x+U?|WT@>B+U0!w>xOIDA#CRPVXgUmaof z?rfHuRpI7qqOy3#>(AFV!qrwdYlT~_aF+L^8ffH18_l=! zot<(jzT^)tU%Xb#;q5Pr7AfrB5i8~VjPRWioslveW1yJ|OQIV`7lQrc~Wo1bkAG|ypa zo|JZ5m6Oj!^Qv32>3fFR2&2#md zM)S3AMEElok1rSbUR7zHuE|@+Ma9u?iO2Z^7I!swa`>)i#nUi_YsW{$d6!0*?uTsV z@TEDt?2o%WODlJZ%7^`QJYKqZ8ZT|;@S)e5I~X;rqu)w@Pz zHKmBfoA+;cgDU z{Hah%;c}izIdCal&tY{>V6zqOCl)fAg56G@5oGi!gl_{me zvEB-2Ijmm3&h8k^tJm|}Ijs6z{f@>!YdQS)r^m)L`c4kZKu0Z3v!&I17)qEb=Q;eF zyF~M}N85R&di}X_*Qh81rI#`5t#EQuRF=u7KBqY>%~QDEs@!T-b|=@PzxFYUJz74c z5l#;XU$m%MS~;~brS(?0*$Q`B;cgDAJ=$4m3^dEUQJoY9Z7m3)7;x}!VI;YB|h-Na9> zN5@JDQ=coXaGviDSC!K|zY?Z-uI2&mKc4(7|30Sd``-Rcp65Gd$9z3zadaPUTplY= z-i^n<@59NJu~KfMrQaW|<*?jFOW{Ti%Wbq2Zst$mmFA0Ih%N5d<*+nQ;Z6=q^As-U zPxU?U^D&DQ&T?4#Os{R`IV^pqa65;k&lGmo)VrC&Sq@8|p_IeYX9~A-So%z1m*@B5 zzl^?9xSCh~<6lL%Z*jd?TF)ybOqDD7Fg)@9MP)i1^S_Oia;r0i)4!|3HR#XIsDVNjViZuU!{3eE=ThZ z=EtY@eXiw|b8_<^@5A*Re)O%;X9{OIEPY00{t(;uz9W8Iq+>Mwju_}C$Kgu;)pfZh zrzh8HE8J*>+xd68U%Geno!-l=-6vMckF#{0pXKny;}5USACa5o-<8Mji_eSjwik^0 zT+ZRyj~RuN5{{d%Jt```>v5yX<@57OuKe29pS3ueIlRMTV`BKxShin9UsR%gMxcj!c&-8X+>+OwjcJS0l9HN_}(ur=DE8aQ@Y}><1t>G ze5eu5a#-H3rplEMH!3%BSXEB`xKX*9!|!=SJd0DG(~mSN=O3-Z^s{*RsS=ls;3q@fUUF?Rurj7aQTqZiMCZPVc04TH(rHHY!(J;d&1LX}(pH`rQ4iM)OI& zzfg_7-U@efSavi0=$U?{-lKRMn8T{it^D+>ny=^o<)C~>EXi-@@D2Hcaw*(tRZedI z&;@JPy&ymS)ENup)x7fC`SXCO`ECwhn_nWO%H=ym^QH4+CsH`c;e+!J{S zcbp;7Jcsk+M&YCt&h8w|-?S2s`z~Hw!8Y$6D<|G79@jqct4A(P?^%cc{S&`=^wRX~ z2+Qbq{*5QyW@)?J;>;hEi<^z#7nQ{`g&VDKrxi}7jpnmfxSPZB(ZuxHX60Wrns5AI zBiwm-Bkay=gzGsh2QCe?mBVu2;)U5Gqj@=SDO}HCHP5XaUi5@G?x}LR+8VtTZnnam zM@943JTP~&cyqWkIlt9s4$J8s$Ea1go5O1IE02yo%UKt@nZpWX{zFk&o(S<~u)G~emE8|FDyKQDDtB{u-xtOcAvK>rHky}{HieV?>&EJq>{=__XocH3tZoc; z7sfzUIBkVn&x*=(pB|6t_ea|~JbV0`rnO6>qWu0Sy~UX2ur&Y76%W|6w3)--%FRAMt=J*8L&0+O+VEWThS%oVvh_HSZ|Jw-9yW&CVniofNqfxo}!bauhiz9r~Qy)Au z-^$^?`-xGwlf!EC=}V${d1so=x>*kIllLrz^Or~EbM6t3@4aeqty_C#to%~GI`$X9 F{|`I>@DBh0 literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/height.dat b/scenarios/7_freezing/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/hist.py b/scenarios/7_freezing/hist.py new file mode 100755 index 000000000..80879f037 --- /dev/null +++ b/scenarios/7_freezing/hist.py @@ -0,0 +1,168 @@ +#!/usr/bin/env python + +import numpy as np +import matplotlib.pyplot as plt +import netCDF4 as nc + +from pdb import set_trace + +caseName = "out_comp1" +initial_time = 0 +final_time = 3600 + +OutDir = "./" + caseName + +def vol2rad(vol): + return (3 * vol / 4 / np.pi) ** (1/3.0) + +def aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind): + vol = 0 + for spec_name in aero_species_name2ind: + vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] + return vol + +def aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind): + vol = 0 + for spec_name in aero_species_name2ind: + if spec_name == "H2O": + continue + vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] + return vol + +def aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind): + vol = aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind) + radius = vol2rad(vol) + diameter = 2 * radius + return diameter + +def aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind): + vol = aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind) + radius = vol2rad(vol) + diameter = 2 * radius + return diameter + +def plot_bar(hist, edges, ax, **kwargs): + #mid = (edges[:-1] + edges[1:]) / 2 + """ + if log_show: + min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) + ax.bar(np.log10(mid), hist, width = min_interval * 3) + ax.set_xlabel(xlabel + " (10^* " + xunits + ")") + else: + min_interval = np.min(edges[1:] - edges[:-1]) + ax.bar(mid, hist, width = min_interval * 1) + ax.set_xlabel(xlabel + " (" + xunits + ")") + """ + min_interval = np.min(edges[1:] - edges[:-1]) + ax.bar(edges[:-1], hist / (edges[1:] - edges[:-1]), align = "edge", width = min_interval * 0.9, **kwargs) + + +def plot_bar_bck(hist, edges, ax, xlabel, xunits, log_show = False): + mid = (edges[:-1] + edges[1:]) / 2 + if log_show: + min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) + ax.bar(np.log10(mid), hist, width = min_interval * 3) + ax.set_xlabel(xlabel + " (10^* " + xunits + ")") + else: + min_interval = np.min(edges[1:] - edges[:-1]) + ax.bar(mid, hist, width = min_interval * 1) + ax.set_xlabel(xlabel + " (" + xunits + ")") + + #ax.stairs(hist, np.log10(edges)) + +def draw_hist(time, ax1, ax2, ax3, bins = 100, log_show = False): + time_in_fileName = int(time / 100) + 1 + fileName = OutDir + "/freezing_part_0001_" + str(time_in_fileName).zfill(8) + ".nc" + ncf = nc.Dataset(fileName) + time_ = float(ncf.variables["time"][:].filled(np.nan)) + assert np.abs(time - time_) < 10e-6 + aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) # (aero_species, aero_particle) + aero_density = ncf.variables["aero_density"][:].filled(np.nan) #(aero_species) + aero_num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) # (aero_particle) + p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) + aero_particle_vol = (aero_particle_mass.T / aero_density).T + aero_species_ind = ncf.variables["aero_species"][:].filled(np.nan) - 1 + aero_species_names = ncf.variables["aero_species"].names.split(",") + aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind, aero_species_names)} + aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind, aero_species_names)} + + diameter = aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind) + dry_diameter = aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind) + + diameter *= 10**6 + dry_diameter *= 10**6 + hists_dict = {} + if log_show: + hist, bin_edges = np.histogram(np.log10(diameter), weights=aero_num_conc, bins = bins) + hists_dict["diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(np.log10(dry_diameter), weights=aero_num_conc, bins = bins) + hists_dict["dry_diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(np.log10(dry_diameter), weights = aero_num_conc * p_frozen, bins = bins) + hists_dict["ice_dry_diameter"] = (hist, bin_edges) + + else: + hist, bin_edges = np.histogram(diameter, weights=aero_num_conc, bins = bins) + hists_dict["diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc, bins = bins) + hists_dict["dry_diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc * p_frozen, bins = bins) + hists_dict["ice_dry_diameter"] = (hist, bin_edges) + + + + #ax1.bar((hists_dict["diameter"][1][:-1] + hists_dict["diameter"][1][1:]) / 2, hists_dict["diameter"][0]) + #ax2.bar((hists_dict["dry_diameter"][1][:-1] + hists_dict["dry_diameter"][1][1:]) / 2, hists_dict["dry_diameter"][0]) + plot_bar(hists_dict["diameter"][0], hists_dict["diameter"][1], ax1, color = "green") + plot_bar(hists_dict["dry_diameter"][0], hists_dict["dry_diameter"][1], ax2, color = "green") + plot_bar(hists_dict["ice_dry_diameter"][0], hists_dict["ice_dry_diameter"][1], ax3, color = "blue") + ax1.grid() + ax2.grid() + ax3.grid() + + if log_show: + ax1.set_xlabel("diameter (10^* um)") + ax2.set_xlabel("dry diameter (10^* um)") + ax3.set_xlabel("dry diameter (10^* um)") + else: + ax1.set_xlabel("diameter (um)") + ax2.set_xlabel("dry diameter (um)") + ax3.set_xlabel("dry diameter (um)") + + ax1.set_ylabel("Number concentration density (m^-3)") + ax2.set_ylabel("Number concentration density (m^-3)") + ax3.set_ylabel("Number concentration density of ice (m^-3)") + + + + #set_trace() + +if __name__ == "__main__": + + fig = plt.figure(figsize = (15, 16)) + ax1 = fig.add_subplot(2, 3, 1) + ax2 = fig.add_subplot(2, 3, 2) + ax3 = fig.add_subplot(2, 3, 3) + + ax4 = fig.add_subplot(2, 3, 4) + ax5 = fig.add_subplot(2, 3, 5) + ax6 = fig.add_subplot(2, 3, 6) + + draw_hist(initial_time, ax1, ax2, ax3, log_show = True) + ax1.set_title("Initial distribution") + ax2.set_title("Initial distribution") + ax3.set_title("Ice initial distribution") + + + draw_hist(final_time, ax4, ax5, ax6, log_show = True) + ax4.set_title("Final distribution") + ax5.set_title("Final distribution") + ax6.set_title("Ice final distribution") + + plt.tight_layout(pad=5, w_pad=5, h_pad=10) + #plt.tight_layout() + + plt.show() + + + + diff --git a/scenarios/7_freezing/make_pres.py b/scenarios/7_freezing/make_pres.py new file mode 100755 index 000000000..f4f7e1348 --- /dev/null +++ b/scenarios/7_freezing/make_pres.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python + +import numpy as np +from pdb import set_trace +from scipy.interpolate import interp1d +import pandas as pd + +min_SI = 60 +hour_SI = 3600 +day_SI = 24 * 3600 + + +#total_hour = 24 +#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) +total_time = 3600 +dtime = 60 +timeList = np.arange(0, total_time + dtime, dtime) +Nt = len(timeList) + +def change_linear(start_T, end_T, Nt): + return np.linspace(start_T, end_T, Nt) + +def change_linear_stages(tList, tempList): + f = interp1d(tList, tempList) + temperature = f(timeList) + return temperature + +def change_curve_file(fileName): + df = pd.read_csv(fileName, header = None) + x = df[0].values + y = df[1].values + f = interp1d(x, y) + data = f(timeList) + return data + +def make_file(timeList, TList, fileName = "pressure.dat"): + with open(fileName, "w") as fw: + fw.write("# time (s)\n") + fw.write("# pressure (Pa)\n") + fw.write("time ") + for time in timeList: + fw.write("%d " % (time)) + fw.write("\n") + fw.write("pressure ") + for T in TList: + fw.write("%.3f " % (T)) + fw.write("\n") + + +if __name__ == "__main__": + print(Nt) + TLists = [ + #change_linear(288, 240, 25), + #change_linear(240, 288, 24), + #change_linear(240, 240, 5), + #change_linear(240, 278, 19), + #change_linear(240, 240, 24), + + #change_linear(265, 225, 61), + #change_linear(250, 250, total_hour + 1 - 13) + change_linear_stages( + #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], + #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], + #tList = [0, 14 * min_SI, 15 * min_SI, total_time], + #tempList = [270 , 270 , 225 , 225], + tList = [0, total_time], + tempList = [100000, 100000], + + ) + #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_P_black.csv") * 100 + ] + TList = np.concatenate(TLists) + assert len(timeList) == len(TList) + make_file(timeList, TList) + + + + + diff --git a/scenarios/7_freezing/make_temp.py b/scenarios/7_freezing/make_temp.py new file mode 100755 index 000000000..7c3633ea3 --- /dev/null +++ b/scenarios/7_freezing/make_temp.py @@ -0,0 +1,80 @@ +#!/usr/bin/env python + +import numpy as np +from pdb import set_trace +from scipy.interpolate import interp1d +import pandas as pd + +min_SI = 60 +hour_SI = 3600 +day_SI = 24 * 3600 + + +#total_hour = 24 +#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) +total_time = 3600 +dtime = 60 +timeList = np.arange(0, total_time + dtime, dtime) +Nt = len(timeList) + +def change_linear(start_T, end_T, Nt): + return np.linspace(start_T, end_T, Nt) + +def change_linear_stages(tList, tempList): + f = interp1d(tList, tempList) + temperature = f(timeList) + return temperature + +def change_curve_file(fileName): + df = pd.read_csv(fileName, header = None) + x = df[0].values + y = df[1].values + f = interp1d(x, y) + data = f(timeList) + return data + + +def make_file(timeList, TList, fileName = "temp.dat"): + with open(fileName, "w") as fw: + fw.write("# time (s)\n") + fw.write("# temp (K)\n") + fw.write("time ") + for time in timeList: + fw.write("%d " % (time)) + fw.write("\n") + fw.write("temp ") + for T in TList: + fw.write("%.3f " % (T)) + fw.write("\n") + + +if __name__ == "__main__": + print(Nt) + TLists = [ + #change_linear(288, 240, 25), + #change_linear(240, 288, 24), + #change_linear(240, 240, 5), + #change_linear(240, 278, 19), + #change_linear(240, 240, 24), + + #change_linear(265, 225, 61), + #change_linear(250, 250, total_hour + 1 - 13) + change_linear_stages( + #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], + #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], + #tList = [0, 14 * min_SI, 15 * min_SI, total_time], + #tempList = [270 , 270 , 225 , 225], + tList = [0, total_time], + tempList = [270, 225], + + ) + #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_Tg_black.csv") + ] + TList = np.concatenate(TLists) + assert len(timeList) == len(TList) + make_file(timeList, TList) + + + + + diff --git a/scenarios/7_freezing/multicases_plot_freezing.py b/scenarios/7_freezing/multicases_plot_freezing.py new file mode 100755 index 000000000..de164d5bc --- /dev/null +++ b/scenarios/7_freezing/multicases_plot_freezing.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python +import os +import glob +import netCDF4 as nc +import numpy as np +import matplotlib.pyplot as plt +from pdb import set_trace + +#sim_days = 2 +log_show = False +#draw_ice_type = "num_conc" +draw_ice_type = "mix" +#OutDir = "out_base" +#OutDir = "out_coag" +#OutDir = "out_cold" +#OutDir = "out_poster" +#OutDir = "out_poster2" +OutDir = "./output" +fontsize_label = 15 +assert draw_ice_type in ["num_conc", "mix"] +#casesName = ["out_case1", "out_case2", "out_case3"] +#casesName = ["out_case1", "out_case2", "out_case3"] +#casesName = ["out_new2", "out_new3", "out_new4", "out_old2", "out_old3", "out_old4"] +#casesLabel = ["new", "new", "new", "old", "old", "old"] +#casesColor = ["red", "red", "red", "blue", "blue", "blue"] + +casesName = ["mix_OIN100", "mix_ILT100", "mix_OIN50_ILT50"] +casesLabel = ["mix_OIN100", "mix_ILT100", "mix_OIN50_ILT50"] +#casesLabel = ["condense_t1", "test_m2"] +casesColor = ["red", "blue", "green"] + +t_max = 3600 * 2 +t_output = 100 +nFile = int(t_max / t_output) + 1 + + +def plot_case(caseName, caseLabel, caseColor, ax1, ax2, ax3): + print("Processing " + caseName + " ...") + temperature_data = [] + pressure_data = [] + relhum_data = [] + freezing_data = [] + P_frozen_data = [] + num_conc_data = [] + freezing_total = [] + freezing_total2 = [] + freezing_mass_data = [] + freezing_mass_data2 = [] + + #t_list = list(range(1, 864 *sim_days)) + id_file_list = np.array(list(range(1, nFile + 1))) + t_list = (id_file_list - 1) * t_output + + isFirst = True + #for t in t_list: + for id_file in id_file_list: + fileName = OutDir + "/" + caseName+ "/freezing_part_0001_" + str(id_file).zfill(8) + ".nc" + ncf = nc.Dataset(fileName) + part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) + p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) + num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) + particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) + temperature = float(ncf.variables["temperature"][0].filled(np.nan)) + relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) + pressure = float(ncf.variables["pressure"][0].filled(np.nan)) + + freezing_data.append(part_frozen) + P_frozen_data.append(p_frozen) + num_conc_data.append(num_conc) + freezing_total.append(int(np.sum(p_frozen * num_conc))) + freezing_total2.append(int(np.sum(part_frozen * num_conc))) + freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) + freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) + + temperature_data.append(temperature) + relhum_data.append(relhum * 100) + pressure_data.append(pressure) + + + temperature_data = np.array(temperature_data) + relhum_data = np.array(relhum_data) + pressure_data = np.array(pressure_data) + freezing_mass_data = np.array(freezing_mass_data) + freezing_mass_data2 = np.array(freezing_mass_data2) + + air_density_data = pressure / (286 * temperature_data) + mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) + mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) + + f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) + f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) + P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) + P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) + + ax1.plot(t_list, temperature_data, color = caseColor, label = caseLabel) + ax1.plot(t_list, np.full((len(t_list)), 273.15), color = "grey" , linestyle = "dashed") + + if draw_ice_type == "num_conc": + #ax2.plot(t_list, np.log10(freezing_total) if log_show else freezing_total, label = caseLabel, color = caseColor) + ax2.plot(t_list, np.log10(freezing_total2) if log_show else freezing_total2, label = caseLabel, color = caseColor) + + else: + #ax2.plot(t_list, mixing_ratio_ice * 1000, label = caseLabel, color = caseColor) + ax2.plot(t_list, mixing_ratio_ice2 * 1000, label = caseLabel, color = caseColor) + if log_show: + ax3.plot(t_list, np.log10(f_ufz_mean), color = caseColor, label = caseLabel) + ax3.fill_between(t_list, np.log10(f_ufz_mean - f_ufz_std), np.log10(f_ufz_mean + f_ufz_std), alpha = 0.1, color = caseColor, edgecolor = None) + + else: + ax3.plot(t_list, P_frz_mean, color = caseColor, label = caseLabel) + ax3.fill_between(t_list, P_frz_mean - P_frz_std, P_frz_mean + P_frz_std, alpha = 0.1, color = caseColor, edgecolor = None) + +if __name__ == "__main__": + + fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize = (12, 10), sharex = True) + + for caseName, caseLabel, caseColor in zip(casesName, casesLabel, casesColor): + plot_case(caseName, caseLabel, caseColor, ax1, ax2, ax3) + + ax1.set_ylabel("temperature (K)", color = "black", fontsize = fontsize_label) + ax1.grid() + ax1.legend() + + ax2.set_ylabel("frozen concentration " + ("10^* (m^-3)" if log_show else "(m^-3)"), fontsize = fontsize_label) + ax2.set_ylabel("ice mixing ratio (g/kg)", fontsize = fontsize_label) + ax2.grid() + + ax2.legend() + + + ax3.set_ylim([-0.05, 1.05]) + ax3.grid() + ax3.set_xlabel("time (s)", fontsize = fontsize_label) + ax3.set_ylabel("frozen ratio" + (" (10^*)" if log_show else ""), fontsize = fontsize_label) + ax3.legend() + + fig.subplots_adjust(hspace = 0.1) + fig.suptitle("Immersion freezing (partMC-ABIFM)", fontsize = 20) + + plt.show() + diff --git a/scenarios/7_freezing/nohup.log b/scenarios/7_freezing/nohup.log new file mode 100644 index 000000000..a4e91bf18 --- /dev/null +++ b/scenarios/7_freezing/nohup.log @@ -0,0 +1,69172 @@ +nohup: ignoring input +# make sure that the current directory is the one where this script is +cd ${0%/*} + +sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec + +# make the output directory if it doesn't exist +mkdir -p output/$caseName +cp -p run_part.spec output/$caseName + +../../build/partmc run_part.spec +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 0s 998 0 0 0 0 0 0s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 100s 998 0 0 0 0 0 0s 3904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 200s 998 0 0 0 0 0 0s 2567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 300s 998 0 0 0 0 0 0s 2119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 400s 998 0 0 0 0 0 0s 1896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 500s 998 0 0 0 0 0 0s 1762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 600s 998 0 0 0 0 0 0s 1672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 700s 998 0 0 0 0 0 0s 1609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 800s 998 0 0 0 0 0 0s 1561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 900s 998 0 0 0 0 0 0s 1523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1000s 998 0 0 0 0 0 0s 1494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1100s 998 0 0 0 0 0 0s 1469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1200s 998 0 0 0 0 0 1s 1449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1300s 998 0 0 0 0 0 1s 1432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1400s 998 0 0 0 0 0 1s 1416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1500s 998 0 0 0 0 0 1s 1398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1600s 998 0 0 0 0 0 1s 1377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1700s 998 0 0 0 0 0 1s 1356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1800s 998 0 0 0 0 0 1s 1338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1900s 998 0 0 0 0 0 1s 1321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2000s 998 0 0 0 0 0 1s 1306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2100s 997 1 0 0 0 0 1s 1292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2200s 997 0 0 0 0 0 1s 1280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2300s 997 0 0 0 0 0 1s 1268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2400s 997 0 0 0 0 0 1s 1258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2500s 997 0 0 0 0 0 1s 1248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2600s 997 0 0 0 0 0 1s 1261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2700s 997 0 0 0 0 0 1s 1262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2800s 997 0 0 0 0 0 1s 1258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2900s 997 0 0 0 0 0 1s 1251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3000s 997 0 0 0 0 0 1s 1243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3100s 997 0 0 0 0 0 1s 1236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3200s 997 0 0 0 0 0 1s 1229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3300s 997 0 0 0 0 0 1s 1222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3400s 997 0 0 0 0 0 1s 1216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3500s 997 0 0 0 0 0 1s 1211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3600s 997 0 0 0 0 0 1s 1205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3700s 997 0 0 0 0 0 1s 1200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3800s 997 0 0 0 0 0 1s 1196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 3900s 997 0 0 0 0 0 1s 1191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4000s 997 0 0 0 0 0 1s 1187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4100s 997 0 0 0 0 0 1s 1183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4200s 997 0 0 0 0 0 1s 1179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4300s 997 0 0 0 0 0 1s 1175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4400s 997 0 0 0 0 0 1s 1171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4500s 997 0 0 0 0 0 2s 1168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4600s 997 0 0 0 0 0 2s 1164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4700s 997 0 0 0 0 0 2s 1161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4800s 997 0 0 0 0 0 2s 1158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 4900s 997 0 0 0 0 0 2s 1155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5000s 997 0 0 0 0 0 2s 1153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5100s 996 1 0 0 0 0 2s 1150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5200s 996 0 0 0 0 0 2s 1147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5300s 996 0 0 0 0 0 2s 1145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5400s 996 0 0 0 0 0 2s 1142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5500s 996 0 0 0 0 0 2s 1140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5600s 996 0 0 0 0 0 2s 1138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5700s 996 0 0 0 0 0 2s 1135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5800s 996 0 0 0 0 0 2s 1133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 5900s 995 1 0 0 0 0 2s 1131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6000s 995 0 0 0 0 0 2s 1130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6100s 995 0 0 0 0 0 2s 1128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6200s 995 0 0 0 0 0 2s 1126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6300s 995 0 0 0 0 0 2s 1124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6400s 995 0 0 0 0 0 2s 1123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6500s 995 0 0 0 0 0 2s 1121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6600s 995 0 0 0 0 0 2s 1119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6700s 995 0 0 0 0 0 2s 1118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6800s 995 0 0 0 0 0 2s 1116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 6900s 995 0 0 0 0 0 2s 1114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7000s 995 0 0 0 0 0 2s 1113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7100s 994 1 0 0 0 0 2s 1112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7200s 994 0 0 0 0 0 2s 1110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7300s 994 0 0 0 0 0 2s 1109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7400s 994 0 0 0 0 0 2s 1108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7500s 994 0 0 0 0 0 2s 1106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7600s 994 0 0 0 0 0 2s 1105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7700s 994 0 0 0 0 0 2s 1104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7800s 994 0 0 0 0 0 2s 1103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 7900s 994 0 0 0 0 0 3s 1102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8000s 994 0 0 0 0 0 3s 1101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8100s 994 0 0 0 0 0 3s 1099s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8200s 994 0 0 0 0 0 3s 1098s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8300s 994 0 0 0 0 0 3s 1097s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8400s 994 0 0 0 0 0 3s 1096s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8500s 994 0 0 0 0 0 3s 1095s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8600s 994 0 0 0 0 0 3s 1094s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8700s 994 0 0 0 0 0 3s 1093s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8800s 994 0 0 0 0 0 3s 1092s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 8900s 994 0 0 0 0 0 3s 1092s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9000s 994 0 0 0 0 0 3s 1092s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9100s 994 0 0 0 0 0 3s 1093s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9200s 994 0 0 0 0 0 3s 1094s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9300s 994 0 0 0 0 0 3s 1096s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9400s 994 0 0 0 0 0 3s 1097s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9500s 994 0 0 0 0 0 3s 1098s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9600s 994 0 0 0 0 0 3s 1099s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9700s 994 0 0 0 0 0 3s 1100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9800s 994 0 0 0 0 0 3s 1102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 9900s 994 0 0 0 0 0 3s 1103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10000s 994 0 0 0 0 0 3s 1104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10100s 994 0 0 0 0 0 3s 1105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10200s 994 0 0 0 0 0 3s 1106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10300s 994 0 0 0 0 0 3s 1107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10400s 994 1 0 0 0 0 3s 1108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10500s 993 1 0 0 0 0 3s 1109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10600s 993 0 0 0 0 0 3s 1110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10700s 993 1 0 0 0 0 3s 1111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10800s 993 0 0 0 0 0 3s 1111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 10900s 993 0 0 0 0 0 4s 1110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11000s 993 0 0 0 0 0 4s 1109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11100s 993 0 0 0 0 0 4s 1108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11200s 993 0 0 0 0 0 4s 1107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11300s 993 0 0 0 0 0 4s 1106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11400s 993 1 0 0 0 0 4s 1106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11500s 993 0 0 0 0 0 4s 1105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11600s 993 0 0 0 0 0 4s 1104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11700s 993 0 0 0 0 0 4s 1103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11800s 993 0 0 0 0 0 4s 1102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 11900s 993 0 0 0 0 0 4s 1102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12000s 993 0 0 0 0 0 4s 1101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12100s 993 0 0 0 0 0 4s 1100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12200s 993 0 0 0 0 0 4s 1099s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12300s 993 0 0 0 0 0 4s 1099s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12400s 993 0 0 0 0 0 4s 1098s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12500s 993 0 0 0 0 0 4s 1097s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12600s 993 0 0 0 0 0 4s 1097s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12700s 993 1 0 0 0 0 4s 1096s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12800s 993 0 0 0 0 0 4s 1095s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 12900s 993 0 0 0 0 0 4s 1095s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13000s 992 1 0 0 0 0 4s 1094s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13100s 992 1 0 0 0 0 4s 1093s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13200s 993 1 0 0 0 0 4s 1093s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13300s 993 0 0 0 0 0 4s 1092s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13400s 993 0 0 0 0 0 4s 1092s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13500s 992 1 0 0 0 0 4s 1091s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13600s 992 0 0 0 0 0 4s 1090s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13700s 992 0 0 0 0 0 4s 1090s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13800s 992 0 0 0 0 0 4s 1089s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 13900s 992 0 0 0 0 0 4s 1088s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14000s 992 0 0 0 0 0 4s 1088s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14100s 992 0 0 0 0 0 4s 1087s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14200s 992 0 0 0 0 0 4s 1087s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14300s 992 0 0 0 0 0 5s 1086s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14400s 992 0 0 0 0 0 5s 1086s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14500s 992 0 0 0 0 0 5s 1085s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14600s 992 0 0 0 0 0 5s 1085s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14700s 992 0 0 0 0 0 5s 1084s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14800s 992 0 0 0 0 0 5s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 14900s 992 0 0 0 0 0 5s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15000s 992 0 0 0 0 0 5s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15100s 992 0 0 0 0 0 5s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15200s 992 0 0 0 0 0 5s 1081s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15300s 992 0 0 0 0 0 5s 1081s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15400s 992 0 0 0 0 0 5s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15500s 992 0 0 0 0 0 5s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15600s 992 0 0 0 0 0 5s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15700s 992 0 0 0 0 0 5s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15800s 992 0 0 0 0 0 5s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 15900s 992 0 0 0 0 0 5s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16000s 992 0 0 0 0 0 5s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16100s 992 0 0 0 0 0 5s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16200s 992 0 0 0 0 0 5s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16300s 992 0 0 0 0 0 5s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16400s 992 0 0 0 0 0 5s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16500s 992 0 0 0 0 0 5s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16600s 992 0 0 0 0 0 5s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16700s 992 0 0 0 0 0 5s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16800s 992 0 0 0 0 0 5s 1074s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 16900s 992 0 0 0 0 0 5s 1074s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17000s 992 0 0 0 0 0 5s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17100s 992 0 0 0 0 0 5s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17200s 992 0 0 0 0 0 5s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17300s 992 0 0 0 0 0 5s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17400s 992 0 0 0 0 0 5s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17500s 992 0 0 0 0 0 5s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17600s 992 0 0 0 0 0 5s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17700s 992 0 0 0 0 0 6s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17800s 992 0 0 0 0 0 6s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 17900s 992 0 0 0 0 0 6s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18000s 992 0 0 0 0 0 6s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18100s 992 0 0 0 0 0 6s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18200s 992 0 0 0 0 0 6s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18300s 992 0 0 0 0 0 6s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18400s 992 0 0 0 0 0 6s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18500s 992 0 0 0 0 0 6s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18600s 992 0 0 0 0 0 6s 1067s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18700s 992 0 0 0 0 0 6s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18800s 992 0 0 0 0 0 6s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 18900s 992 0 0 0 0 0 6s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19000s 992 0 0 0 0 0 6s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19100s 992 0 0 0 0 0 6s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19200s 992 0 0 0 0 0 6s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19300s 992 0 0 0 0 0 6s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19400s 992 0 0 0 0 0 6s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19500s 992 0 0 0 0 0 6s 1081s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19600s 992 0 0 0 0 0 6s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19700s 992 0 0 0 0 0 6s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19800s 992 0 0 0 0 0 6s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 19900s 992 0 0 0 0 0 6s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20000s 992 0 0 0 0 0 6s 1084s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20100s 992 0 0 0 0 0 6s 1084s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20200s 992 0 0 0 0 0 6s 1084s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20300s 992 0 0 0 0 0 6s 1084s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20400s 992 0 0 0 0 0 6s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20500s 992 1 0 0 0 0 6s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20600s 992 0 0 0 0 0 6s 1083s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20700s 992 0 0 0 0 0 7s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20800s 992 0 0 0 0 0 7s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 20900s 992 0 0 0 0 0 7s 1082s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21000s 992 0 0 0 0 0 7s 1081s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21100s 992 0 0 0 0 0 7s 1081s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21200s 992 0 0 0 0 0 7s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21300s 992 0 0 0 0 0 7s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21400s 992 0 0 0 0 0 7s 1080s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21500s 992 0 0 0 0 0 7s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21600s 992 0 0 0 0 0 7s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21700s 992 0 0 0 0 0 7s 1079s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21800s 992 0 0 0 0 0 7s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 21900s 992 0 0 0 0 0 7s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22000s 992 0 0 0 0 0 7s 1078s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22100s 992 0 0 0 0 0 7s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22200s 992 0 0 0 0 0 7s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22300s 992 0 0 0 0 0 7s 1077s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22400s 992 0 0 0 0 0 7s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22500s 992 0 0 0 0 0 7s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22600s 992 0 0 0 0 0 7s 1076s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22700s 992 0 0 0 0 0 7s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22800s 992 0 0 0 0 0 7s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 22900s 992 0 0 0 0 0 7s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23000s 992 0 0 0 0 0 7s 1075s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23100s 992 0 0 0 0 0 7s 1074s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23200s 992 0 0 0 0 0 7s 1074s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23300s 992 0 0 0 0 0 7s 1074s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23400s 992 0 0 0 0 0 7s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23500s 992 0 0 0 0 0 7s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23600s 992 0 0 0 0 0 7s 1073s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23700s 992 0 0 0 0 0 7s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23800s 992 0 0 0 0 0 7s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 23900s 992 0 0 0 0 0 7s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24000s 992 0 0 0 0 0 7s 1072s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24100s 992 0 0 0 0 0 8s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24200s 992 0 0 0 0 0 8s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24300s 992 0 0 0 0 0 8s 1071s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24400s 992 0 0 0 0 0 8s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24500s 992 0 0 0 0 0 8s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24600s 992 0 0 0 0 0 8s 1070s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24700s 992 0 0 0 0 0 8s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24800s 992 0 0 0 0 0 8s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 24900s 992 0 0 0 0 0 8s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25000s 992 0 0 0 0 0 8s 1069s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25100s 992 0 0 0 0 0 8s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25200s 992 0 0 0 0 0 8s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25300s 992 0 0 0 0 0 8s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25400s 992 0 0 0 0 0 8s 1068s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25500s 992 0 0 0 0 0 8s 1067s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25600s 992 0 0 0 0 0 8s 1067s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25700s 992 0 0 0 0 0 8s 1067s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25800s 992 0 0 0 0 0 8s 1066s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 25900s 992 0 0 0 0 0 8s 1066s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26000s 992 0 0 0 0 0 8s 1066s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26100s 992 0 0 0 0 0 8s 1066s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26200s 992 0 0 0 0 0 8s 1065s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26300s 992 0 0 0 0 0 8s 1065s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26400s 992 0 0 0 0 0 8s 1065s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26500s 992 0 0 0 0 0 8s 1065s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26600s 992 0 0 0 0 0 8s 1064s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26700s 992 0 0 0 0 0 8s 1064s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26800s 992 0 0 0 0 0 8s 1064s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 26900s 992 0 0 0 0 0 8s 1064s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27000s 992 0 0 0 0 0 8s 1063s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27100s 992 0 0 0 0 0 8s 1063s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27200s 992 0 0 0 0 0 8s 1063s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27300s 992 0 0 0 0 0 8s 1063s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27400s 992 0 0 0 0 0 8s 1062s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27500s 992 0 0 0 0 0 9s 1062s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27600s 992 0 0 0 0 0 9s 1062s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27700s 992 0 0 0 0 0 9s 1062s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27800s 992 0 0 0 0 0 9s 1061s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 27900s 992 0 0 0 0 0 9s 1061s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28000s 992 0 0 0 0 0 9s 1061s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28100s 992 0 0 0 0 0 9s 1061s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28200s 992 0 0 0 0 0 9s 1060s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28300s 992 0 0 0 0 0 9s 1060s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28400s 992 0 0 0 0 0 9s 1060s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28500s 992 0 0 0 0 0 9s 1060s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28600s 992 0 0 0 0 0 9s 1059s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28700s 992 0 0 0 0 0 9s 1059s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28800s 992 0 0 0 0 0 9s 1059s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 28900s 992 0 0 0 0 0 9s 1059s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29000s 992 0 0 0 0 0 9s 1058s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29100s 992 0 0 0 0 0 9s 1058s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29200s 992 0 0 0 0 0 9s 1058s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29300s 992 0 0 0 0 0 9s 1058s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29400s 992 0 0 0 0 0 9s 1058s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29500s 991 1 0 0 0 0 9s 1057s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29600s 991 0 0 0 0 0 9s 1057s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29700s 991 0 0 0 0 0 9s 1057s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29800s 991 0 0 0 0 0 9s 1057s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 29900s 991 0 0 0 0 0 9s 1056s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30000s 991 0 0 0 0 0 9s 1056s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30100s 991 0 0 0 0 0 9s 1056s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30200s 991 0 0 0 0 0 9s 1056s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30300s 991 0 0 0 0 0 9s 1056s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30400s 991 0 0 0 0 0 9s 1055s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30500s 992 2 0 0 0 0 9s 1055s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30600s 992 0 0 0 0 0 9s 1055s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30700s 991 1 0 0 0 0 9s 1055s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30800s 991 0 0 0 0 0 9s 1054s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 30900s 991 0 0 0 0 0 10s 1054s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31000s 991 1 0 0 0 0 10s 1054s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31100s 991 0 0 0 0 0 10s 1054s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31200s 991 0 0 0 0 0 10s 1054s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31300s 991 0 0 0 0 0 10s 1053s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31400s 991 0 0 0 0 0 10s 1053s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31500s 991 0 0 0 0 0 10s 1053s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31600s 991 0 0 0 0 0 10s 1053s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31700s 991 0 0 0 0 0 10s 1053s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31800s 991 0 0 0 0 0 10s 1052s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 31900s 991 0 0 0 0 0 10s 1052s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32000s 991 0 0 0 0 0 10s 1052s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32100s 991 0 0 0 0 0 10s 1052s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32200s 991 0 0 0 0 0 10s 1052s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32300s 991 0 0 0 0 0 10s 1051s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32400s 991 0 0 0 0 0 10s 1051s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32500s 991 0 0 0 0 0 10s 1051s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32600s 991 0 0 0 0 0 10s 1051s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32700s 991 0 0 0 0 0 10s 1051s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32800s 991 0 0 0 0 0 10s 1050s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 32900s 991 0 0 0 0 0 10s 1050s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33000s 991 0 0 0 0 0 10s 1050s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33100s 991 0 0 0 0 0 10s 1050s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33200s 991 0 0 0 0 0 10s 1050s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33300s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33400s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33500s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33600s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33700s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33800s 991 0 0 0 0 0 10s 1049s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 33900s 991 0 0 0 0 0 10s 1048s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34000s 991 0 0 0 0 0 10s 1048s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34100s 991 0 0 0 0 0 10s 1048s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34200s 991 0 0 0 0 0 10s 1048s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34300s 991 0 0 0 0 0 11s 1048s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34400s 991 0 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34500s 991 0 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34600s 991 0 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34700s 991 0 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34800s 991 0 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 34900s 990 1 0 0 0 0 11s 1047s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35000s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35100s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35200s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35300s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35400s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35500s 990 0 0 0 0 0 11s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35600s 990 1 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35700s 990 0 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35800s 990 0 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 35900s 990 0 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36000s 990 0 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36100s 990 0 0 0 0 0 11s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36200s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36300s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36400s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36500s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36600s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36700s 990 0 0 0 0 0 11s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36800s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 36900s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37000s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37100s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37200s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37300s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37400s 990 0 0 0 0 0 11s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37500s 990 0 0 0 0 0 11s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37600s 990 0 0 0 0 0 11s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37700s 990 0 0 0 0 0 11s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37800s 990 0 0 0 0 0 12s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 37900s 990 0 0 0 0 0 12s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38000s 990 0 0 0 0 0 12s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38100s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38200s 990 1 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38300s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38400s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38500s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38600s 990 1 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38700s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38800s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 38900s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39000s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39100s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39200s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39300s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39400s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39500s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39600s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39700s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39800s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 39900s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40000s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40100s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40200s 990 0 0 0 0 0 12s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40300s 990 0 0 0 0 0 12s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40400s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40500s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40600s 990 0 0 0 0 0 12s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40700s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40800s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 40900s 990 0 0 0 0 0 12s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41000s 990 0 0 0 0 0 12s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41100s 990 0 0 0 0 0 13s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41200s 990 0 0 0 0 0 13s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41300s 990 0 0 0 0 0 13s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41400s 990 1 0 0 0 0 13s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41500s 990 0 0 0 0 0 13s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41600s 990 0 0 0 0 0 13s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41700s 990 0 0 0 0 0 13s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41800s 990 0 0 0 0 0 13s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 41900s 990 0 0 0 0 0 13s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42000s 990 0 0 0 0 0 13s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42100s 990 0 0 0 0 0 13s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42200s 990 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42300s 990 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42400s 990 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42500s 990 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42600s 990 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42700s 990 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42800s 990 1 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 42900s 990 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43000s 990 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43100s 989 1 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43200s 988 1 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43300s 988 0 0 0 0 0 13s 1046s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43400s 988 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43500s 988 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43600s 988 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43700s 988 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43800s 987 1 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 43900s 987 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44000s 987 0 0 0 0 0 13s 1045s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44100s 987 0 0 0 0 0 13s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44200s 986 1 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44300s 986 0 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44400s 986 0 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44500s 986 0 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44600s 986 0 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44700s 986 0 0 0 0 0 14s 1044s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44800s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 44900s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45000s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45100s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45200s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45300s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45400s 986 0 0 0 0 0 14s 1043s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45500s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45600s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45700s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45800s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 45900s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46000s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46100s 986 0 0 0 0 0 14s 1042s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46200s 986 0 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46300s 986 0 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46400s 986 1 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46500s 986 0 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46600s 986 0 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46700s 986 1 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46800s 986 0 0 0 0 0 14s 1041s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 46900s 986 1 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47000s 986 0 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47100s 986 1 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47200s 986 0 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47300s 986 0 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47400s 986 0 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47500s 986 0 0 0 0 0 14s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47600s 986 0 0 0 0 0 15s 1040s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47700s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47800s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 47900s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48000s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48100s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48200s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48300s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48400s 986 0 0 0 0 0 15s 1039s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48500s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48600s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48700s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48800s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 48900s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49000s 986 1 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49100s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49200s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49300s 986 0 0 0 0 0 15s 1038s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49400s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49500s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49600s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49700s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49800s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 49900s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50000s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50100s 986 0 0 0 0 0 15s 1037s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50200s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50300s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50400s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50500s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50600s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50700s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50800s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 50900s 986 0 0 0 0 0 15s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51000s 986 0 0 0 0 0 16s 1036s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51100s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51200s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51300s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51400s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51500s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51600s 986 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51700s 985 1 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51800s 985 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 51900s 985 0 0 0 0 0 16s 1035s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52000s 985 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52100s 985 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52200s 985 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52300s 984 1 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52400s 984 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52500s 984 1 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52600s 984 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52700s 984 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52800s 984 0 0 0 0 0 16s 1034s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 52900s 983 1 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53000s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53100s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53200s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53300s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53400s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53500s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53600s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53700s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53800s 983 0 0 0 0 0 16s 1033s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 53900s 983 0 0 0 0 0 16s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54000s 983 0 0 0 0 0 16s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54100s 983 0 0 0 0 0 16s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54200s 983 0 0 0 0 0 16s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54300s 983 0 0 0 0 0 16s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54400s 983 0 0 0 0 0 17s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54500s 983 0 0 0 0 0 17s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54600s 983 1 0 0 0 0 17s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54700s 983 0 0 0 0 0 17s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54800s 982 1 0 0 0 0 17s 1032s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 54900s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55000s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55100s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55200s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55300s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55400s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55500s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55600s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55700s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55800s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 55900s 982 0 0 0 0 0 17s 1031s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56000s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56100s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56200s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56300s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56400s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56500s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56600s 982 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56700s 981 2 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56800s 981 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 56900s 981 0 0 0 0 0 17s 1030s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57000s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57100s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57200s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57300s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57400s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57500s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57600s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57700s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57800s 981 0 0 0 0 0 17s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 57900s 981 0 0 0 0 0 18s 1029s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58000s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58100s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58200s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58300s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58400s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58500s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58600s 981 1 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58700s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58800s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 58900s 981 0 0 0 0 0 18s 1028s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59000s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59100s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59200s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59300s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59400s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59500s 981 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59600s 980 1 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59700s 980 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59800s 980 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 59900s 980 0 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60000s 980 1 0 0 0 0 18s 1027s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60100s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60200s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60300s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60400s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60500s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60600s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60700s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60800s 980 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 60900s 979 1 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61000s 979 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61100s 979 0 0 0 0 0 18s 1026s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61200s 979 0 0 0 0 0 18s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61300s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61400s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61500s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61600s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61700s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61800s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 61900s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62000s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62100s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62200s 979 0 0 0 0 0 19s 1025s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62300s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62400s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62500s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62600s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62700s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62800s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 62900s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63000s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63100s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63200s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63300s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63400s 979 0 0 0 0 0 19s 1024s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63500s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63600s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63700s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63800s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 63900s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64000s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64100s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64200s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64300s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64400s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64500s 979 0 0 0 0 0 19s 1023s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64600s 979 0 0 0 0 0 19s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64700s 979 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64800s 979 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 64900s 979 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65000s 979 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65100s 979 2 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65200s 979 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65300s 978 1 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65400s 978 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65500s 978 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65600s 978 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65700s 978 0 0 0 0 0 20s 1022s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65800s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 65900s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66000s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66100s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66200s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66300s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66400s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66500s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66600s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66700s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66800s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 66900s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67000s 978 0 0 0 0 0 20s 1021s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67100s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67200s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67300s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67400s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67500s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67600s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67700s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67800s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 67900s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68000s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68100s 978 0 0 0 0 0 20s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68200s 978 0 0 0 0 0 21s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68300s 978 0 0 0 0 0 21s 1020s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68400s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68500s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68600s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68700s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68800s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 68900s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69000s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69100s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69200s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69300s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69400s 978 0 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69500s 978 1 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69600s 978 1 0 0 0 0 21s 1019s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69700s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69800s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 69900s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70000s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70100s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70200s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70300s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70400s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70500s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70600s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70700s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70800s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 70900s 978 0 0 0 0 0 21s 1018s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71000s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71100s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71200s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71300s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71400s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71500s 978 0 0 0 0 0 21s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71600s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71700s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71800s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 71900s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72000s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72100s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72200s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72300s 978 0 0 0 0 0 22s 1017s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72400s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72500s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72600s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72700s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72800s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 72900s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73000s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73100s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73200s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73300s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73400s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73500s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73600s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73700s 978 0 0 0 0 0 22s 1016s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73800s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 73900s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74000s 978 1 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74100s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74200s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74300s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74400s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74500s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74600s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74700s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74800s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 74900s 978 0 0 0 0 0 22s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75000s 978 0 0 0 0 0 23s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75100s 978 0 0 0 0 0 23s 1015s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75200s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75300s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75400s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75500s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75600s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75700s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75800s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 75900s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76000s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76100s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76200s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76300s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76400s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76500s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76600s 978 0 0 0 0 0 23s 1014s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76700s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76800s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 76900s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77000s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77100s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77200s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77300s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77400s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77500s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77600s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77700s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77800s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 77900s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78000s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78100s 978 0 0 0 0 0 23s 1013s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78200s 978 0 0 0 0 0 23s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78300s 978 0 0 0 0 0 23s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78400s 978 0 0 0 0 0 23s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78500s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78600s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78700s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78800s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 78900s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79000s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79100s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79200s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79300s 978 1 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79400s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79500s 978 0 0 0 0 0 24s 1012s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79600s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79700s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79800s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 79900s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80000s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80100s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80200s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80300s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80400s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80500s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80600s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80700s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80800s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 80900s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81000s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81100s 978 0 0 0 0 0 24s 1011s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81200s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81300s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81400s 978 1 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81500s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81600s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81700s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81800s 978 0 0 0 0 0 24s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 81900s 978 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82000s 978 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82100s 977 1 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82200s 977 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82300s 977 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82400s 977 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82500s 977 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82600s 978 1 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82700s 978 0 0 0 0 0 25s 1010s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82800s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 82900s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83000s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83100s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83200s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83300s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83400s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83500s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83600s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83700s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83800s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 83900s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84000s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84100s 978 1 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84200s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84300s 978 0 0 0 0 0 25s 1009s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84400s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84500s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84600s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84700s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84800s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 84900s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85000s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85100s 978 0 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85200s 977 1 0 0 0 0 25s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85300s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85400s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85500s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85600s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85700s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85800s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 85900s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86000s 977 0 0 0 0 0 26s 1008s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86100s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86200s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86300s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86400s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86500s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86600s 977 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86700s 978 1 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86800s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 86900s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87000s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87100s 978 1 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87200s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87300s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87400s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87500s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87600s 978 1 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87700s 978 0 0 0 0 0 26s 1007s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87800s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 87900s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88000s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88100s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88200s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88300s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88400s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88500s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88600s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88700s 978 0 0 0 0 0 26s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88800s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 88900s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89000s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89100s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89200s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89300s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89400s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89500s 978 0 0 0 0 0 27s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89600s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89700s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89800s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 89900s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90000s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90100s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90200s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90300s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90400s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90500s 978 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90600s 977 1 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90700s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90800s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 90900s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91000s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91100s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91200s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91300s 977 0 0 0 0 0 27s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91400s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91500s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91600s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91700s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91800s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 91900s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92000s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92100s 977 0 0 0 0 0 27s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92200s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92300s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92400s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92500s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92600s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92700s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92800s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 92900s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93000s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93100s 977 0 0 0 0 0 28s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93200s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93300s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93400s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93500s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93600s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93700s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93800s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 93900s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94000s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94100s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94200s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94300s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94400s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94500s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94600s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94700s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94800s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 94900s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95000s 977 0 0 0 0 0 28s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95100s 977 0 0 0 0 0 28s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95200s 977 0 0 0 0 0 28s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95300s 977 0 0 0 0 0 28s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95400s 977 0 0 0 0 0 28s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95500s 977 0 0 0 0 0 28s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95600s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95700s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95800s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 95900s 977 1 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96000s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96100s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96200s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96300s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96400s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96500s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96600s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96700s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96800s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 96900s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97000s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97100s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97200s 977 0 0 0 0 0 29s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97300s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97400s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97500s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97600s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97700s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97800s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 97900s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98000s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98100s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98200s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98300s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98400s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98500s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98600s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98700s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98800s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 98900s 977 0 0 0 0 0 29s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99000s 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99100s 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99200s 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99300s 977 0 0 0 0 0 30s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99400s 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99500s 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99600s 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99700s 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99800s 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 99900s 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1667m 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1668m 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1670m 977 0 0 0 0 0 30s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1672m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1673m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1675m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1677m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1678m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1680m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1682m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1683m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1685m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1687m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1688m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1690m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1692m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1693m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1695m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1697m 976 1 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1698m 976 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1700m 977 1 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1702m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1703m 977 0 0 0 0 0 30s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1705m 977 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1707m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1708m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1710m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1712m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1713m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1715m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1717m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1718m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1720m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1722m 977 0 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1723m 977 1 0 0 0 0 31s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1725m 976 1 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1727m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1728m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1730m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1732m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1733m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1735m 976 0 0 0 0 0 31s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1737m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1738m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1740m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1742m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1743m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1745m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1747m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1748m 976 0 0 0 0 0 31s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1750m 976 0 0 0 0 0 31s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1752m 976 0 0 0 0 0 31s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1753m 976 0 0 0 0 0 32s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1755m 976 0 0 0 0 0 32s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1757m 976 0 0 0 0 0 32s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1758m 976 0 0 0 0 0 32s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1760m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1762m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1763m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1765m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1767m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1768m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1770m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1772m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1773m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1775m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1777m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1778m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1780m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1782m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1783m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1785m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1787m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1788m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1790m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1792m 976 0 0 0 0 0 32s 1006s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1793m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1795m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1797m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1798m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1800m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1802m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1803m 976 0 0 0 0 0 32s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1805m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1807m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1808m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1810m 976 1 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1812m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1813m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1815m 976 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1817m 975 1 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1818m 975 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1820m 975 0 0 0 0 0 33s 1005s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1822m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1823m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1825m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1827m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1828m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1830m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1832m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1833m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1835m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1837m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1838m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1840m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1842m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1843m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1845m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1847m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1848m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1850m 975 0 0 0 0 0 33s 1004s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1852m 975 0 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1853m 974 1 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1855m 974 0 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1857m 974 0 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1858m 974 0 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1860m 974 0 0 0 0 0 33s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1862m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1863m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1865m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1867m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1868m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1870m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1872m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1873m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1875m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1877m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1878m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1880m 974 0 0 0 0 0 34s 1003s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1882m 974 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1883m 974 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1885m 974 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1887m 974 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1888m 975 1 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1890m 975 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1892m 975 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1893m 975 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1895m 976 1 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1897m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1898m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1900m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1902m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1903m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1905m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1907m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1908m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1910m 976 0 0 0 0 0 34s 1002s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1912m 975 1 0 0 0 0 34s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1913m 975 0 0 0 0 0 34s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1915m 975 0 0 0 0 0 34s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1917m 975 0 0 0 0 0 34s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1918m 975 0 0 0 0 0 34s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1920m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1922m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1923m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1925m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1927m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1928m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1930m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1932m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1933m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1935m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1937m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1938m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1940m 975 0 0 0 0 0 35s 1001s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1942m 975 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1943m 975 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1945m 975 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1947m 975 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1948m 976 1 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1950m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1952m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1953m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1955m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1957m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1958m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1960m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1962m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1963m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1965m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1967m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1968m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1970m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1972m 976 0 0 0 0 0 35s 1000s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1973m 976 0 0 0 0 0 35s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1975m 976 0 0 0 0 0 35s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1977m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1978m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1980m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1982m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1983m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1985m 976 1 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1987m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1988m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1990m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1992m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1993m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1995m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1997m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 1998m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2000m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2002m 976 0 0 0 0 0 36s 999s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2003m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2005m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2007m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2008m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2010m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2012m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2013m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2015m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2017m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2018m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2020m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2022m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2023m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2025m 976 1 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2027m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2028m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2030m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2032m 976 0 0 0 0 0 36s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2033m 976 0 0 0 0 0 37s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2035m 976 0 0 0 0 0 37s 998s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2037m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2038m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2040m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2042m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2043m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2045m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2047m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2048m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2050m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2052m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2053m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2055m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2057m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2058m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2060m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2062m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2063m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2065m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2067m 976 0 0 0 0 0 37s 997s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2068m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2070m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2072m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2073m 976 1 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2075m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2077m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2078m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2080m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2082m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2083m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2085m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2087m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2088m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2090m 976 0 0 0 0 0 37s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2092m 976 0 0 0 0 0 38s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2093m 976 0 0 0 0 0 38s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2095m 976 0 0 0 0 0 38s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2097m 976 0 0 0 0 0 38s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2098m 976 0 0 0 0 0 38s 996s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2100m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2102m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2103m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2105m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2107m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2108m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2110m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2112m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2113m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2115m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2117m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2118m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2120m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2122m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2123m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2125m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2127m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2128m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2130m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2132m 976 0 0 0 0 0 38s 995s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2133m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2135m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2137m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2138m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2140m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2142m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2143m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2145m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2147m 976 0 0 0 0 0 38s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2148m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2150m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2152m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2153m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2155m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2157m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2158m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2160m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2162m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2163m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2165m 976 0 0 0 0 0 39s 994s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2167m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2168m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2170m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2172m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2173m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2175m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2177m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2178m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2180m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2182m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2183m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2185m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2187m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2188m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2190m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2192m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2193m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2195m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2197m 976 1 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2198m 976 0 0 0 0 0 39s 993s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2200m 976 0 0 0 0 0 39s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2202m 976 0 0 0 0 0 39s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2203m 976 0 0 0 0 0 39s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2205m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2207m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2208m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2210m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2212m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2213m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2215m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2217m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2218m 976 1 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2220m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2222m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2223m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2225m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2227m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2228m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2230m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2232m 976 0 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2233m 976 1 0 0 0 0 40s 992s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2235m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2237m 976 1 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2238m 976 1 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2240m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2242m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2243m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2245m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2247m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2248m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2250m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2252m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2253m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2255m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2257m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2258m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2260m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2262m 976 0 0 0 0 0 40s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2263m 976 0 0 0 0 0 41s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2265m 976 0 0 0 0 0 41s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2267m 976 0 0 0 0 0 41s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2268m 976 0 0 0 0 0 41s 991s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2270m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2272m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2273m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2275m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2277m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2278m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2280m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2282m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2283m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2285m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2287m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2288m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2290m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2292m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2293m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2295m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2297m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2298m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2300m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2302m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2303m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2305m 976 0 0 0 0 0 41s 990s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2307m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2308m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2310m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2312m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2313m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2315m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2317m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2318m 976 0 0 0 0 0 41s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2320m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2322m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2323m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2325m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2327m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2328m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2330m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2332m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2333m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2335m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2337m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2338m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2340m 976 0 0 0 0 0 42s 989s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2342m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2343m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2345m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2347m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2348m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2350m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2352m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2353m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2355m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2357m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2358m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2360m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2362m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2363m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2365m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2367m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2368m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2370m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2372m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2373m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2375m 976 0 0 0 0 0 42s 988s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2377m 976 0 0 0 0 0 42s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2378m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2380m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2382m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2383m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2385m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2387m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2388m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2390m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2392m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2393m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2395m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2397m 976 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2398m 974 2 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2400m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2402m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2403m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2405m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2407m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2408m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2410m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2412m 974 0 0 0 0 0 43s 987s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2413m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2415m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2417m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2418m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2420m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2422m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2423m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2425m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2427m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2428m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2430m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2432m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2433m 974 0 0 0 0 0 43s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2435m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2437m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2438m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2440m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2442m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2443m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2445m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2447m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2448m 974 0 0 0 0 0 44s 986s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2450m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2452m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2453m 974 1 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2455m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2457m 973 1 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2458m 973 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2460m 974 1 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2462m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2463m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2465m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2467m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2468m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2470m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2472m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2473m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2475m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2477m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2478m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2480m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2482m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2483m 974 0 0 0 0 0 44s 985s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2485m 974 0 0 0 0 0 44s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2487m 974 0 0 0 0 0 44s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2488m 974 0 0 0 0 0 44s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2490m 974 0 0 0 0 0 44s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2492m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2493m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2495m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2497m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2498m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2500m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2502m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2503m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2505m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2507m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2508m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2510m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2512m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2513m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2515m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2517m 974 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2518m 975 1 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2520m 975 0 0 0 0 0 45s 984s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2522m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2523m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2525m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2527m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2528m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2530m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2532m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2533m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2535m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2537m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2538m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2540m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2542m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2543m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2545m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2547m 975 0 0 0 0 0 45s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2548m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2550m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2552m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2553m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2555m 975 1 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2557m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2558m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2560m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2562m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2563m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2565m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2567m 975 0 0 0 0 0 46s 983s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2568m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2570m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2572m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2573m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2575m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2577m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2578m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2580m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2582m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2583m 975 2 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2585m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2587m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2588m 975 1 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2590m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2592m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2593m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2595m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2597m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2598m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2600m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2602m 975 0 0 0 0 0 46s 982s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2603m 975 0 0 0 0 0 46s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2605m 975 0 0 0 0 0 46s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2607m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2608m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2610m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2612m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2613m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2615m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2617m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2618m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2620m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2622m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2623m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2625m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2627m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2628m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2630m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2632m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2633m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2635m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2637m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2638m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2640m 975 0 0 0 0 0 47s 981s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2642m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2643m 975 1 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2645m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2647m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2648m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2650m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2652m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2653m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2655m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2657m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2658m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2660m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2662m 975 0 0 0 0 0 47s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2663m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2665m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2667m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2668m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2670m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2672m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2673m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2675m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2677m 975 0 0 0 0 0 48s 980s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2678m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2680m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2682m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2683m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2685m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2687m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2688m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2690m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2692m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2693m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2695m 975 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2697m 974 1 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2698m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2700m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2702m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2703m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2705m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2707m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2708m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2710m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2712m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2713m 974 1 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2715m 974 0 0 0 0 0 48s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2717m 974 0 0 0 0 0 48s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2718m 974 0 0 0 0 0 48s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2720m 974 0 0 0 0 0 48s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2722m 974 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2723m 974 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2725m 973 1 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2727m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2728m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2730m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2732m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2733m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2735m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2737m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2738m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2740m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2742m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2743m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2745m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2747m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2748m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2750m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2752m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2753m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2755m 973 0 0 0 0 0 49s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2757m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2758m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2760m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2762m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2763m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2765m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2767m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2768m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2770m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2772m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2773m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2775m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2777m 973 0 0 0 0 0 49s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2778m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2780m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2782m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2783m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2785m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2787m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2788m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2790m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2792m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2793m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2795m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2797m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2798m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2800m 973 0 0 0 0 0 50s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2802m 973 1 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2803m 973 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2805m 973 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2807m 973 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2808m 974 1 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2810m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2812m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2813m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2815m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2817m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2818m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2820m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2822m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2823m 974 0 0 0 0 0 50s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2825m 974 0 0 0 0 0 50s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2827m 974 0 0 0 0 0 51s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2828m 974 0 0 0 0 0 51s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2830m 974 0 0 0 0 0 51s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2832m 974 0 0 0 0 0 51s 979s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2833m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2835m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2837m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2838m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2840m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2842m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2843m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2845m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2847m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2848m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2850m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2852m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2853m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2855m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2857m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2858m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2860m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2862m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2863m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2865m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2867m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2868m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2870m 974 1 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2872m 974 0 0 0 0 0 51s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2873m 974 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2875m 974 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2877m 974 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2878m 974 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 1 2880m 974 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 0s 985 0 0 0 0 0 51s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 100s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 200s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 300s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 400s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 500s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 600s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 700s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 800s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 900s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1000s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1100s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1200s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1300s 985 0 0 0 0 0 52s 978s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1400s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1500s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1600s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1700s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1800s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1900s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2000s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2100s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2200s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2300s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2400s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2500s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2600s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2700s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2800s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2900s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3000s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3100s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3200s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3300s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3400s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3500s 985 0 0 0 0 0 52s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3600s 985 0 0 0 0 0 53s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3700s 985 0 0 0 0 0 53s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3800s 985 0 0 0 0 0 53s 977s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 3900s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4000s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4100s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4200s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4300s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4400s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4500s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4600s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4700s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4800s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 4900s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5000s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5100s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5200s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5300s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5400s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5500s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5600s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5700s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5800s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 5900s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6000s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6100s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6200s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6300s 985 0 0 0 0 0 53s 976s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6400s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6500s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6600s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6700s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6800s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 6900s 985 0 0 0 0 0 53s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7000s 985 1 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7100s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7200s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7300s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7400s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7500s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7600s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7700s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7800s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 7900s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8000s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8100s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8200s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8300s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8400s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8500s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8600s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8700s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8800s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 8900s 985 0 0 0 0 0 54s 975s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9000s 984 1 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9100s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9200s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9300s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9400s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9500s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9600s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9700s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9800s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 9900s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10000s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10100s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10200s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10300s 984 0 0 0 0 0 54s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10400s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10500s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10600s 984 1 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10700s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10800s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 10900s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11000s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11100s 984 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11200s 985 1 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11300s 985 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11400s 985 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11500s 985 0 0 0 0 0 55s 974s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11600s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11700s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11800s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 11900s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12000s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12100s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12200s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12300s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12400s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12500s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12600s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12700s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12800s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 12900s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13000s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13100s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13200s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13300s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13400s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13500s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13600s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13700s 985 0 0 0 0 0 55s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13800s 985 0 0 0 0 0 56s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 13900s 985 0 0 0 0 0 56s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14000s 985 0 0 0 0 0 56s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14100s 985 0 0 0 0 0 56s 973s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14200s 985 1 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14300s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14400s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14500s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14600s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14700s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14800s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 14900s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15000s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15100s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15200s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15300s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15400s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15500s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15600s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15700s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15800s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 15900s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16000s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16100s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16200s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16300s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16400s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16500s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16600s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16700s 985 0 0 0 0 0 56s 972s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16800s 985 0 0 0 0 0 56s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 16900s 985 0 0 0 0 0 56s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17000s 985 0 0 0 0 0 56s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17100s 985 0 0 0 0 0 56s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17200s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17300s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17400s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17500s 985 1 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17600s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17700s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17800s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 17900s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18000s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18100s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18200s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18300s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18400s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18500s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18600s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18700s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18800s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 18900s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19000s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19100s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19200s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19300s 985 0 0 0 0 0 57s 971s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19400s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19500s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19600s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19700s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19800s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 19900s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20000s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20100s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20200s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20300s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20400s 985 1 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20500s 985 0 0 0 0 0 57s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20600s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20700s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20800s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 20900s 985 1 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21000s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21100s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21200s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21300s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21400s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21500s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21600s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21700s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21800s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 21900s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22000s 985 0 0 0 0 0 58s 970s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22100s 984 1 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22200s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22300s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22400s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22500s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22600s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22700s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22800s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 22900s 984 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23000s 983 1 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23100s 982 1 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23200s 982 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23300s 982 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23400s 982 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23500s 981 1 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23600s 981 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23700s 981 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23800s 981 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 23900s 981 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24000s 981 0 0 0 0 0 58s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24100s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24200s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24300s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24400s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24500s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24600s 981 1 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24700s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24800s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 24900s 981 1 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25000s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25100s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25200s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25300s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25400s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25500s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25600s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25700s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25800s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 25900s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26000s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26100s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26200s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26300s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26400s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26500s 981 0 0 0 0 0 59s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26600s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26700s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26800s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 26900s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27000s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27100s 981 0 0 0 0 0 59s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27200s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27300s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27400s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27500s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27600s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27700s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27800s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 27900s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28000s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28100s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28200s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28300s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28400s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28500s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28600s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28700s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28800s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 28900s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29000s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29100s 981 0 0 0 0 0 60s 969s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29200s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29300s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29400s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29500s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29600s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29700s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29800s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 29900s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30000s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30100s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30200s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30300s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30400s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30500s 981 0 0 0 0 0 60s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30600s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30700s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30800s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 30900s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31000s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31100s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31200s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31300s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31400s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31500s 981 0 0 0 0 0 61s 968s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31600s 981 1 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31700s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31800s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 31900s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32000s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32100s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32200s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32300s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32400s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32500s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32600s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32700s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32800s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 32900s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33000s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33100s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33200s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33300s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33400s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33500s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33600s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33700s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33800s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 33900s 981 0 0 0 0 0 61s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34000s 981 0 0 0 0 0 62s 967s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34100s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34200s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34300s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34400s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34500s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34600s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34700s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34800s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 34900s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35000s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35100s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35200s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35300s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35400s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35500s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35600s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35700s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35800s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 35900s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36000s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36100s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36200s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36300s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36400s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36500s 981 0 0 0 0 0 62s 966s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36600s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36700s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36800s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 36900s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37000s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37100s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37200s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37300s 981 0 0 0 0 0 62s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37400s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37500s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37600s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37700s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37800s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 37900s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38000s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38100s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38200s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38300s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38400s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38500s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38600s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38700s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38800s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 38900s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39000s 981 0 0 0 0 0 63s 965s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39100s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39200s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39300s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39400s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39500s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39600s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39700s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39800s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 39900s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40000s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40100s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40200s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40300s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40400s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40500s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40600s 981 1 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40700s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40800s 981 0 0 0 0 0 63s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 40900s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41000s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41100s 981 1 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41200s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41300s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41400s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41500s 981 0 0 0 0 0 64s 964s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41600s 981 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41700s 981 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41800s 980 1 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 41900s 979 1 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42000s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42100s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42200s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42300s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42400s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42500s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42600s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42700s 979 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42800s 978 1 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 42900s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43000s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43100s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43200s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43300s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43400s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43500s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43600s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43700s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43800s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 43900s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44000s 978 0 0 0 0 0 64s 963s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44100s 978 0 0 0 0 0 64s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44200s 978 0 0 0 0 0 64s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44300s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44400s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44500s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44600s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44700s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44800s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 44900s 978 1 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45000s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45100s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45200s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45300s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45400s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45500s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45600s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45700s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45800s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 45900s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46000s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46100s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46200s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46300s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46400s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46500s 978 0 0 0 0 0 65s 962s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46600s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46700s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46800s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 46900s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47000s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47100s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47200s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47300s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47400s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47500s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47600s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47700s 978 0 0 0 0 0 65s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47800s 978 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 47900s 977 1 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48000s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48100s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48200s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48300s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48400s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48500s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48600s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48700s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48800s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 48900s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49000s 977 0 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49100s 976 1 0 0 0 0 66s 961s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49200s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49300s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49400s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49500s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49600s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49700s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49800s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 49900s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50000s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50100s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50200s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50300s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50400s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50500s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50600s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50700s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50800s 976 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 50900s 975 1 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51000s 975 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51100s 975 0 0 0 0 0 66s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51200s 975 1 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51300s 975 0 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51400s 975 0 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51500s 975 0 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51600s 975 0 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51700s 975 0 0 0 0 0 67s 960s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51800s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 51900s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52000s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52100s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52200s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52300s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52400s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52500s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52600s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52700s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52800s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 52900s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53000s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53100s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53200s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53300s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53400s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53500s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53600s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53700s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53800s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 53900s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54000s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54100s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54200s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54300s 975 0 0 0 0 0 67s 959s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54400s 975 0 0 0 0 0 67s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54500s 975 0 0 0 0 0 67s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54600s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54700s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54800s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 54900s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55000s 975 1 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55100s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55200s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55300s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55400s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55500s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55600s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55700s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55800s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 55900s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56000s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56100s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56200s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56300s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56400s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56500s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56600s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56700s 975 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56800s 974 1 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 56900s 974 0 0 0 0 0 68s 958s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57000s 974 1 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57100s 974 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57200s 974 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57300s 974 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57400s 973 1 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57500s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57600s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57700s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57800s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 57900s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58000s 973 0 0 0 0 0 68s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58100s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58200s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58300s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58400s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58500s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58600s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58700s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58800s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 58900s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59000s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59100s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59200s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59300s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59400s 973 0 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59500s 973 1 0 0 0 0 69s 957s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59600s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59700s 973 1 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59800s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 59900s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60000s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60100s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60200s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60300s 973 1 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60400s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60500s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60600s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60700s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60800s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 60900s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61000s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61100s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61200s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61300s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61400s 973 0 0 0 0 0 69s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61500s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61600s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61700s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61800s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 61900s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62000s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62100s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62200s 973 0 0 0 0 0 70s 956s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62300s 973 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62400s 973 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62500s 973 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62600s 972 1 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62700s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62800s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 62900s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63000s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63100s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63200s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63300s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63400s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63500s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63600s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63700s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63800s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 63900s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64000s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64100s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64200s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64300s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64400s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64500s 972 1 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64600s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64700s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64800s 972 0 0 0 0 0 70s 955s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 64900s 972 0 0 0 0 0 70s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65000s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65100s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65200s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65300s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65400s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65500s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65600s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65700s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65800s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 65900s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66000s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66100s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66200s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66300s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66400s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66500s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66600s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66700s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66800s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 66900s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67000s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67100s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67200s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67300s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67400s 972 0 0 0 0 0 71s 954s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67500s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67600s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67700s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67800s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 67900s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68000s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68100s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68200s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68300s 972 0 0 0 0 0 71s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68400s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68500s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68600s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68700s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68800s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 68900s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69000s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69100s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69200s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69300s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69400s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69500s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69600s 972 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69700s 971 1 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69800s 971 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 69900s 971 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70000s 971 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70100s 971 0 0 0 0 0 72s 953s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70200s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70300s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70400s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70500s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70600s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70700s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70800s 971 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 70900s 970 1 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71000s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71100s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71200s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71300s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71400s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71500s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71600s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71700s 970 0 0 0 0 0 72s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71800s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 71900s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72000s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72100s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72200s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72300s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72400s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72500s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72600s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72700s 970 0 0 0 0 0 73s 952s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72800s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 72900s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73000s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73100s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73200s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73300s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73400s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73500s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73600s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73700s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73800s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 73900s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74000s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74100s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74200s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74300s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74400s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74500s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74600s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74700s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74800s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 74900s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75000s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75100s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75200s 970 0 0 0 0 0 73s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75300s 970 0 0 0 0 0 74s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75400s 970 0 0 0 0 0 74s 951s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75500s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75600s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75700s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75800s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 75900s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76000s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76100s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76200s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76300s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76400s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76500s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76600s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76700s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76800s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 76900s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77000s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77100s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77200s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77300s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77400s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77500s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77600s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77700s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77800s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 77900s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78000s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78100s 970 0 0 0 0 0 74s 950s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78200s 970 0 0 0 0 0 74s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78300s 970 0 0 0 0 0 74s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78400s 970 0 0 0 0 0 74s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78500s 970 0 0 0 0 0 74s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78600s 970 0 0 0 0 0 74s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78700s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78800s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 78900s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79000s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79100s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79200s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79300s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79400s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79500s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79600s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79700s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79800s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 79900s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80000s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80100s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80200s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80300s 970 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80400s 969 1 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80500s 969 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80600s 969 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80700s 969 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80800s 969 0 0 0 0 0 75s 949s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 80900s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81000s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81100s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81200s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81300s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81400s 969 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81500s 968 2 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81600s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81700s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81800s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 81900s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82000s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82100s 968 0 0 0 0 0 75s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82200s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82300s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82400s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82500s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82600s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82700s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82800s 968 1 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 82900s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83000s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83100s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83200s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83300s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83400s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83500s 968 0 0 0 0 0 76s 948s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83600s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83700s 969 1 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83800s 969 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 83900s 969 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84000s 969 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84100s 968 1 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84200s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84300s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84400s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84500s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84600s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84700s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84800s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 84900s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85000s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85100s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85200s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85300s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85400s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85500s 968 0 0 0 0 0 76s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85600s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85700s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85800s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 85900s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86000s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86100s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86200s 968 0 0 0 0 0 77s 947s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86300s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86400s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86500s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86600s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86700s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86800s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 86900s 968 1 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87000s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87100s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87200s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87300s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87400s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87500s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87600s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87700s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87800s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 87900s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88000s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88100s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88200s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88300s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88400s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88500s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88600s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88700s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88800s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 88900s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89000s 968 0 0 0 0 0 77s 946s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89100s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89200s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89300s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89400s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89500s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89600s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89700s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89800s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 89900s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90000s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90100s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90200s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90300s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90400s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90500s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90600s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90700s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90800s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 90900s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91000s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91100s 968 1 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91200s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91300s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91400s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91500s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91600s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91700s 968 0 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91800s 967 1 0 0 0 0 78s 945s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 91900s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92000s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92100s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92200s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92300s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92400s 967 0 0 0 0 0 78s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92500s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92600s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92700s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92800s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 92900s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93000s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93100s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93200s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93300s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93400s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93500s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93600s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93700s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93800s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 93900s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94000s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94100s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94200s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94300s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94400s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94500s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94600s 967 0 0 0 0 0 79s 944s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94700s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94800s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 94900s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95000s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95100s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95200s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95300s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95400s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95500s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95600s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95700s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95800s 967 0 0 0 0 0 79s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 95900s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96000s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96100s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96200s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96300s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96400s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96500s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96600s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96700s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96800s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 96900s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97000s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97100s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97200s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97300s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97400s 967 0 0 0 0 0 80s 943s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97500s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97600s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97700s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97800s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 97900s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98000s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98100s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98200s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98300s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98400s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98500s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98600s 967 1 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98700s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98800s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 98900s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99000s 967 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99100s 966 1 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99200s 966 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99300s 966 0 0 0 0 0 80s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99400s 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99500s 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99600s 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99700s 966 1 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99800s 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 99900s 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1667m 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1668m 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1670m 966 0 0 0 0 0 81s 942s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1672m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1673m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1675m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1677m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1678m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1680m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1682m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1683m 966 1 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1685m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1687m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1688m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1690m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1692m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1693m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1695m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1697m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1698m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1700m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1702m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1703m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1705m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1707m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1708m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1710m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1712m 966 0 0 0 0 0 81s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1713m 966 0 0 0 0 0 82s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1715m 966 0 0 0 0 0 82s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1717m 966 1 0 0 0 0 82s 941s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1718m 966 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1720m 966 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1722m 966 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1723m 966 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1725m 965 1 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1727m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1728m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1730m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1732m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1733m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1735m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1737m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1738m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1740m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1742m 965 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1743m 964 1 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1745m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1747m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1748m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1750m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1752m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1753m 964 1 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1755m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1757m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1758m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1760m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1762m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1763m 964 0 0 0 0 0 82s 940s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1765m 964 0 0 0 0 0 82s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1767m 964 0 0 0 0 0 82s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1768m 964 0 0 0 0 0 82s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1770m 964 0 0 0 0 0 82s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1772m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1773m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1775m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1777m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1778m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1780m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1782m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1783m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1785m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1787m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1788m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1790m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1792m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1793m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1795m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1797m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1798m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1800m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1802m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1803m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1805m 964 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1807m 963 1 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1808m 963 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1810m 963 0 0 0 0 0 83s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1812m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1813m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1815m 963 1 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1817m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1818m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1820m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1822m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1823m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1825m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1827m 963 0 0 0 0 0 83s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1828m 963 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1830m 963 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1832m 963 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1833m 963 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1835m 963 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1837m 962 1 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1838m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1840m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1842m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1843m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1845m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1847m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1848m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1850m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1852m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1853m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1855m 962 0 0 0 0 0 84s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1857m 961 1 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1858m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1860m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1862m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1863m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1865m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1867m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1868m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1870m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1872m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1873m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1875m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1877m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1878m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1880m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1882m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1883m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1885m 961 0 0 0 0 0 84s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1887m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1888m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1890m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1892m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1893m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1895m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1897m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1898m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1900m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1902m 961 0 0 0 0 0 85s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1903m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1905m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1907m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1908m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1910m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1912m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1913m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1915m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1917m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1918m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1920m 961 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1922m 960 1 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1923m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1925m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1927m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1928m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1930m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1932m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1933m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1935m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1937m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1938m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1940m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1942m 960 0 0 0 0 0 85s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1943m 960 0 0 0 0 0 86s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1945m 960 0 0 0 0 0 86s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1947m 960 0 0 0 0 0 86s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1948m 960 0 0 0 0 0 86s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1950m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1952m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1953m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1955m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1957m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1958m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1960m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1962m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1963m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1965m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1967m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1968m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1970m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1972m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1973m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1975m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1977m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1978m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1980m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1982m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1983m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1985m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1987m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1988m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1990m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1992m 960 0 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1993m 960 1 0 0 0 0 86s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1995m 960 0 0 0 0 0 86s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1997m 960 0 0 0 0 0 86s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 1998m 960 0 0 0 0 0 86s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2000m 960 1 0 0 0 0 86s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2002m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2003m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2005m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2007m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2008m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2010m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2012m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2013m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2015m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2017m 960 1 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2018m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2020m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2022m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2023m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2025m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2027m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2028m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2030m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2032m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2033m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2035m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2037m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2038m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2040m 960 0 0 0 0 0 87s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2042m 960 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2043m 959 1 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2045m 959 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2047m 958 2 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2048m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2050m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2052m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2053m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2055m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2057m 958 0 0 0 0 0 87s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2058m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2060m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2062m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2063m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2065m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2067m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2068m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2070m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2072m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2073m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2075m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2077m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2078m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2080m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2082m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2083m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2085m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2087m 958 0 0 0 0 0 88s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2088m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2090m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2092m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2093m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2095m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2097m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2098m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2100m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2102m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2103m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2105m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2107m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2108m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2110m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2112m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2113m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2115m 958 0 0 0 0 0 88s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2117m 958 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2118m 958 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2120m 958 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2122m 958 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2123m 958 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2125m 957 1 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2127m 957 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2128m 957 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2130m 957 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2132m 957 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2133m 957 0 0 0 0 0 89s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2135m 955 2 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2137m 955 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2138m 955 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2140m 954 1 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2142m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2143m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2145m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2147m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2148m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2150m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2152m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2153m 954 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2155m 953 1 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2157m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2158m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2160m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2162m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2163m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2165m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2167m 953 1 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2168m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2170m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2172m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2173m 953 0 0 0 0 0 89s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2175m 953 0 0 0 0 0 90s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2177m 953 0 0 0 0 0 90s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2178m 953 0 0 0 0 0 90s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2180m 953 0 0 0 0 0 90s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2182m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2183m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2185m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2187m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2188m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2190m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2192m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2193m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2195m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2197m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2198m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2200m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2202m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2203m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2205m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2207m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2208m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2210m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2212m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2213m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2215m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2217m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2218m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2220m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2222m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2223m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2225m 953 0 0 0 0 0 90s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2227m 953 0 0 0 0 0 90s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2228m 953 0 0 0 0 0 90s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2230m 953 0 0 0 0 0 90s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2232m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2233m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2235m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2237m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2238m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2240m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2242m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2243m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2245m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2247m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2248m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2250m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2252m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2253m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2255m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2257m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2258m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2260m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2262m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2263m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2265m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2267m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2268m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2270m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2272m 953 0 0 0 0 0 91s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2273m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2275m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2277m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2278m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2280m 953 1 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2282m 953 1 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2283m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2285m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2287m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2288m 953 0 0 0 0 0 91s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2290m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2292m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2293m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2295m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2297m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2298m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2300m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2302m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2303m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2305m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2307m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2308m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2310m 953 1 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2312m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2313m 953 1 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2315m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2317m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2318m 953 0 0 0 0 0 92s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2320m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2322m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2323m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2325m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2327m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2328m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2330m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2332m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2333m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2335m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2337m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2338m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2340m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2342m 953 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2343m 952 1 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2345m 952 0 0 0 0 0 92s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2347m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2348m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2350m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2352m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2353m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2355m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2357m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2358m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2360m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2362m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2363m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2365m 952 0 0 0 0 0 93s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2367m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2368m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2370m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2372m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2373m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2375m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2377m 953 1 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2378m 953 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2380m 953 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2382m 953 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2383m 953 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2385m 952 1 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2387m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2388m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2390m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2392m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2393m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2395m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2397m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2398m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2400m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2402m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2403m 952 0 0 0 0 0 93s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2405m 952 0 0 0 0 0 94s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2407m 952 0 0 0 0 0 94s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2408m 952 0 0 0 0 0 94s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2410m 952 0 0 0 0 0 94s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2412m 952 1 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2413m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2415m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2417m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2418m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2420m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2422m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2423m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2425m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2427m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2428m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2430m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2432m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2433m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2435m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2437m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2438m 952 1 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2440m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2442m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2443m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2445m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2447m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2448m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2450m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2452m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2453m 952 1 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2455m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2457m 952 0 0 0 0 0 94s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2458m 952 0 0 0 0 0 94s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2460m 952 0 0 0 0 0 94s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2462m 952 0 0 0 0 0 94s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2463m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2465m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2467m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2468m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2470m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2472m 952 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2473m 953 1 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2475m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2477m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2478m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2480m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2482m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2483m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2485m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2487m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2488m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2490m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2492m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2493m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2495m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2497m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2498m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2500m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2502m 953 0 0 0 0 0 95s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2503m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2505m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2507m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2508m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2510m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2512m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2513m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2515m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2517m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2518m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2520m 953 0 0 0 0 0 95s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2522m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2523m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2525m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2527m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2528m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2530m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2532m 953 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2533m 952 1 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2535m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2537m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2538m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2540m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2542m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2543m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2545m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2547m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2548m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2550m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2552m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2553m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2555m 952 0 0 0 0 0 96s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2557m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2558m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2560m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2562m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2563m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2565m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2567m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2568m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2570m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2572m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2573m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2575m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2577m 952 0 0 0 0 0 96s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2578m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2580m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2582m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2583m 952 1 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2585m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2587m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2588m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2590m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2592m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2593m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2595m 952 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2597m 951 1 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2598m 951 0 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2600m 950 1 0 0 0 0 97s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2602m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2603m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2605m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2607m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2608m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2610m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2612m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2613m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2615m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2617m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2618m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2620m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2622m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2623m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2625m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2627m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2628m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2630m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2632m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2633m 950 0 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2635m 949 1 0 0 0 0 97s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2637m 949 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2638m 949 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2640m 949 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2642m 949 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2643m 949 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2645m 948 1 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2647m 948 0 0 0 0 0 98s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2648m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2650m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2652m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2653m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2655m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2657m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2658m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2660m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2662m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2663m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2665m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2667m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2668m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2670m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2672m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2673m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2675m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2677m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2678m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2680m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2682m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2683m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2685m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2687m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2688m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2690m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2692m 948 0 0 0 0 0 98s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2693m 948 0 0 0 0 0 98s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2695m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2697m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2698m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2700m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2702m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2703m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2705m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2707m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2708m 948 1 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2710m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2712m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2713m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2715m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2717m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2718m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2720m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2722m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2723m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2725m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2727m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2728m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2730m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2732m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2733m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2735m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2737m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2738m 948 0 0 0 0 0 99s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2740m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2742m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2743m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2745m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2747m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2748m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2750m 948 0 0 0 0 0 99s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2752m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2753m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2755m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2757m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2758m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2760m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2762m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2763m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2765m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2767m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2768m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2770m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2772m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2773m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2775m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2777m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2778m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2780m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2782m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2783m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2785m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2787m 948 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2788m 948 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2790m 948 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2792m 947 1 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2793m 947 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2795m 945 2 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2797m 945 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2798m 945 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2800m 945 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2802m 945 0 0 0 0 0 100s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2803m 945 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2805m 945 0 0 0 0 0 100s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2807m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2808m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2810m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2812m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2813m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2815m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2817m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2818m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2820m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2822m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2823m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2825m 945 1 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2827m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2828m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2830m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2832m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2833m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2835m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2837m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2838m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2840m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2842m 945 1 0 0 0 0 101s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2843m 945 0 0 0 0 0 101s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2845m 945 0 0 0 0 0 101s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2847m 945 0 0 0 0 0 101s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2848m 945 0 0 0 0 0 101s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2850m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2852m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2853m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2855m 945 0 0 0 0 0 101s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2857m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2858m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2860m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2862m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2863m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2865m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2867m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2868m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2870m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2872m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2873m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2875m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2877m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2878m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 2 2880m 945 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 0s 1010 0 0 0 0 0 102s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 100s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 200s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 300s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 400s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 500s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 600s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 700s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 800s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 900s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1000s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1100s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1200s 1010 0 0 0 0 0 102s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1300s 1010 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1400s 1010 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1500s 1009 1 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1600s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1700s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1800s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1900s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2000s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2100s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2200s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2300s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2400s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2500s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2600s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2700s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2800s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2900s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3000s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3100s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3200s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3300s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3400s 1009 1 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3500s 1009 0 0 0 0 0 103s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3600s 1009 0 0 0 0 0 103s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3700s 1009 0 0 0 0 0 103s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3800s 1009 0 0 0 0 0 103s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 3900s 1009 0 0 0 0 0 103s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4000s 1009 0 0 0 0 0 103s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4100s 1009 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4200s 1009 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4300s 1008 1 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4400s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4500s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4600s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4700s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4800s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 4900s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5000s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5100s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5200s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5300s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5400s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5500s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5600s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5700s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5800s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 5900s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6000s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6100s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6200s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6300s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6400s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6500s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6600s 1008 0 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6700s 1007 1 0 0 0 0 104s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6800s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 6900s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7000s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7100s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7200s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7300s 1007 0 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7400s 1006 1 0 0 0 0 105s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7500s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7600s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7700s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7800s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 7900s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8000s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8100s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8200s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8300s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8400s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8500s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8600s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8700s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8800s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 8900s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9000s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9100s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9200s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9300s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9400s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9500s 1006 0 0 0 0 0 105s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9600s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9700s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9800s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 9900s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10000s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10100s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10200s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10300s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10400s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10500s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10600s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10700s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10800s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 10900s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11000s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11100s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11200s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11300s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11400s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11500s 1006 0 0 0 0 0 106s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11600s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11700s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11800s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 11900s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12000s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12100s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12200s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12300s 1006 0 0 0 0 0 106s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12400s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12500s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12600s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12700s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12800s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 12900s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13000s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13100s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13200s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13300s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13400s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13500s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13600s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13700s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13800s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 13900s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14000s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14100s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14200s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14300s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14400s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14500s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14600s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14700s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14800s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 14900s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15000s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15100s 1006 0 0 0 0 0 107s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15200s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15300s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15400s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15500s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15600s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15700s 1006 0 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15800s 1006 1 0 0 0 0 108s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 15900s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16000s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16100s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16200s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16300s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16400s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16500s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16600s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16700s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16800s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 16900s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17000s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17100s 1006 1 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17200s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17300s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17400s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17500s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17600s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17700s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17800s 1006 0 0 0 0 0 108s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 17900s 1006 0 0 0 0 0 109s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18000s 1006 0 0 0 0 0 109s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18100s 1006 0 0 0 0 0 109s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18200s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18300s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18400s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18500s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18600s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18700s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18800s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 18900s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19000s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19100s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19200s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19300s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19400s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19500s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19600s 1006 1 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19700s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19800s 1006 0 0 0 0 0 109s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 19900s 1006 0 0 0 0 0 109s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20000s 1006 0 0 0 0 0 109s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20100s 1006 0 0 0 0 0 109s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20200s 1005 1 0 0 0 0 109s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20300s 1005 1 0 0 0 0 109s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20400s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20500s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20600s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20700s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20800s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 20900s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21000s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21100s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21200s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21300s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21400s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21500s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21600s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21700s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21800s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 21900s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22000s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22100s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22200s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22300s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22400s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22500s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22600s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22700s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22800s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 22900s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23000s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23100s 1005 0 0 0 0 0 110s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23200s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23300s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23400s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23500s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23600s 1005 1 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23700s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23800s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 23900s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24000s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24100s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24200s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24300s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24400s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24500s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24600s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24700s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24800s 1005 0 0 0 0 0 111s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 24900s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25000s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25100s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25200s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25300s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25400s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25500s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25600s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25700s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25800s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 25900s 1005 0 0 0 0 0 111s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26000s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26100s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26200s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26300s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26400s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26500s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26600s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26700s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26800s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 26900s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27000s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27100s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27200s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27300s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27400s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27500s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27600s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27700s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27800s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 27900s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28000s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28100s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28200s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28300s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28400s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28500s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28600s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28700s 1005 0 0 0 0 0 112s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28800s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 28900s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29000s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29100s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29200s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29300s 1005 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29400s 1004 1 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29500s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29600s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29700s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29800s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 29900s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30000s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30100s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30200s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30300s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30400s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30500s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30600s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30700s 1004 0 0 0 0 0 113s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30800s 1004 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 30900s 1004 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31000s 1004 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31100s 1004 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31200s 1003 1 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31300s 1003 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31400s 1003 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31500s 1003 0 0 0 0 0 113s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31600s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31700s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31800s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 31900s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32000s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32100s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32200s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32300s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32400s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32500s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32600s 1003 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32700s 1004 1 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32800s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 32900s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33000s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33100s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33200s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33300s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33400s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33500s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33600s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33700s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33800s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 33900s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34000s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34100s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34200s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34300s 1004 0 0 0 0 0 114s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34400s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34500s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34600s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34700s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34800s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 34900s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35000s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35100s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35200s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35300s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35400s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35500s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35600s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35700s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35800s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 35900s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36000s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36100s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36200s 1004 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36300s 1003 1 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36400s 1003 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36500s 1003 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36600s 1003 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36700s 1003 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36800s 1002 1 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 36900s 1001 1 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37000s 1001 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37100s 1001 0 0 0 0 0 115s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37200s 1001 0 0 0 0 0 116s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37300s 1001 0 0 0 0 0 116s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37400s 1001 0 0 0 0 0 116s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37500s 1001 0 0 0 0 0 116s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37600s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37700s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37800s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 37900s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38000s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38100s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38200s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38300s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38400s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38500s 1001 1 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38600s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38700s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38800s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 38900s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39000s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39100s 1001 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39200s 1000 1 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39300s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39400s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39500s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39600s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39700s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39800s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 39900s 1000 0 0 0 0 0 116s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40000s 1000 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40100s 1000 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40200s 1000 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40300s 1000 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40400s 1000 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40500s 999 1 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40600s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40700s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40800s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 40900s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41000s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41100s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41200s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41300s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41400s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41500s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41600s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41700s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41800s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 41900s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42000s 999 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42100s 998 1 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42200s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42300s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42400s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42500s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42600s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42700s 998 0 0 0 0 0 117s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42800s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 42900s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43000s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43100s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43200s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43300s 998 0 0 0 0 0 118s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43400s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43500s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43600s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43700s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43800s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 43900s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44000s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44100s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44200s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44300s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44400s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44500s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44600s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44700s 998 1 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44800s 998 0 0 0 0 0 118s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 44900s 998 0 0 0 0 0 118s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45000s 998 0 0 0 0 0 118s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45100s 998 0 0 0 0 0 118s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45200s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45300s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45400s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45500s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45600s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45700s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45800s 998 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 45900s 997 1 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46000s 997 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46100s 997 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46200s 997 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46300s 997 0 0 0 0 0 119s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46400s 997 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46500s 997 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46600s 997 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46700s 996 1 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46800s 996 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 46900s 996 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47000s 996 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47100s 996 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47200s 995 1 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47300s 995 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47400s 995 0 0 0 0 0 119s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47500s 995 0 0 0 0 0 120s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47600s 995 0 0 0 0 0 120s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47700s 995 0 0 0 0 0 120s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47800s 995 0 0 0 0 0 120s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 47900s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48000s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48100s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48200s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48300s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48400s 995 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48500s 996 1 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48600s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48700s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48800s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 48900s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49000s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49100s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49200s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49300s 996 0 0 0 0 0 120s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49400s 996 0 0 0 0 0 120s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49500s 996 0 0 0 0 0 120s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49600s 996 0 0 0 0 0 120s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49700s 996 0 0 0 0 0 120s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49800s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 49900s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50000s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50100s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50200s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50300s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50400s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50500s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50600s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50700s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50800s 996 0 0 0 0 0 121s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 50900s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51000s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51100s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51200s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51300s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51400s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51500s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51600s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51700s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51800s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 51900s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52000s 996 1 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52100s 996 0 0 0 0 0 121s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52200s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52300s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52400s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52500s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52600s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52700s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52800s 996 0 0 0 0 0 122s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 52900s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53000s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53100s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53200s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53300s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53400s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53500s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53600s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53700s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53800s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 53900s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54000s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54100s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54200s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54300s 996 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54400s 995 1 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54500s 994 1 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54600s 994 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54700s 994 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54800s 994 0 0 0 0 0 122s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 54900s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55000s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55100s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55200s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55300s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55400s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55500s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55600s 994 1 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55700s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55800s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 55900s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56000s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56100s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56200s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56300s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56400s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56500s 994 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56600s 993 1 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56700s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56800s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 56900s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57000s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57100s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57200s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57300s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57400s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57500s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57600s 993 0 0 0 0 0 123s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57700s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57800s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 57900s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58000s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58100s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58200s 993 1 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58300s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58400s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58500s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58600s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58700s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58800s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 58900s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59000s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59100s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59200s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59300s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59400s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59500s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59600s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59700s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59800s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 59900s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60000s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60100s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60200s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60300s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60400s 993 0 0 0 0 0 124s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60500s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60600s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60700s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60800s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 60900s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61000s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61100s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61200s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61300s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61400s 993 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61500s 992 1 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61600s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61700s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61800s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 61900s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62000s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62100s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62200s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62300s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62400s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62500s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62600s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62700s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62800s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 62900s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63000s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63100s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63200s 992 0 0 0 0 0 125s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63300s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63400s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63500s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63600s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63700s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63800s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 63900s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64000s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64100s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64200s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64300s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64400s 992 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64500s 991 1 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64600s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64700s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64800s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 64900s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65000s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65100s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65200s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65300s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65400s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65500s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65600s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65700s 991 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65800s 990 1 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 65900s 990 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66000s 990 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66100s 990 0 0 0 0 0 126s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66200s 990 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66300s 990 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66400s 990 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66500s 991 1 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66600s 991 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66700s 991 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66800s 991 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 66900s 991 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67000s 991 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67100s 992 1 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67200s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67300s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67400s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67500s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67600s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67700s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67800s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 67900s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68000s 992 0 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68100s 991 1 0 0 0 0 127s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68200s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68300s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68400s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68500s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68600s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68700s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68800s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 68900s 991 0 0 0 0 0 127s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69000s 991 1 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69100s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69200s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69300s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69400s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69500s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69600s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69700s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69800s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 69900s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70000s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70100s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70200s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70300s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70400s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70500s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70600s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70700s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70800s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 70900s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71000s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71100s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71200s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71300s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71400s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71500s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71600s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71700s 991 0 0 0 0 0 128s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71800s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 71900s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72000s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72100s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72200s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72300s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72400s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72500s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72600s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72700s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72800s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 72900s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73000s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73100s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73200s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73300s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73400s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73500s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73600s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73700s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73800s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 73900s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74000s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74100s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74200s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74300s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74400s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74500s 991 0 0 0 0 0 129s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74600s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74700s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74800s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 74900s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75000s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75100s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75200s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75300s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75400s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75500s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75600s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75700s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75800s 991 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 75900s 989 2 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76000s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76100s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76200s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76300s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76400s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76500s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76600s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76700s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76800s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 76900s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77000s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77100s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77200s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77300s 989 0 0 0 0 0 130s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77400s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77500s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77600s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77700s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77800s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 77900s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78000s 989 1 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78100s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78200s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78300s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78400s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78500s 989 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78600s 990 1 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78700s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78800s 990 1 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 78900s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79000s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79100s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79200s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79300s 990 1 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79400s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79500s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79600s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79700s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79800s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 79900s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80000s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80100s 990 0 0 0 0 0 131s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80200s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80300s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80400s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80500s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80600s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80700s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80800s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 80900s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81000s 990 2 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81100s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81200s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81300s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81400s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81500s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81600s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81700s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81800s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 81900s 990 1 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82000s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82100s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82200s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82300s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82400s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82500s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82600s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82700s 990 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82800s 989 1 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 82900s 989 0 0 0 0 0 132s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83000s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83100s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83200s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83300s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83400s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83500s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83600s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83700s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83800s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 83900s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84000s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84100s 989 1 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84200s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84300s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84400s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84500s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84600s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84700s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84800s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 84900s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85000s 989 1 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85100s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85200s 989 1 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85300s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85400s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85500s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85600s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85700s 989 0 0 0 0 0 133s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85800s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 85900s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86000s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86100s 989 1 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86200s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86300s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86400s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86500s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86600s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86700s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86800s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 86900s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87000s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87100s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87200s 989 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87300s 988 1 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87400s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87500s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87600s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87700s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87800s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 87900s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88000s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88100s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88200s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88300s 988 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88400s 987 1 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88500s 987 0 0 0 0 0 134s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88600s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88700s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88800s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 88900s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89000s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89100s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89200s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89300s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89400s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89500s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89600s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89700s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89800s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 89900s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90000s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90100s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90200s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90300s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90400s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90500s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90600s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90700s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90800s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 90900s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91000s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91100s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91200s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91300s 987 0 0 0 0 0 135s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91400s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91500s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91600s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91700s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91800s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 91900s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92000s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92100s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92200s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92300s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92400s 987 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92500s 986 1 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92600s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92700s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92800s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 92900s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93000s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93100s 986 1 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93200s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93300s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93400s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93500s 986 2 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93600s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93700s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93800s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 93900s 986 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94000s 985 1 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94100s 985 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94200s 985 0 0 0 0 0 136s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94300s 984 1 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94400s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94500s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94600s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94700s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94800s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 94900s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95000s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95100s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95200s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95300s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95400s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95500s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95600s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95700s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95800s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 95900s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96000s 984 1 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96100s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96200s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96300s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96400s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96500s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96600s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96700s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96800s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 96900s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97000s 984 0 0 0 0 0 137s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97100s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97200s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97300s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97400s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97500s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97600s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97700s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97800s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 97900s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98000s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98100s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98200s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98300s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98400s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98500s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98600s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98700s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98800s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 98900s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99000s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99100s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99200s 984 1 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99300s 984 1 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99400s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99500s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99600s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99700s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99800s 984 0 0 0 0 0 138s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 99900s 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1667m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1668m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1670m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1672m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1673m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1675m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1677m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1678m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1680m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1682m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1683m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1685m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1687m 984 1 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1688m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1690m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1692m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1693m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1695m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1697m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1698m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1700m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1702m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1703m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1705m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1707m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1708m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1710m 984 0 0 0 0 0 139s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1712m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1713m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1715m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1717m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1718m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1720m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1722m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1723m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1725m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1727m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1728m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1730m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1732m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1733m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1735m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1737m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1738m 984 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1740m 983 1 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1742m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1743m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1745m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1747m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1748m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1750m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1752m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1753m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1755m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1757m 983 0 0 0 0 0 140s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1758m 982 1 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1760m 983 1 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1762m 983 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1763m 983 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1765m 983 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1767m 983 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1768m 983 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1770m 984 1 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1772m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1773m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1775m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1777m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1778m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1780m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1782m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1783m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1785m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1787m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1788m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1790m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1792m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1793m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1795m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1797m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1798m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1800m 984 0 0 0 0 0 141s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1802m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1803m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1805m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1807m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1808m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1810m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1812m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1813m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1815m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1817m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1818m 984 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1820m 982 2 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1822m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1823m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1825m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1827m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1828m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1830m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1832m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1833m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1835m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1837m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1838m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1840m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1842m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1843m 982 0 0 0 0 0 142s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1845m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1847m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1848m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1850m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1852m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1853m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1855m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1857m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1858m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1860m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1862m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1863m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1865m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1867m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1868m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1870m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1872m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1873m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1875m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1877m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1878m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1880m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1882m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1883m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1885m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1887m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1888m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1890m 982 0 0 0 0 0 143s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1892m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1893m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1895m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1897m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1898m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1900m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1902m 982 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1903m 981 1 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1905m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1907m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1908m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1910m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1912m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1913m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1915m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1917m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1918m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1920m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1922m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1923m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1925m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1927m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1928m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1930m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1932m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1933m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1935m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1937m 981 0 0 0 0 0 144s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1938m 981 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1940m 981 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1942m 981 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1943m 981 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1945m 981 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1947m 980 1 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1948m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1950m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1952m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1953m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1955m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1957m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1958m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1960m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1962m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1963m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1965m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1967m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1968m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1970m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1972m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1973m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1975m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1977m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1978m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1980m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1982m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1983m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1985m 980 0 0 0 0 0 145s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1987m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1988m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1990m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1992m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1993m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1995m 980 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1997m 979 1 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 1998m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2000m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2002m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2003m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2005m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2007m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2008m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2010m 979 1 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2012m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2013m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2015m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2017m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2018m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2020m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2022m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2023m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2025m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2027m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2028m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2030m 979 0 0 0 0 0 146s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2032m 979 1 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2033m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2035m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2037m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2038m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2040m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2042m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2043m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2045m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2047m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2048m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2050m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2052m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2053m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2055m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2057m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2058m 979 0 0 0 0 0 147s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2060m 979 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2062m 979 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2063m 979 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2065m 979 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2067m 979 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2068m 978 1 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2070m 978 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2072m 978 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2073m 978 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2075m 978 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2077m 978 0 0 0 0 0 147s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2078m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2080m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2082m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2083m 978 1 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2085m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2087m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2088m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2090m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2092m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2093m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2095m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2097m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2098m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2100m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2102m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2103m 978 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2105m 977 1 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2107m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2108m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2110m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2112m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2113m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2115m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2117m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2118m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2120m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2122m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2123m 977 0 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2125m 977 1 0 0 0 0 148s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2127m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2128m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2130m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2132m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2133m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2135m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2137m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2138m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2140m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2142m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2143m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2145m 977 1 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2147m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2148m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2150m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2152m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2153m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2155m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2157m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2158m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2160m 977 1 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2162m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2163m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2165m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2167m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2168m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2170m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2172m 977 0 0 0 0 0 149s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2173m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2175m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2177m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2178m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2180m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2182m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2183m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2185m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2187m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2188m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2190m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2192m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2193m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2195m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2197m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2198m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2200m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2202m 977 1 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2203m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2205m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2207m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2208m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2210m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2212m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2213m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2215m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2217m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2218m 977 0 0 0 0 0 150s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2220m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2222m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2223m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2225m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2227m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2228m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2230m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2232m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2233m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2235m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2237m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2238m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2240m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2242m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2243m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2245m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2247m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2248m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2250m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2252m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2253m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2255m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2257m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2258m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2260m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2262m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2263m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2265m 977 0 0 0 0 0 151s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2267m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2268m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2270m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2272m 978 1 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2273m 978 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2275m 978 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2277m 978 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2278m 977 1 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2280m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2282m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2283m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2285m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2287m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2288m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2290m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2292m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2293m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2295m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2297m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2298m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2300m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2302m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2303m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2305m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2307m 977 0 0 0 0 0 152s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2308m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2310m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2312m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2313m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2315m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2317m 977 0 0 0 0 0 153s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2318m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2320m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2322m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2323m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2325m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2327m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2328m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2330m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2332m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2333m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2335m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2337m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2338m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2340m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2342m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2343m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2345m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2347m 977 0 0 0 0 0 153s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2348m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2350m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2352m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2353m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2355m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2357m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2358m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2360m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2362m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2363m 977 0 0 0 0 0 154s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2365m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2367m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2368m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2370m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2372m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2373m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2375m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2377m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2378m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2380m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2382m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2383m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2385m 977 0 0 0 0 0 154s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2387m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2388m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2390m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2392m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2393m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2395m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2397m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2398m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2400m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2402m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2403m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2405m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2407m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2408m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2410m 977 0 0 0 0 0 155s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2412m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2413m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2415m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2417m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2418m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2420m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2422m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2423m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2425m 977 0 0 0 0 0 155s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2427m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2428m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2430m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2432m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2433m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2435m 977 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2437m 976 2 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2438m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2440m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2442m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2443m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2445m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2447m 976 1 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2448m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2450m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2452m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2453m 976 1 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2455m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2457m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2458m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2460m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2462m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2463m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2465m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2467m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2468m 976 0 0 0 0 0 156s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2470m 976 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2472m 976 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2473m 976 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2475m 976 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2477m 975 1 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2478m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2480m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2482m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2483m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2485m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2487m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2488m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2490m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2492m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2493m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2495m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2497m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2498m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2500m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2502m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2503m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2505m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2507m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2508m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2510m 975 0 0 0 0 0 157s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2512m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2513m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2515m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2517m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2518m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2520m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2522m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2523m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2525m 975 1 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2527m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2528m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2530m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2532m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2533m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2535m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2537m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2538m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2540m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2542m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2543m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2545m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2547m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2548m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2550m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2552m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2553m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2555m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2557m 975 0 0 0 0 0 158s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2558m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2560m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2562m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2563m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2565m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2567m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2568m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2570m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2572m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2573m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2575m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2577m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2578m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2580m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2582m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2583m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2585m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2587m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2588m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2590m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2592m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2593m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2595m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2597m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2598m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2600m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2602m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2603m 975 0 0 0 0 0 159s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2605m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2607m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2608m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2610m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2612m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2613m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2615m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2617m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2618m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2620m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2622m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2623m 975 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2625m 974 1 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2627m 974 1 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2628m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2630m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2632m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2633m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2635m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2637m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2638m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2640m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2642m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2643m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2645m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2647m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2648m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2650m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2652m 974 0 0 0 0 0 160s 939s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2653m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2655m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2657m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2658m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2660m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2662m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2663m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2665m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2667m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2668m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2670m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2672m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2673m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2675m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2677m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2678m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2680m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2682m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2683m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2685m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2687m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2688m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2690m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2692m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2693m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2695m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2697m 974 0 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2698m 974 1 0 0 0 0 161s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2700m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2702m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2703m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2705m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2707m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2708m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2710m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2712m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2713m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2715m 974 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2717m 973 1 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2718m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2720m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2722m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2723m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2725m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2727m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2728m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2730m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2732m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2733m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2735m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2737m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2738m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2740m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2742m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2743m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2745m 973 0 0 0 0 0 162s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2747m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2748m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2750m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2752m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2753m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2755m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2757m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2758m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2760m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2762m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2763m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2765m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2767m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2768m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2770m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2772m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2773m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2775m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2777m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2778m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2780m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2782m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2783m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2785m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2787m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2788m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2790m 973 0 0 0 0 0 163s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2792m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2793m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2795m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2797m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2798m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2800m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2802m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2803m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2805m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2807m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2808m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2810m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2812m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2813m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2815m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2817m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2818m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2820m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2822m 973 1 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2823m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2825m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2827m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2828m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2830m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2832m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2833m 973 0 0 0 0 0 164s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2835m 973 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2837m 972 1 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2838m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2840m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2842m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2843m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2845m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2847m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2848m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2850m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2852m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2853m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2855m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2857m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2858m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2860m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2862m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2863m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2865m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2867m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2868m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2870m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2872m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2873m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2875m 972 1 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2877m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2878m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 3 2880m 972 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 0s 1050 0 0 0 0 0 165s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 100s 1050 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 200s 1049 1 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 300s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 400s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 500s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 600s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 700s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 800s 1049 0 0 0 0 0 166s 938s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 900s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1000s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1100s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1200s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1300s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1400s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1500s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1600s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1700s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1800s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1900s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2000s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2100s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2200s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2300s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2400s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2500s 1049 0 0 0 0 0 166s 937s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2600s 1049 1 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2700s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2800s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2900s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3000s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3100s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3200s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3300s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3400s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3500s 1049 0 0 0 0 0 166s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3600s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3700s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3800s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 3900s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4000s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4100s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4200s 1049 0 0 0 0 0 167s 936s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4300s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4400s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4500s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4600s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4700s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4800s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 4900s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5000s 1049 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5100s 1048 1 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5200s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5300s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5400s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5500s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5600s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5700s 1048 1 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5800s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 5900s 1048 0 0 0 0 0 167s 935s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6000s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6100s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6200s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6300s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6400s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6500s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6600s 1048 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6700s 1049 1 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6800s 1049 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 6900s 1049 1 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7000s 1049 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7100s 1049 1 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7200s 1049 0 0 0 0 0 167s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7300s 1049 0 0 0 0 0 168s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7400s 1049 1 0 0 0 0 168s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7500s 1049 0 0 0 0 0 168s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7600s 1049 0 0 0 0 0 168s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7700s 1049 0 0 0 0 0 168s 934s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7800s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 7900s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8000s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8100s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8200s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8300s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8400s 1049 1 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8500s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8600s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8700s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8800s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 8900s 1049 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9000s 1048 1 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9100s 1048 1 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9200s 1048 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9300s 1048 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9400s 1048 0 0 0 0 0 168s 933s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9500s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9600s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9700s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9800s 1048 1 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 9900s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10000s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10100s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10200s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10300s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10400s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10500s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10600s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10700s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10800s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 10900s 1048 0 0 0 0 0 168s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11000s 1048 0 0 0 0 0 169s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11100s 1048 0 0 0 0 0 169s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11200s 1048 0 0 0 0 0 169s 932s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11300s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11400s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11500s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11600s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11700s 1048 1 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11800s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 11900s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12000s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12100s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12200s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12300s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12400s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12500s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12600s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12700s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12800s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 12900s 1048 0 0 0 0 0 169s 931s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13000s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13100s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13200s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13300s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13400s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13500s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13600s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13700s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13800s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 13900s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14000s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14100s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14200s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14300s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14400s 1048 0 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14500s 1048 1 0 0 0 0 169s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14600s 1048 0 0 0 0 0 170s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14700s 1048 0 0 0 0 0 170s 930s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14800s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 14900s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15000s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15100s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15200s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15300s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15400s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15500s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15600s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15700s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15800s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 15900s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16000s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16100s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16200s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16300s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16400s 1048 0 0 0 0 0 170s 929s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16500s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16600s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16700s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16800s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 16900s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17000s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17100s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17200s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17300s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17400s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17500s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17600s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17700s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17800s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 17900s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18000s 1048 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18100s 1047 2 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18200s 1047 0 0 0 0 0 170s 928s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18300s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18400s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18500s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18600s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18700s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18800s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 18900s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19000s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19100s 1047 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19200s 1046 1 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19300s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19400s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19500s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19600s 1046 1 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19700s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19800s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 19900s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20000s 1046 0 0 0 0 0 171s 927s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20100s 1046 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20200s 1046 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20300s 1045 1 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20400s 1045 1 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20500s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20600s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20700s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20800s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 20900s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21000s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21100s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21200s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21300s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21400s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21500s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21600s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21700s 1045 0 0 0 0 0 171s 926s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21800s 1045 0 0 0 0 0 171s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 21900s 1045 0 0 0 0 0 171s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22000s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22100s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22200s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22300s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22400s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22500s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22600s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22700s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22800s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 22900s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23000s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23100s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23200s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23300s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23400s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23500s 1045 0 0 0 0 0 172s 925s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23600s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23700s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23800s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 23900s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24000s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24100s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24200s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24300s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24400s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24500s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24600s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24700s 1045 1 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24800s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 24900s 1045 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25000s 1044 1 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25100s 1044 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25200s 1044 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25300s 1044 0 0 0 0 0 172s 924s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25400s 1044 0 0 0 0 0 172s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25500s 1044 0 0 0 0 0 172s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25600s 1044 0 0 0 0 0 172s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25700s 1043 1 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25800s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 25900s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26000s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26100s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26200s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26300s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26400s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26500s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26600s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26700s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26800s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 26900s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27000s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27100s 1043 0 0 0 0 0 173s 923s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27200s 1043 1 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27300s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27400s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27500s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27600s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27700s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27800s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 27900s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28000s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28100s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28200s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28300s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28400s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28500s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28600s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28700s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28800s 1043 0 0 0 0 0 173s 922s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 28900s 1043 0 0 0 0 0 173s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29000s 1043 0 0 0 0 0 173s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29100s 1043 0 0 0 0 0 173s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29200s 1043 0 0 0 0 0 173s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29300s 1043 0 0 0 0 0 173s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29400s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29500s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29600s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29700s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29800s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 29900s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30000s 1043 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30100s 1044 1 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30200s 1044 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30300s 1044 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30400s 1044 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30500s 1044 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30600s 1044 0 0 0 0 0 174s 921s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30700s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30800s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 30900s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31000s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31100s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31200s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31300s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31400s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31500s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31600s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31700s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31800s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 31900s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32000s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32100s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32200s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32300s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32400s 1044 0 0 0 0 0 174s 920s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32500s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32600s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32700s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32800s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 32900s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33000s 1044 0 0 0 0 0 174s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33100s 1044 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33200s 1044 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33300s 1044 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33400s 1044 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33500s 1044 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33600s 1043 1 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33700s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33800s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 33900s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34000s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34100s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34200s 1043 0 0 0 0 0 175s 919s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34300s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34400s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34500s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34600s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34700s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34800s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 34900s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35000s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35100s 1043 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35200s 1043 1 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35300s 1042 1 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35400s 1041 1 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35500s 1041 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35600s 1041 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35700s 1041 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35800s 1041 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 35900s 1041 0 0 0 0 0 175s 918s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36000s 1040 1 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36100s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36200s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36300s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36400s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36500s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36600s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36700s 1040 0 0 0 0 0 175s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36800s 1040 1 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 36900s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37000s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37100s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37200s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37300s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37400s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37500s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37600s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37700s 1040 0 0 0 0 0 176s 917s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37800s 1040 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 37900s 1040 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38000s 1039 1 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38100s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38200s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38300s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38400s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38500s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38600s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38700s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38800s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 38900s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39000s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39100s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39200s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39300s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39400s 1039 0 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39500s 1040 1 0 0 0 0 176s 916s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39600s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39700s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39800s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 39900s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40000s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40100s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40200s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40300s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40400s 1040 0 0 0 0 0 176s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40500s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40600s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40700s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40800s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 40900s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41000s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41100s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41200s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41300s 1040 0 0 0 0 0 177s 915s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41400s 1039 1 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41500s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41600s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41700s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41800s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 41900s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42000s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42100s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42200s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42300s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42400s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42500s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42600s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42700s 1039 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42800s 1038 1 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 42900s 1038 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43000s 1038 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43100s 1038 0 0 0 0 0 177s 914s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43200s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43300s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43400s 1038 1 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43500s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43600s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43700s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43800s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 43900s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44000s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44100s 1038 0 0 0 0 0 177s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44200s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44300s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44400s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44500s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44600s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44700s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44800s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 44900s 1038 0 0 0 0 0 178s 913s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45000s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45100s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45200s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45300s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45400s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45500s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45600s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45700s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45800s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 45900s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46000s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46100s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46200s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46300s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46400s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46500s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46600s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46700s 1038 0 0 0 0 0 178s 912s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46800s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 46900s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47000s 1038 1 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47100s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47200s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47300s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47400s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47500s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47600s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47700s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47800s 1038 0 0 0 0 0 178s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 47900s 1038 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48000s 1038 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48100s 1037 1 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48200s 1037 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48300s 1037 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48400s 1037 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48500s 1037 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48600s 1037 0 0 0 0 0 179s 911s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48700s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48800s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 48900s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49000s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49100s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49200s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49300s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49400s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49500s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49600s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49700s 1037 1 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49800s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 49900s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50000s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50100s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50200s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50300s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50400s 1037 0 0 0 0 0 179s 910s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50500s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50600s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50700s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50800s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 50900s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51000s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51100s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51200s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51300s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51400s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51500s 1037 0 0 0 0 0 179s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51600s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51700s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51800s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 51900s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52000s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52100s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52200s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52300s 1037 0 0 0 0 0 180s 909s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52400s 1037 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52500s 1037 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52600s 1037 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52700s 1038 1 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52800s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 52900s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53000s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53100s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53200s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53300s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53400s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53500s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53600s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53700s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53800s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 53900s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54000s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54100s 1038 0 0 0 0 0 180s 908s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54200s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54300s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54400s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54500s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54600s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54700s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54800s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 54900s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55000s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55100s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55200s 1038 0 0 0 0 0 180s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55300s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55400s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55500s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55600s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55700s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55800s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 55900s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56000s 1038 0 0 0 0 0 181s 907s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56100s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56200s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56300s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56400s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56500s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56600s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56700s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56800s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 56900s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57000s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57100s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57200s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57300s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57400s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57500s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57600s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57700s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57800s 1038 0 0 0 0 0 181s 906s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 57900s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58000s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58100s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58200s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58300s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58400s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58500s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58600s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58700s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58800s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 58900s 1038 0 0 0 0 0 181s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59000s 1038 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59100s 1039 1 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59200s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59300s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59400s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59500s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59600s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59700s 1039 0 0 0 0 0 182s 905s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59800s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 59900s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60000s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60100s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60200s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60300s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60400s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60500s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60600s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60700s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60800s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 60900s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61000s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61100s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61200s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61300s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61400s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61500s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61600s 1039 0 0 0 0 0 182s 904s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61700s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61800s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 61900s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62000s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62100s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62200s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62300s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62400s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62500s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62600s 1039 0 0 0 0 0 182s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62700s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62800s 1039 1 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 62900s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63000s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63100s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63200s 1039 1 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63300s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63400s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63500s 1039 0 0 0 0 0 183s 903s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63600s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63700s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63800s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 63900s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64000s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64100s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64200s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64300s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64400s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64500s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64600s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64700s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64800s 1039 1 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 64900s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65000s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65100s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65200s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65300s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65400s 1039 0 0 0 0 0 183s 902s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65500s 1039 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65600s 1038 1 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65700s 1038 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65800s 1038 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 65900s 1038 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66000s 1038 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66100s 1038 1 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66200s 1038 0 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66300s 1038 1 0 0 0 0 183s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66400s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66500s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66600s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66700s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66800s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 66900s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67000s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67100s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67200s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67300s 1038 0 0 0 0 0 184s 901s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67400s 1038 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67500s 1038 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67600s 1038 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67700s 1039 1 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67800s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 67900s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68000s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68100s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68200s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68300s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68400s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68500s 1039 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68600s 1040 1 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68700s 1040 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68800s 1040 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 68900s 1040 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69000s 1040 1 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69100s 1040 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69200s 1040 0 0 0 0 0 184s 900s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69300s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69400s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69500s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69600s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69700s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69800s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 69900s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70000s 1040 0 0 0 0 0 184s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70100s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70200s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70300s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70400s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70500s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70600s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70700s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70800s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 70900s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71000s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71100s 1040 0 0 0 0 0 185s 899s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71200s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71300s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71400s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71500s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71600s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71700s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71800s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 71900s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72000s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72100s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72200s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72300s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72400s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72500s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72600s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72700s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72800s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 72900s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73000s 1040 0 0 0 0 0 185s 898s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73100s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73200s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73300s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73400s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73500s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73600s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73700s 1040 0 0 0 0 0 185s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73800s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 73900s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74000s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74100s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74200s 1040 1 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74300s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74400s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74500s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74600s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74700s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74800s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 74900s 1040 0 0 0 0 0 186s 897s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75000s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75100s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75200s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75300s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75400s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75500s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75600s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75700s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75800s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 75900s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76000s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76100s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76200s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76300s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76400s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76500s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76600s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76700s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76800s 1040 0 0 0 0 0 186s 896s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 76900s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77000s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77100s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77200s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77300s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77400s 1040 0 0 0 0 0 186s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77500s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77600s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77700s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77800s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 77900s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78000s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78100s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78200s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78300s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78400s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78500s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78600s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78700s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78800s 1040 0 0 0 0 0 187s 895s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 78900s 1039 1 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79000s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79100s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79200s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79300s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79400s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79500s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79600s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79700s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79800s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 79900s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80000s 1039 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80100s 1038 1 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80200s 1038 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80300s 1038 1 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80400s 1038 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80500s 1038 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80600s 1038 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80700s 1038 0 0 0 0 0 187s 894s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80800s 1038 0 0 0 0 0 187s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 80900s 1038 0 0 0 0 0 187s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81000s 1038 0 0 0 0 0 187s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81100s 1038 0 0 0 0 0 187s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81200s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81300s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81400s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81500s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81600s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81700s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81800s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 81900s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82000s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82100s 1038 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82200s 1037 1 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82300s 1037 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82400s 1037 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82500s 1037 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82600s 1037 0 0 0 0 0 188s 893s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82700s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82800s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 82900s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83000s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83100s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83200s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83300s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83400s 1037 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83500s 1036 1 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83600s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83700s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83800s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 83900s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84000s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84100s 1036 1 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84200s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84300s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84400s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84500s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84600s 1036 0 0 0 0 0 188s 892s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84700s 1036 0 0 0 0 0 188s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84800s 1036 0 0 0 0 0 188s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 84900s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85000s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85100s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85200s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85300s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85400s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85500s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85600s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85700s 1036 1 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85800s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 85900s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86000s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86100s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86200s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86300s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86400s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86500s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86600s 1036 0 0 0 0 0 189s 891s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86700s 1036 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86800s 1036 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 86900s 1035 1 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87000s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87100s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87200s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87300s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87400s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87500s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87600s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87700s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87800s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 87900s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88000s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88100s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88200s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88300s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88400s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88500s 1035 0 0 0 0 0 189s 890s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88600s 1035 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88700s 1035 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88800s 1035 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 88900s 1035 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89000s 1034 1 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89100s 1034 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89200s 1034 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89300s 1033 1 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89400s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89500s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89600s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89700s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89800s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 89900s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90000s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90100s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90200s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90300s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90400s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90500s 1033 0 0 0 0 0 190s 889s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90600s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90700s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90800s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 90900s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91000s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91100s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91200s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91300s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91400s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91500s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91600s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91700s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91800s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 91900s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92000s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92100s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92200s 1033 0 0 0 0 0 190s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92300s 1033 0 0 0 0 0 191s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92400s 1033 0 0 0 0 0 191s 888s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92500s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92600s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92700s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92800s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 92900s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93000s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93100s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93200s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93300s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93400s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93500s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93600s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93700s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93800s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 93900s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94000s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94100s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94200s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94300s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94400s 1033 0 0 0 0 0 191s 887s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94500s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94600s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94700s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94800s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 94900s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95000s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95100s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95200s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95300s 1033 1 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95400s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95500s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95600s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95700s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95800s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 95900s 1033 0 0 0 0 0 191s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96000s 1033 0 0 0 0 0 192s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96100s 1033 1 0 0 0 0 192s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96200s 1033 0 0 0 0 0 192s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96300s 1033 0 0 0 0 0 192s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96400s 1033 0 0 0 0 0 192s 886s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96500s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96600s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96700s 1034 1 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96800s 1034 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 96900s 1034 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97000s 1034 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97100s 1034 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97200s 1033 1 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97300s 1033 1 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97400s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97500s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97600s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97700s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97800s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 97900s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98000s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98100s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98200s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98300s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98400s 1033 0 0 0 0 0 192s 885s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98500s 1033 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98600s 1032 1 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98700s 1032 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98800s 1031 1 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 98900s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99000s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99100s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99200s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99300s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99400s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99500s 1031 0 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99600s 1031 1 0 0 0 0 192s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99700s 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99800s 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 99900s 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1667m 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1668m 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1670m 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1672m 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1673m 1031 0 0 0 0 0 193s 884s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1675m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1677m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1678m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1680m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1682m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1683m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1685m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1687m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1688m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1690m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1692m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1693m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1695m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1697m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1698m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1700m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1702m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1703m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1705m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1707m 1031 0 0 0 0 0 193s 883s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1708m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1710m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1712m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1713m 1031 1 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1715m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1717m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1718m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1720m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1722m 1031 0 0 0 0 0 193s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1723m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1725m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1727m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1728m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1730m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1732m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1733m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1735m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1737m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1738m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1740m 1031 0 0 0 0 0 194s 882s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1742m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1743m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1745m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1747m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1748m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1750m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1752m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1753m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1755m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1757m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1758m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1760m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1762m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1763m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1765m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1767m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1768m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1770m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1772m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1773m 1031 0 0 0 0 0 194s 881s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1775m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1777m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1778m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1780m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1782m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1783m 1031 0 0 0 0 0 194s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1785m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1787m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1788m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1790m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1792m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1793m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1795m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1797m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1798m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1800m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1802m 1031 1 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1803m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1805m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1807m 1031 0 0 0 0 0 195s 880s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1808m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1810m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1812m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1813m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1815m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1817m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1818m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1820m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1822m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1823m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1825m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1827m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1828m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1830m 1031 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1832m 1032 1 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1833m 1032 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1835m 1032 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1837m 1032 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1838m 1032 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1840m 1032 0 0 0 0 0 195s 879s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1842m 1032 0 0 0 0 0 195s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1843m 1032 0 0 0 0 0 195s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1845m 1032 0 0 0 0 0 195s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1847m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1848m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1850m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1852m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1853m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1855m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1857m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1858m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1860m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1862m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1863m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1865m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1867m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1868m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1870m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1872m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1873m 1032 0 0 0 0 0 196s 878s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1875m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1877m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1878m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1880m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1882m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1883m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1885m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1887m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1888m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1890m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1892m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1893m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1895m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1897m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1898m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1900m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1902m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1903m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1905m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1907m 1032 0 0 0 0 0 196s 877s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1908m 1032 0 0 0 0 0 196s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1910m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1912m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1913m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1915m 1032 1 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1917m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1918m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1920m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1922m 1032 1 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1923m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1925m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1927m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1928m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1930m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1932m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1933m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1935m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1937m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1938m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1940m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1942m 1032 0 0 0 0 0 197s 876s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1943m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1945m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1947m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1948m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1950m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1952m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1953m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1955m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1957m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1958m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1960m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1962m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1963m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1965m 1032 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1967m 1032 1 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1968m 1031 1 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1970m 1031 0 0 0 0 0 197s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1972m 1031 0 0 0 0 0 198s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1973m 1031 0 0 0 0 0 198s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1975m 1031 0 0 0 0 0 198s 875s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1977m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1978m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1980m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1982m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1983m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1985m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1987m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1988m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1990m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1992m 1031 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1993m 1030 1 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1995m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1997m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 1998m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2000m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2002m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2003m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2005m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2007m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2008m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2010m 1030 0 0 0 0 0 198s 874s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2012m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2013m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2015m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2017m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2018m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2020m 1030 1 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2022m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2023m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2025m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2027m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2028m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2030m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2032m 1030 0 0 0 0 0 198s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2033m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2035m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2037m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2038m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2040m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2042m 1030 1 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2043m 1030 0 0 0 0 0 199s 873s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2045m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2047m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2048m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2050m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2052m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2053m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2055m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2057m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2058m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2060m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2062m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2063m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2065m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2067m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2068m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2070m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2072m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2073m 1030 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2075m 1029 1 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2077m 1029 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2078m 1029 0 0 0 0 0 199s 872s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2080m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2082m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2083m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2085m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2087m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2088m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2090m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2092m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2093m 1029 0 0 0 0 0 199s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2095m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2097m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2098m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2100m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2102m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2103m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2105m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2107m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2108m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2110m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2112m 1029 0 0 0 0 0 200s 871s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2113m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2115m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2117m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2118m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2120m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2122m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2123m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2125m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2127m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2128m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2130m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2132m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2133m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2135m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2137m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2138m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2140m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2142m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2143m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2145m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2147m 1029 0 0 0 0 0 200s 870s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2148m 1029 0 0 0 0 0 200s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2150m 1029 0 0 0 0 0 200s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2152m 1029 0 0 0 0 0 200s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2153m 1029 0 0 0 0 0 200s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2155m 1029 0 0 0 0 0 200s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2157m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2158m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2160m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2162m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2163m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2165m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2167m 1029 1 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2168m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2170m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2172m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2173m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2175m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2177m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2178m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2180m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2182m 1029 0 0 0 0 0 201s 869s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2183m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2185m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2187m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2188m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2190m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2192m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2193m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2195m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2197m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2198m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2200m 1029 1 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2202m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2203m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2205m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2207m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2208m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2210m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2212m 1029 0 0 0 0 0 201s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2213m 1029 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2215m 1029 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2217m 1029 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2218m 1029 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2220m 1029 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2222m 1028 1 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2223m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2225m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2227m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2228m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2230m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2232m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2233m 1028 0 0 0 0 0 202s 868s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2235m 1028 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2237m 1028 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2238m 1028 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2240m 1027 2 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2242m 1027 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2243m 1027 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2245m 1026 1 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2247m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2248m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2250m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2252m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2253m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2255m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2257m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2258m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2260m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2262m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2263m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2265m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2267m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2268m 1026 0 0 0 0 0 202s 867s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2270m 1026 0 0 0 0 0 202s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2272m 1026 0 0 0 0 0 202s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2273m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2275m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2277m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2278m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2280m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2282m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2283m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2285m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2287m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2288m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2290m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2292m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2293m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2295m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2297m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2298m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2300m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2302m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2303m 1026 0 0 0 0 0 203s 866s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2305m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2307m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2308m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2310m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2312m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2313m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2315m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2317m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2318m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2320m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2322m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2323m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2325m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2327m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2328m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2330m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2332m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2333m 1026 0 0 0 0 0 203s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2335m 1026 0 0 0 0 0 204s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2337m 1026 0 0 0 0 0 204s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2338m 1026 0 0 0 0 0 204s 865s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2340m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2342m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2343m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2345m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2347m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2348m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2350m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2352m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2353m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2355m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2357m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2358m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2360m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2362m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2363m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2365m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2367m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2368m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2370m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2372m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2373m 1026 0 0 0 0 0 204s 864s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2375m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2377m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2378m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2380m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2382m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2383m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2385m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2387m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2388m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2390m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2392m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2393m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2395m 1026 0 0 0 0 0 204s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2397m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2398m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2400m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2402m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2403m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2405m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2407m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2408m 1026 0 0 0 0 0 205s 863s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2410m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2412m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2413m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2415m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2417m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2418m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2420m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2422m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2423m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2425m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2427m 1026 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2428m 1025 1 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2430m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2432m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2433m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2435m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2437m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2438m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2440m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2442m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2443m 1025 0 0 0 0 0 205s 862s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2445m 1024 1 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2447m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2448m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2450m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2452m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2453m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2455m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2457m 1024 0 0 0 0 0 205s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2458m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2460m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2462m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2463m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2465m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2467m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2468m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2470m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2472m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2473m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2475m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2477m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2478m 1024 0 0 0 0 0 206s 861s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2480m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2482m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2483m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2485m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2487m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2488m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2490m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2492m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2493m 1024 1 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2495m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2497m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2498m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2500m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2502m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2503m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2505m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2507m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2508m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2510m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2512m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2513m 1024 0 0 0 0 0 206s 860s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2515m 1024 0 0 0 0 0 206s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2517m 1024 0 0 0 0 0 206s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2518m 1024 0 0 0 0 0 206s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2520m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2522m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2523m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2525m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2527m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2528m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2530m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2532m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2533m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2535m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2537m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2538m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2540m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2542m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2543m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2545m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2547m 1024 1 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2548m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2550m 1024 0 0 0 0 0 207s 859s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2552m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2553m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2555m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2557m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2558m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2560m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2562m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2563m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2565m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2567m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2568m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2570m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2572m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2573m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2575m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2577m 1024 1 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2578m 1024 0 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2580m 1024 1 0 0 0 0 207s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2582m 1024 0 0 0 0 0 208s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2583m 1024 0 0 0 0 0 208s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2585m 1024 0 0 0 0 0 208s 858s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2587m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2588m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2590m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2592m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2593m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2595m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2597m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2598m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2600m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2602m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2603m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2605m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2607m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2608m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2610m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2612m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2613m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2615m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2617m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2618m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2620m 1024 0 0 0 0 0 208s 857s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2622m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2623m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2625m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2627m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2628m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2630m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2632m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2633m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2635m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2637m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2638m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2640m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2642m 1024 0 0 0 0 0 208s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2643m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2645m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2647m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2648m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2650m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2652m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2653m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2655m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2657m 1024 0 0 0 0 0 209s 856s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2658m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2660m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2662m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2663m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2665m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2667m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2668m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2670m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2672m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2673m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2675m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2677m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2678m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2680m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2682m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2683m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2685m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2687m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2688m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2690m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2692m 1024 0 0 0 0 0 209s 855s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2693m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2695m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2697m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2698m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2700m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2702m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2703m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2705m 1024 0 0 0 0 0 209s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2707m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2708m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2710m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2712m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2713m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2715m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2717m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2718m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2720m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2722m 1024 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2723m 1025 1 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2725m 1025 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2727m 1025 0 0 0 0 0 210s 854s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2728m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2730m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2732m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2733m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2735m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2737m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2738m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2740m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2742m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2743m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2745m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2747m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2748m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2750m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2752m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2753m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2755m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2757m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2758m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2760m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2762m 1025 0 0 0 0 0 210s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2763m 1025 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2765m 1025 1 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2767m 1025 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2768m 1025 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2770m 1025 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2772m 1024 1 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2773m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2775m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2777m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2778m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2780m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2782m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2783m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2785m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2787m 1024 1 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2788m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2790m 1024 0 0 0 0 0 211s 853s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2792m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2793m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2795m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2797m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2798m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2800m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2802m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2803m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2805m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2807m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2808m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2810m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2812m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2813m 1024 0 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2815m 1024 1 0 0 0 0 211s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2817m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2818m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2820m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2822m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2823m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2825m 1024 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2827m 1023 1 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2828m 1023 1 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2830m 1023 0 0 0 0 0 212s 852s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2832m 1024 1 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2833m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2835m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2837m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2838m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2840m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2842m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2843m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2845m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2847m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2848m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2850m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2852m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2853m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2855m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2857m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2858m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2860m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2862m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2863m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2865m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2867m 1024 0 0 0 0 0 212s 851s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2868m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2870m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2872m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2873m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2875m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2877m 1024 0 0 0 0 0 212s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2878m 1024 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 4 2880m 1024 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 0s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 100s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 200s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 300s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 400s 1002 1 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 500s 1002 1 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 600s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 700s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 800s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 900s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1000s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1100s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1200s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1300s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1400s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1500s 1002 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1600s 1001 1 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1700s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1800s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1900s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2000s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2100s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2200s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2300s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2400s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2500s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2600s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2700s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2800s 1001 0 0 0 0 0 213s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2900s 1001 0 0 0 0 0 214s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3000s 1001 0 0 0 0 0 214s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3100s 1001 0 0 0 0 0 214s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3200s 1001 0 0 0 0 0 214s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3300s 1001 0 0 0 0 0 214s 850s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3400s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3500s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3600s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3700s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3800s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 3900s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4000s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4100s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4200s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4300s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4400s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4500s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4600s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4700s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4800s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 4900s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5000s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5100s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5200s 1001 1 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5300s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5400s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5500s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5600s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5700s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5800s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 5900s 1001 0 0 0 0 0 214s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6000s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6100s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6200s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6300s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6400s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6500s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6600s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6700s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6800s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 6900s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7000s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7100s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7200s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7300s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7400s 1001 0 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7500s 1000 1 0 0 0 0 215s 849s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7600s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7700s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7800s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 7900s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8000s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8100s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8200s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8300s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8400s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8500s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8600s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8700s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8800s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 8900s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9000s 1000 0 0 0 0 0 215s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9100s 1000 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9200s 1000 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9300s 999 1 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9400s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9500s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9600s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9700s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9800s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 9900s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10000s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10100s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10200s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10300s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10400s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10500s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10600s 999 1 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10700s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10800s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 10900s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11000s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11100s 999 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11200s 998 1 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11300s 998 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11400s 998 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11500s 998 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11600s 998 0 0 0 0 0 216s 848s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11700s 998 0 0 0 0 0 216s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11800s 998 0 0 0 0 0 216s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 11900s 998 0 0 0 0 0 216s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12000s 998 0 0 0 0 0 216s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12100s 998 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12200s 998 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12300s 997 1 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12400s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12500s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12600s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12700s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12800s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 12900s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13000s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13100s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13200s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13300s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13400s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13500s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13600s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13700s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13800s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 13900s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14000s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14100s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14200s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14300s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14400s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14500s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14600s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14700s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14800s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 14900s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15000s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15100s 997 0 0 0 0 0 217s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15200s 997 0 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15300s 996 1 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15400s 995 1 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15500s 995 0 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15600s 995 1 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15700s 995 0 0 0 0 0 218s 847s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15800s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 15900s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16000s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16100s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16200s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16300s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16400s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16500s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16600s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16700s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16800s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 16900s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17000s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17100s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17200s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17300s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17400s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17500s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17600s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17700s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17800s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 17900s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18000s 995 1 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18100s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18200s 995 0 0 0 0 0 218s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18300s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18400s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18500s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18600s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18700s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18800s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 18900s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19000s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19100s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19200s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19300s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19400s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19500s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19600s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19700s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19800s 995 0 0 0 0 0 219s 846s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 19900s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20000s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20100s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20200s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20300s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20400s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20500s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20600s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20700s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20800s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 20900s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21000s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21100s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21200s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21300s 995 0 0 0 0 0 219s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21400s 995 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21500s 994 1 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21600s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21700s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21800s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 21900s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22000s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22100s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22200s 994 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22300s 993 1 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22400s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22500s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22600s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22700s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22800s 993 1 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 22900s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23000s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23100s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23200s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23300s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23400s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23500s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23600s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23700s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23800s 993 0 0 0 0 0 220s 845s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 23900s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24000s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24100s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24200s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24300s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24400s 993 0 0 0 0 0 220s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24500s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24600s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24700s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24800s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 24900s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25000s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25100s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25200s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25300s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25400s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25500s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25600s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25700s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25800s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 25900s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26000s 993 1 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26100s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26200s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26300s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26400s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26500s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26600s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26700s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26800s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 26900s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27000s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27100s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27200s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27300s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27400s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27500s 993 0 0 0 0 0 221s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27600s 993 0 0 0 0 0 222s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27700s 993 0 0 0 0 0 222s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27800s 993 0 0 0 0 0 222s 844s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 27900s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28000s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28100s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28200s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28300s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28400s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28500s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28600s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28700s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28800s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 28900s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29000s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29100s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29200s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29300s 993 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29400s 992 1 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29500s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29600s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29700s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29800s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 29900s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30000s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30100s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30200s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30300s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30400s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30500s 992 0 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30600s 991 1 0 0 0 0 222s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30700s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30800s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 30900s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31000s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31100s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31200s 991 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31300s 990 1 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31400s 990 1 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31500s 990 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31600s 990 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31700s 990 0 0 0 0 0 223s 843s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31800s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 31900s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32000s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32100s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32200s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32300s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32400s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32500s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32600s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32700s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32800s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 32900s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33000s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33100s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33200s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33300s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33400s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33500s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33600s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33700s 990 0 0 0 0 0 223s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33800s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 33900s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34000s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34100s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34200s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34300s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34400s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34500s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34600s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34700s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34800s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 34900s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35000s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35100s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35200s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35300s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35400s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35500s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35600s 990 0 0 0 0 0 224s 842s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35700s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35800s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 35900s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36000s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36100s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36200s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36300s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36400s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36500s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36600s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36700s 990 0 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36800s 991 1 0 0 0 0 224s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 36900s 992 1 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37000s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37100s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37200s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37300s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37400s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37500s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37600s 992 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37700s 992 1 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37800s 993 1 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 37900s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38000s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38100s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38200s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38300s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38400s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38500s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38600s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38700s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38800s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 38900s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39000s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39100s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39200s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39300s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39400s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39500s 993 0 0 0 0 0 225s 841s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39600s 993 0 0 0 0 0 225s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39700s 993 0 0 0 0 0 225s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39800s 993 0 0 0 0 0 225s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 39900s 993 0 0 0 0 0 225s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40000s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40100s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40200s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40300s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40400s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40500s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40600s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40700s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40800s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 40900s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41000s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41100s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41200s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41300s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41400s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41500s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41600s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41700s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41800s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 41900s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42000s 993 1 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42100s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42200s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42300s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42400s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42500s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42600s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42700s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42800s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 42900s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43000s 993 0 0 0 0 0 226s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43100s 993 0 0 0 0 0 227s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43200s 993 0 0 0 0 0 227s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43300s 993 0 0 0 0 0 227s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43400s 993 0 0 0 0 0 227s 840s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43500s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43600s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43700s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43800s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 43900s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44000s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44100s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44200s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44300s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44400s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44500s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44600s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44700s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44800s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 44900s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45000s 992 1 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45100s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45200s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45300s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45400s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45500s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45600s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45700s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45800s 992 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 45900s 993 1 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46000s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46100s 993 0 0 0 0 0 227s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46200s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46300s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46400s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46500s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46600s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46700s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46800s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 46900s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47000s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47100s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47200s 993 0 0 0 0 0 228s 839s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47300s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47400s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47500s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47600s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47700s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47800s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 47900s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48000s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48100s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48200s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48300s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48400s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48500s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48600s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48700s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48800s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 48900s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49000s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49100s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49200s 993 0 0 0 0 0 228s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49300s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49400s 993 1 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49500s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49600s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49700s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49800s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 49900s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50000s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50100s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50200s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50300s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50400s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50500s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50600s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50700s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50800s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 50900s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51000s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51100s 993 0 0 0 0 0 229s 838s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51200s 993 1 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51300s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51400s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51500s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51600s 993 1 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51700s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51800s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 51900s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52000s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52100s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52200s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52300s 993 0 0 0 0 0 229s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52400s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52500s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52600s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52700s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52800s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 52900s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53000s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53100s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53200s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53300s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53400s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53500s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53600s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53700s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53800s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 53900s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54000s 993 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54100s 992 1 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54200s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54300s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54400s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54500s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54600s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54700s 992 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54800s 991 1 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 54900s 991 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55000s 991 0 0 0 0 0 230s 837s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55100s 991 0 0 0 0 0 230s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55200s 991 0 0 0 0 0 230s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55300s 991 0 0 0 0 0 230s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55400s 991 0 0 0 0 0 230s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55500s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55600s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55700s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55800s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 55900s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56000s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56100s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56200s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56300s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56400s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56500s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56600s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56700s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56800s 991 1 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 56900s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57000s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57100s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57200s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57300s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57400s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57500s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57600s 991 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57700s 990 1 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57800s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 57900s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58000s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58100s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58200s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58300s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58400s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58500s 990 0 0 0 0 0 231s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58600s 990 0 0 0 0 0 232s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58700s 990 0 0 0 0 0 232s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58800s 990 0 0 0 0 0 232s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 58900s 990 0 0 0 0 0 232s 836s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59000s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59100s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59200s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59300s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59400s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59500s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59600s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59700s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59800s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 59900s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60000s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60100s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60200s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60300s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60400s 990 1 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60500s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60600s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60700s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60800s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 60900s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61000s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61100s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61200s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61300s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61400s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61500s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61600s 990 0 0 0 0 0 232s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61700s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61800s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 61900s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62000s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62100s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62200s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62300s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62400s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62500s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62600s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62700s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62800s 990 0 0 0 0 0 233s 835s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 62900s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63000s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63100s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63200s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63300s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63400s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63500s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63600s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63700s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63800s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 63900s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64000s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64100s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64200s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64300s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64400s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64500s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64600s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64700s 990 0 0 0 0 0 233s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64800s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 64900s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65000s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65100s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65200s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65300s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65400s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65500s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65600s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65700s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65800s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 65900s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66000s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66100s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66200s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66300s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66400s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66500s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66600s 990 0 0 0 0 0 234s 834s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66700s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66800s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 66900s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67000s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67100s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67200s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67300s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67400s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67500s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67600s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67700s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67800s 990 0 0 0 0 0 234s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 67900s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68000s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68100s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68200s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68300s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68400s 990 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68500s 989 1 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68600s 989 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68700s 988 1 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68800s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 68900s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69000s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69100s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69200s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69300s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69400s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69500s 988 1 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69600s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69700s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69800s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 69900s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70000s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70100s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70200s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70300s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70400s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70500s 988 0 0 0 0 0 235s 833s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70600s 988 0 0 0 0 0 235s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70700s 988 0 0 0 0 0 235s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70800s 988 0 0 0 0 0 235s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 70900s 988 0 0 0 0 0 235s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71000s 987 1 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71100s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71200s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71300s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71400s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71500s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71600s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71700s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71800s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 71900s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72000s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72100s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72200s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72300s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72400s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72500s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72600s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72700s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72800s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 72900s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73000s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73100s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73200s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73300s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73400s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73500s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73600s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73700s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73800s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 73900s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74000s 987 0 0 0 0 0 236s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74100s 987 0 0 0 0 0 237s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74200s 987 0 0 0 0 0 237s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74300s 987 0 0 0 0 0 237s 832s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74400s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74500s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74600s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74700s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74800s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 74900s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75000s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75100s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75200s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75300s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75400s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75500s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75600s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75700s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75800s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 75900s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76000s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76100s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76200s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76300s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76400s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76500s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76600s 987 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76700s 986 1 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76800s 986 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 76900s 986 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77000s 986 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77100s 986 0 0 0 0 0 237s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77200s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77300s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77400s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77500s 986 1 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77600s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77700s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77800s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 77900s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78000s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78100s 986 0 0 0 0 0 238s 831s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78200s 986 1 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78300s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78400s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78500s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78600s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78700s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78800s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 78900s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79000s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79100s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79200s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79300s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79400s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79500s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79600s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79700s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79800s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 79900s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80000s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80100s 986 0 0 0 0 0 238s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80200s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80300s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80400s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80500s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80600s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80700s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80800s 986 1 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 80900s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81000s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81100s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81200s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81300s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81400s 986 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81500s 985 1 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81600s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81700s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81800s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 81900s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82000s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82100s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82200s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82300s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82400s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82500s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82600s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82700s 985 0 0 0 0 0 239s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82800s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 82900s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83000s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83100s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83200s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83300s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83400s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83500s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83600s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83700s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83800s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 83900s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84000s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84100s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84200s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84300s 985 0 0 0 0 0 240s 830s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84400s 985 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84500s 985 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84600s 985 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84700s 984 1 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84800s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 84900s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85000s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85100s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85200s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85300s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85400s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85500s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85600s 984 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85700s 983 1 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85800s 983 0 0 0 0 0 240s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 85900s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86000s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86100s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86200s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86300s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86400s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86500s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86600s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86700s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86800s 983 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 86900s 982 1 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87000s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87100s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87200s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87300s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87400s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87500s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87600s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87700s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87800s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 87900s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88000s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88100s 982 0 0 0 0 0 241s 829s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88200s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88300s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88400s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88500s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88600s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88700s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88800s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 88900s 982 0 0 0 0 0 241s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89000s 982 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89100s 982 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89200s 983 1 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89300s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89400s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89500s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89600s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89700s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89800s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 89900s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90000s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90100s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90200s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90300s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90400s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90500s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90600s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90700s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90800s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 90900s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91000s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91100s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91200s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91300s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91400s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91500s 983 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91600s 982 1 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91700s 982 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91800s 982 0 0 0 0 0 242s 828s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 91900s 982 0 0 0 0 0 242s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92000s 982 0 0 0 0 0 242s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92100s 982 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92200s 982 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92300s 982 1 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92400s 982 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92500s 981 1 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92600s 981 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92700s 981 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92800s 980 1 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 92900s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93000s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93100s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93200s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93300s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93400s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93500s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93600s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93700s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93800s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 93900s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94000s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94100s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94200s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94300s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94400s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94500s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94600s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94700s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94800s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 94900s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95000s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95100s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95200s 980 0 0 0 0 0 243s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95300s 980 0 0 0 0 0 244s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95400s 980 0 0 0 0 0 244s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95500s 980 0 0 0 0 0 244s 827s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95600s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95700s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95800s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 95900s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96000s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96100s 980 1 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96200s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96300s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96400s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96500s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96600s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96700s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96800s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 96900s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97000s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97100s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97200s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97300s 980 1 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97400s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97500s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97600s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97700s 980 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97800s 979 1 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 97900s 979 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98000s 979 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98100s 979 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98200s 979 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98300s 979 0 0 0 0 0 244s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98400s 979 1 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98500s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98600s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98700s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98800s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 98900s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99000s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99100s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99200s 979 0 0 0 0 0 245s 826s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99300s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99400s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99500s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99600s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99700s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99800s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 99900s 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1667m 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1668m 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1670m 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1672m 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1673m 979 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1675m 977 2 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1677m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1678m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1680m 977 1 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1682m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1683m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1685m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1687m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1688m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1690m 977 0 0 0 0 0 245s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1692m 977 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1693m 977 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1695m 977 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1697m 976 1 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1698m 976 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1700m 976 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1702m 976 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1703m 975 1 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1705m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1707m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1708m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1710m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1712m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1713m 975 0 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1715m 975 1 0 0 0 0 246s 825s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1717m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1718m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1720m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1722m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1723m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1725m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1727m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1728m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1730m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1732m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1733m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1735m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1737m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1738m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1740m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1742m 975 0 0 0 0 0 246s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1743m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1745m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1747m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1748m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1750m 975 1 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1752m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1753m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1755m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1757m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1758m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1760m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1762m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1763m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1765m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1767m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1768m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1770m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1772m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1773m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1775m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1777m 975 0 0 0 0 0 247s 824s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1778m 975 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1780m 975 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1782m 975 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1783m 974 1 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1785m 974 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1787m 974 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1788m 974 1 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1790m 974 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1792m 974 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1793m 974 0 0 0 0 0 247s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1795m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1797m 974 1 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1798m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1800m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1802m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1803m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1805m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1807m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1808m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1810m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1812m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1813m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1815m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1817m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1818m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1820m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1822m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1823m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1825m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1827m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1828m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1830m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1832m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1833m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1835m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1837m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1838m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1840m 974 0 0 0 0 0 248s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1842m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1843m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1845m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1847m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1848m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1850m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1852m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1853m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1855m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1857m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1858m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1860m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1862m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1863m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1865m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1867m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1868m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1870m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1872m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1873m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1875m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1877m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1878m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1880m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1882m 974 0 0 0 0 0 249s 823s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1883m 974 0 0 0 0 0 249s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1885m 974 0 0 0 0 0 249s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1887m 973 1 0 0 0 0 249s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1888m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1890m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1892m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1893m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1895m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1897m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1898m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1900m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1902m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1903m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1905m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1907m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1908m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1910m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1912m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1913m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1915m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1917m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1918m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1920m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1922m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1923m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1925m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1927m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1928m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1930m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1932m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1933m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1935m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1937m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1938m 973 0 0 0 0 0 250s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1940m 973 0 0 0 0 0 251s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1942m 973 0 0 0 0 0 251s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1943m 973 0 0 0 0 0 251s 822s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1945m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1947m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1948m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1950m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1952m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1953m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1955m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1957m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1958m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1960m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1962m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1963m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1965m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1967m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1968m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1970m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1972m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1973m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1975m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1977m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1978m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1980m 973 1 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1982m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1983m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1985m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1987m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1988m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1990m 973 0 0 0 0 0 251s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1992m 973 1 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1993m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1995m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1997m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 1998m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2000m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2002m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2003m 973 0 0 0 0 0 252s 821s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2005m 973 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2007m 972 1 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2008m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2010m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2012m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2013m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2015m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2017m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2018m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2020m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2022m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2023m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2025m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2027m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2028m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2030m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2032m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2033m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2035m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2037m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2038m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2040m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2042m 972 0 0 0 0 0 252s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2043m 972 1 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2045m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2047m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2048m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2050m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2052m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2053m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2055m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2057m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2058m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2060m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2062m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2063m 972 0 0 0 0 0 253s 820s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2065m 971 1 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2067m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2068m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2070m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2072m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2073m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2075m 971 1 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2077m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2078m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2080m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2082m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2083m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2085m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2087m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2088m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2090m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2092m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2093m 971 0 0 0 0 0 253s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2095m 970 1 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2097m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2098m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2100m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2102m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2103m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2105m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2107m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2108m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2110m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2112m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2113m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2115m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2117m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2118m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2120m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2122m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2123m 970 0 0 0 0 0 254s 819s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2125m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2127m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2128m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2130m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2132m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2133m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2135m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2137m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2138m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2140m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2142m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2143m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2145m 970 0 0 0 0 0 254s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2147m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2148m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2150m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2152m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2153m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2155m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2157m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2158m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2160m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2162m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2163m 970 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2165m 969 1 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2167m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2168m 969 1 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2170m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2172m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2173m 969 2 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2175m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2177m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2178m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2180m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2182m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2183m 969 0 0 0 0 0 255s 818s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2185m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2187m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2188m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2190m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2192m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2193m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2195m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2197m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2198m 969 0 0 0 0 0 255s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2200m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2202m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2203m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2205m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2207m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2208m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2210m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2212m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2213m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2215m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2217m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2218m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2220m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2222m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2223m 969 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2225m 968 1 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2227m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2228m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2230m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2232m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2233m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2235m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2237m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2238m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2240m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2242m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2243m 968 0 0 0 0 0 256s 817s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2245m 968 1 0 0 0 0 256s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2247m 968 0 0 0 0 0 256s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2248m 968 0 0 0 0 0 256s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2250m 968 0 0 0 0 0 256s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2252m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2253m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2255m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2257m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2258m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2260m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2262m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2263m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2265m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2267m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2268m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2270m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2272m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2273m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2275m 968 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2277m 967 1 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2278m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2280m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2282m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2283m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2285m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2287m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2288m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2290m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2292m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2293m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2295m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2297m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2298m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2300m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2302m 967 0 0 0 0 0 257s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2303m 967 0 0 0 0 0 258s 816s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2305m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2307m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2308m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2310m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2312m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2313m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2315m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2317m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2318m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2320m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2322m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2323m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2325m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2327m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2328m 967 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2330m 966 1 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2332m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2333m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2335m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2337m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2338m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2340m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2342m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2343m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2345m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2347m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2348m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2350m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2352m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2353m 966 0 0 0 0 0 258s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2355m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2357m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2358m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2360m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2362m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2363m 966 0 0 0 0 0 259s 815s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2365m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2367m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2368m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2370m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2372m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2373m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2375m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2377m 966 1 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2378m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2380m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2382m 966 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2383m 965 1 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2385m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2387m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2388m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2390m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2392m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2393m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2395m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2397m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2398m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2400m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2402m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2403m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2405m 965 0 0 0 0 0 259s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2407m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2408m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2410m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2412m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2413m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2415m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2417m 965 1 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2418m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2420m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2422m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2423m 965 0 0 0 0 0 260s 814s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2425m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2427m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2428m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2430m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2432m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2433m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2435m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2437m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2438m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2440m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2442m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2443m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2445m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2447m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2448m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2450m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2452m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2453m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2455m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2457m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2458m 965 0 0 0 0 0 260s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2460m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2462m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2463m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2465m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2467m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2468m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2470m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2472m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2473m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2475m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2477m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2478m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2480m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2482m 965 0 0 0 0 0 261s 813s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2483m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2485m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2487m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2488m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2490m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2492m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2493m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2495m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2497m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2498m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2500m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2502m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2503m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2505m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2507m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2508m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2510m 965 0 0 0 0 0 261s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2512m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2513m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2515m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2517m 965 1 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2518m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2520m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2522m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2523m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2525m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2527m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2528m 965 1 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2530m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2532m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2533m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2535m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2537m 965 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2538m 964 1 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2540m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2542m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2543m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2545m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2547m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2548m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2550m 964 0 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2552m 963 1 0 0 0 0 262s 812s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2553m 963 0 0 0 0 0 262s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2555m 963 1 0 0 0 0 262s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2557m 963 0 0 0 0 0 262s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2558m 963 0 0 0 0 0 262s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2560m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2562m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2563m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2565m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2567m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2568m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2570m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2572m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2573m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2575m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2577m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2578m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2580m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2582m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2583m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2585m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2587m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2588m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2590m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2592m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2593m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2595m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2597m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2598m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2600m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2602m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2603m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2605m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2607m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2608m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2610m 963 0 0 0 0 0 263s 811s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2612m 963 0 0 0 0 0 263s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2613m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2615m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2617m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2618m 962 1 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2620m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2622m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2623m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2625m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2627m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2628m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2630m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2632m 962 1 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2633m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2635m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2637m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2638m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2640m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2642m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2643m 962 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2645m 963 1 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2647m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2648m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2650m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2652m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2653m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2655m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2657m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2658m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2660m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2662m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2663m 963 0 0 0 0 0 264s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2665m 963 0 0 0 0 0 265s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2667m 963 0 0 0 0 0 265s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2668m 963 0 0 0 0 0 265s 810s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2670m 963 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2672m 963 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2673m 964 1 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2675m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2677m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2678m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2680m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2682m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2683m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2685m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2687m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2688m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2690m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2692m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2693m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2695m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2697m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2698m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2700m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2702m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2703m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2705m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2707m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2708m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2710m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2712m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2713m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2715m 964 0 0 0 0 0 265s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2717m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2718m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2720m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2722m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2723m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2725m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2727m 964 0 0 0 0 0 266s 809s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2728m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2730m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2732m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2733m 964 1 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2735m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2737m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2738m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2740m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2742m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2743m 964 1 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2745m 964 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2747m 963 1 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2748m 963 1 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2750m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2752m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2753m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2755m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2757m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2758m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2760m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2762m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2763m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2765m 963 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2767m 962 1 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2768m 962 0 0 0 0 0 266s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2770m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2772m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2773m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2775m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2777m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2778m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2780m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2782m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2783m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2785m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2787m 962 0 0 0 0 0 267s 808s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2788m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2790m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2792m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2793m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2795m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2797m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2798m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2800m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2802m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2803m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2805m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2807m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2808m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2810m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2812m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2813m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2815m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2817m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2818m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2820m 962 0 0 0 0 0 267s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2822m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2823m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2825m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2827m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2828m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2830m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2832m 962 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2833m 961 1 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2835m 961 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2837m 961 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2838m 961 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2840m 961 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2842m 961 0 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2843m 961 1 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2845m 960 1 0 0 0 0 268s 807s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2847m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2848m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2850m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2852m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2853m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2855m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2857m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2858m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2860m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2862m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2863m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2865m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2867m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2868m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2870m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2872m 960 0 0 0 0 0 268s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2873m 960 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2875m 960 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2877m 960 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2878m 960 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 5 2880m 960 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 0s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 100s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 200s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 300s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 400s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 500s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 600s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 700s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 800s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 900s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1000s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1100s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1200s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1300s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1400s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1500s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1600s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1700s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1800s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1900s 969 0 0 0 0 0 269s 806s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2000s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2100s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2200s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2300s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2400s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2500s 969 0 0 0 0 0 269s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2600s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2700s 969 1 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2800s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2900s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3000s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3100s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3200s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3300s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3400s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3500s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3600s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3700s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3800s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 3900s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4000s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4100s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4200s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4300s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4400s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4500s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4600s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4700s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4800s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 4900s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5000s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5100s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5200s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5300s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5400s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5500s 969 0 0 0 0 0 270s 805s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5600s 969 0 0 0 0 0 270s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5700s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5800s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 5900s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6000s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6100s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6200s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6300s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6400s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6500s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6600s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6700s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6800s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 6900s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7000s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7100s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7200s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7300s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7400s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7500s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7600s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7700s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7800s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 7900s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8000s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8100s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8200s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8300s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8400s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8500s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8600s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8700s 969 0 0 0 0 0 271s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8800s 969 0 0 0 0 0 272s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 8900s 969 0 0 0 0 0 272s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9000s 968 1 0 0 0 0 272s 804s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9100s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9200s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9300s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9400s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9500s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9600s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9700s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9800s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 9900s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10000s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10100s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10200s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10300s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10400s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10500s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10600s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10700s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10800s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 10900s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11000s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11100s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11200s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11300s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11400s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11500s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11600s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11700s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11800s 968 0 0 0 0 0 272s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 11900s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12000s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12100s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12200s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12300s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12400s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12500s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12600s 968 0 0 0 0 0 273s 803s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12700s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12800s 968 1 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 12900s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13000s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13100s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13200s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13300s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13400s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13500s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13600s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13700s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13800s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 13900s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14000s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14100s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14200s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14300s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14400s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14500s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14600s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14700s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14800s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 14900s 968 0 0 0 0 0 273s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15000s 968 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15100s 968 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15200s 967 1 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15300s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15400s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15500s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15600s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15700s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15800s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 15900s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16000s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16100s 967 0 0 0 0 0 274s 802s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16200s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16300s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16400s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16500s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16600s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16700s 967 1 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16800s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 16900s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17000s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17100s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17200s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17300s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17400s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17500s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17600s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17700s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17800s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 17900s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18000s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18100s 967 0 0 0 0 0 274s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18200s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18300s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18400s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18500s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18600s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18700s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18800s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 18900s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19000s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19100s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19200s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19300s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19400s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19500s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19600s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19700s 967 0 0 0 0 0 275s 801s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19800s 967 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 19900s 966 1 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20000s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20100s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20200s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20300s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20400s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20500s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20600s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20700s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20800s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 20900s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21000s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21100s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21200s 966 0 0 0 0 0 275s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21300s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21400s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21500s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21600s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21700s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21800s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 21900s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22000s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22100s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22200s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22300s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22400s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22500s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22600s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22700s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22800s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 22900s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23000s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23100s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23200s 966 0 0 0 0 0 276s 800s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23300s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23400s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23500s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23600s 966 1 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23700s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23800s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 23900s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24000s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24100s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24200s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24300s 966 0 0 0 0 0 276s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24400s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24500s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24600s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24700s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24800s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 24900s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25000s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25100s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25200s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25300s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25400s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25500s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25600s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25700s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25800s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 25900s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26000s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26100s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26200s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26300s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26400s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26500s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26600s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26700s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26800s 966 0 0 0 0 0 277s 799s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 26900s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27000s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27100s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27200s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27300s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27400s 966 0 0 0 0 0 277s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27500s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27600s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27700s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27800s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 27900s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28000s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28100s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28200s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28300s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28400s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28500s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28600s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28700s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28800s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 28900s 966 1 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29000s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29100s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29200s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29300s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29400s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29500s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29600s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29700s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29800s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 29900s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30000s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30100s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30200s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30300s 966 0 0 0 0 0 278s 798s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30400s 966 0 0 0 0 0 278s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30500s 966 0 0 0 0 0 278s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30600s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30700s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30800s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 30900s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31000s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31100s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31200s 966 1 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31300s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31400s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31500s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31600s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31700s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31800s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 31900s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32000s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32100s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32200s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32300s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32400s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32500s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32600s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32700s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32800s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 32900s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33000s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33100s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33200s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33300s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33400s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33500s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33600s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33700s 966 0 0 0 0 0 279s 797s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33800s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 33900s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34000s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34100s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34200s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34300s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34400s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34500s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34600s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34700s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34800s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 34900s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35000s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35100s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35200s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35300s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35400s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35500s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35600s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35700s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35800s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 35900s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36000s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36100s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36200s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36300s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36400s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36500s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36600s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36700s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36800s 966 0 0 0 0 0 280s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 36900s 966 0 0 0 0 0 281s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37000s 966 0 0 0 0 0 281s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37100s 966 0 0 0 0 0 281s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37200s 966 0 0 0 0 0 281s 796s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37300s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37400s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37500s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37600s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37700s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37800s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 37900s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38000s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38100s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38200s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38300s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38400s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38500s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38600s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38700s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38800s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 38900s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39000s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39100s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39200s 966 1 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39300s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39400s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39500s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39600s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39700s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39800s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 39900s 966 0 0 0 0 0 281s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40000s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40100s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40200s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40300s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40400s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40500s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40600s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40700s 966 0 0 0 0 0 282s 795s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40800s 966 1 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 40900s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41000s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41100s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41200s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41300s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41400s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41500s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41600s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41700s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41800s 966 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 41900s 965 1 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42000s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42100s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42200s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42300s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42400s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42500s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42600s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42700s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42800s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 42900s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43000s 965 0 0 0 0 0 282s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43100s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43200s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43300s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43400s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43500s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43600s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43700s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43800s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 43900s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44000s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44100s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44200s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44300s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44400s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44500s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44600s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44700s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44800s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 44900s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45000s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45100s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45200s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45300s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45400s 965 0 0 0 0 0 283s 794s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45500s 965 0 0 0 0 0 283s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45600s 965 0 0 0 0 0 283s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45700s 965 0 0 0 0 0 283s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45800s 965 0 0 0 0 0 283s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 45900s 965 1 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46000s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46100s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46200s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46300s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46400s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46500s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46600s 965 1 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46700s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46800s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 46900s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47000s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47100s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47200s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47300s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47400s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47500s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47600s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47700s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47800s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 47900s 965 1 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48000s 965 1 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48100s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48200s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48300s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48400s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48500s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48600s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48700s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48800s 965 0 0 0 0 0 284s 793s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 48900s 965 0 0 0 0 0 284s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49000s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49100s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49200s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49300s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49400s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49500s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49600s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49700s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49800s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 49900s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50000s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50100s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50200s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50300s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50400s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50500s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50600s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50700s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50800s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 50900s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51000s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51100s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51200s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51300s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51400s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51500s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51600s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51700s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51800s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 51900s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52000s 965 0 0 0 0 0 285s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52100s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52200s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52300s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52400s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52500s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52600s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52700s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52800s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 52900s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53000s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53100s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53200s 965 0 0 0 0 0 286s 792s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53300s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53400s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53500s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53600s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53700s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53800s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 53900s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54000s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54100s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54200s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54300s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54400s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54500s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54600s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54700s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54800s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 54900s 965 0 0 0 0 0 286s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55000s 965 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55100s 965 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55200s 964 1 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55300s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55400s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55500s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55600s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55700s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55800s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 55900s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56000s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56100s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56200s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56300s 964 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56400s 963 1 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56500s 963 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56600s 963 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56700s 963 0 0 0 0 0 287s 791s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56800s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 56900s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57000s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57100s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57200s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57300s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57400s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57500s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57600s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57700s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57800s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 57900s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58000s 963 0 0 0 0 0 287s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58100s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58200s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58300s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58400s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58500s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58600s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58700s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58800s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 58900s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59000s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59100s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59200s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59300s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59400s 963 1 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59500s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59600s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59700s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59800s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 59900s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60000s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60100s 963 0 0 0 0 0 288s 790s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60200s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60300s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60400s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60500s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60600s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60700s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60800s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 60900s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61000s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61100s 963 0 0 0 0 0 288s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61200s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61300s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61400s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61500s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61600s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61700s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61800s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 61900s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62000s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62100s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62200s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62300s 963 2 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62400s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62500s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62600s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62700s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62800s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 62900s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63000s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63100s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63200s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63300s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63400s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63500s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63600s 963 0 0 0 0 0 289s 789s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63700s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63800s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 63900s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64000s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64100s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64200s 963 0 0 0 0 0 289s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64300s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64400s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64500s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64600s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64700s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64800s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 64900s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65000s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65100s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65200s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65300s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65400s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65500s 963 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65600s 962 1 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65700s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65800s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 65900s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66000s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66100s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66200s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66300s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66400s 962 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66500s 961 1 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66600s 961 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66700s 961 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66800s 961 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 66900s 961 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67000s 961 0 0 0 0 0 290s 788s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67100s 961 0 0 0 0 0 290s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67200s 961 0 0 0 0 0 290s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67300s 961 0 0 0 0 0 290s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67400s 961 0 0 0 0 0 290s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67500s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67600s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67700s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67800s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 67900s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68000s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68100s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68200s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68300s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68400s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68500s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68600s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68700s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68800s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 68900s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69000s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69100s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69200s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69300s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69400s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69500s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69600s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69700s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69800s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 69900s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70000s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70100s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70200s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70300s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70400s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70500s 961 0 0 0 0 0 291s 787s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70600s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70700s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70800s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 70900s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71000s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71100s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71200s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71300s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71400s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71500s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71600s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71700s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71800s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 71900s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72000s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72100s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72200s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72300s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72400s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72500s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72600s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72700s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72800s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 72900s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73000s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73100s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73200s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73300s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73400s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73500s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73600s 961 0 0 0 0 0 292s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73700s 961 0 0 0 0 0 293s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73800s 961 0 0 0 0 0 293s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 73900s 960 1 0 0 0 0 293s 786s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74000s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74100s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74200s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74300s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74400s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74500s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74600s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74700s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74800s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 74900s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75000s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75100s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75200s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75300s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75400s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75500s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75600s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75700s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75800s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 75900s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76000s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76100s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76200s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76300s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76400s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76500s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76600s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76700s 960 0 0 0 0 0 293s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76800s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 76900s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77000s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77100s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77200s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77300s 960 0 0 0 0 0 294s 785s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77400s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77500s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77600s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77700s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77800s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 77900s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78000s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78100s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78200s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78300s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78400s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78500s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78600s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78700s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78800s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 78900s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79000s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79100s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79200s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79300s 960 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79400s 959 1 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79500s 958 1 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79600s 958 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79700s 958 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79800s 958 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 79900s 958 0 0 0 0 0 294s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80000s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80100s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80200s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80300s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80400s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80500s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80600s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80700s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80800s 958 0 0 0 0 0 295s 784s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 80900s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81000s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81100s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81200s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81300s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81400s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81500s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81600s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81700s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81800s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 81900s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82000s 958 1 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82100s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82200s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82300s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82400s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82500s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82600s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82700s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82800s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 82900s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83000s 958 0 0 0 0 0 295s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83100s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83200s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83300s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83400s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83500s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83600s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83700s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83800s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 83900s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84000s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84100s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84200s 958 0 0 0 0 0 296s 783s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84300s 958 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84400s 958 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84500s 957 1 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84600s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84700s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84800s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 84900s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85000s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85100s 957 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85200s 956 1 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85300s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85400s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85500s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85600s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85700s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85800s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 85900s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86000s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86100s 956 0 0 0 0 0 296s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86200s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86300s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86400s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86500s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86600s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86700s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86800s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 86900s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87000s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87100s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87200s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87300s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87400s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87500s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87600s 956 0 0 0 0 0 297s 782s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87700s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87800s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 87900s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88000s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88100s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88200s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88300s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88400s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88500s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88600s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88700s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88800s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 88900s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89000s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89100s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89200s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89300s 956 0 0 0 0 0 297s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89400s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89500s 956 1 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89600s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89700s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89800s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 89900s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90000s 956 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90100s 955 1 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90200s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90300s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90400s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90500s 955 1 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90600s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90700s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90800s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 90900s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91000s 955 0 0 0 0 0 298s 781s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91100s 955 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91200s 955 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91300s 954 1 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91400s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91500s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91600s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91700s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91800s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 91900s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92000s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92100s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92200s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92300s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92400s 954 0 0 0 0 0 298s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92500s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92600s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92700s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92800s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 92900s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93000s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93100s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93200s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93300s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93400s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93500s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93600s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93700s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93800s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 93900s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94000s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94100s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94200s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94300s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94400s 954 0 0 0 0 0 299s 780s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94500s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94600s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94700s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94800s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 94900s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95000s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95100s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95200s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95300s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95400s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95500s 954 0 0 0 0 0 299s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95600s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95700s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95800s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 95900s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96000s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96100s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96200s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96300s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96400s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96500s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96600s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96700s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96800s 954 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 96900s 953 1 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97000s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97100s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97200s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97300s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97400s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97500s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97600s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97700s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97800s 953 0 0 0 0 0 300s 779s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 97900s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98000s 953 2 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98100s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98200s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98300s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98400s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98500s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98600s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98700s 953 0 0 0 0 0 300s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98800s 953 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 98900s 953 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99000s 953 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99100s 953 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99200s 952 1 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99300s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99400s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99500s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99600s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99700s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99800s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 99900s 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1667m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1668m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1670m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1672m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1673m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1675m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1677m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1678m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1680m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1682m 952 1 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1683m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1685m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1687m 952 0 0 0 0 0 301s 778s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1688m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1690m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1692m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1693m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1695m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1697m 952 0 0 0 0 0 301s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1698m 952 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1700m 952 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1702m 952 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1703m 952 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1705m 952 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1707m 951 1 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1708m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1710m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1712m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1713m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1715m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1717m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1718m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1720m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1722m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1723m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1725m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1727m 951 1 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1728m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1730m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1732m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1733m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1735m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1737m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1738m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1740m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1742m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1743m 951 0 0 0 0 0 302s 777s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1745m 951 0 0 0 0 0 302s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1747m 951 0 0 0 0 0 302s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1748m 950 1 0 0 0 0 302s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1750m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1752m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1753m 950 1 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1755m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1757m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1758m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1760m 949 1 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1762m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1763m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1765m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1767m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1768m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1770m 949 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1772m 950 1 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1773m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1775m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1777m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1778m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1780m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1782m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1783m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1785m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1787m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1788m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1790m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1792m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1793m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1795m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1797m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1798m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1800m 950 0 0 0 0 0 303s 776s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1802m 950 0 0 0 0 0 303s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1803m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1805m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1807m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1808m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1810m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1812m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1813m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1815m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1817m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1818m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1820m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1822m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1823m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1825m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1827m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1828m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1830m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1832m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1833m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1835m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1837m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1838m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1840m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1842m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1843m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1845m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1847m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1848m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1850m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1852m 950 0 0 0 0 0 304s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1853m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1855m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1857m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1858m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1860m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1862m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1863m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1865m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1867m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1868m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1870m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1872m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1873m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1875m 950 0 0 0 0 0 305s 775s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1877m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1878m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1880m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1882m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1883m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1885m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1887m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1888m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1890m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1892m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1893m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1895m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1897m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1898m 950 0 0 0 0 0 305s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1900m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1902m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1903m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1905m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1907m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1908m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1910m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1912m 950 1 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1913m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1915m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1917m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1918m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1920m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1922m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1923m 951 1 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1925m 951 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1927m 951 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1928m 951 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1930m 951 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1932m 950 1 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1933m 950 0 0 0 0 0 306s 774s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1935m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1937m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1938m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1940m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1942m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1943m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1945m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1947m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1948m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1950m 950 0 0 0 0 0 306s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1952m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1953m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1955m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1957m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1958m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1960m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1962m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1963m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1965m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1967m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1968m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1970m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1972m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1973m 950 1 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1975m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1977m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1978m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1980m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1982m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1983m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1985m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1987m 950 1 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1988m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1990m 950 0 0 0 0 0 307s 773s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1992m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1993m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1995m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1997m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 1998m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2000m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2002m 950 0 0 0 0 0 307s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2003m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2005m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2007m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2008m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2010m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2012m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2013m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2015m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2017m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2018m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2020m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2022m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2023m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2025m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2027m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2028m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2030m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2032m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2033m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2035m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2037m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2038m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2040m 950 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2042m 949 1 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2043m 949 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2045m 949 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2047m 949 0 0 0 0 0 308s 772s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2048m 949 0 0 0 0 0 308s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2050m 949 0 0 0 0 0 308s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2052m 949 0 0 0 0 0 308s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2053m 949 0 0 0 0 0 308s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2055m 949 0 0 0 0 0 308s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2057m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2058m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2060m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2062m 949 1 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2063m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2065m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2067m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2068m 950 1 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2070m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2072m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2073m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2075m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2077m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2078m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2080m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2082m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2083m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2085m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2087m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2088m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2090m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2092m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2093m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2095m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2097m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2098m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2100m 950 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2102m 949 1 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2103m 949 0 0 0 0 0 309s 771s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2105m 949 0 0 0 0 0 309s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2107m 949 0 0 0 0 0 309s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2108m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2110m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2112m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2113m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2115m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2117m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2118m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2120m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2122m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2123m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2125m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2127m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2128m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2130m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2132m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2133m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2135m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2137m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2138m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2140m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2142m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2143m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2145m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2147m 949 1 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2148m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2150m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2152m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2153m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2155m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2157m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2158m 949 0 0 0 0 0 310s 770s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2160m 949 0 0 0 0 0 310s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2162m 949 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2163m 949 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2165m 949 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2167m 948 1 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2168m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2170m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2172m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2173m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2175m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2177m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2178m 948 1 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2180m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2182m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2183m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2185m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2187m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2188m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2190m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2192m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2193m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2195m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2197m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2198m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2200m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2202m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2203m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2205m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2207m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2208m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2210m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2212m 948 0 0 0 0 0 311s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2213m 948 0 0 0 0 0 312s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2215m 948 0 0 0 0 0 312s 769s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2217m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2218m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2220m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2222m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2223m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2225m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2227m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2228m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2230m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2232m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2233m 948 2 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2235m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2237m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2238m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2240m 948 1 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2242m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2243m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2245m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2247m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2248m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2250m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2252m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2253m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2255m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2257m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2258m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2260m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2262m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2263m 948 0 0 0 0 0 312s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2265m 948 0 0 0 0 0 313s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2267m 948 0 0 0 0 0 313s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2268m 948 0 0 0 0 0 313s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2270m 948 0 0 0 0 0 313s 768s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2272m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2273m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2275m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2277m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2278m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2280m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2282m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2283m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2285m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2287m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2288m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2290m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2292m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2293m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2295m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2297m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2298m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2300m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2302m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2303m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2305m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2307m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2308m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2310m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2312m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2313m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2315m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2317m 948 0 0 0 0 0 313s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2318m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2320m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2322m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2323m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2325m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2327m 948 0 0 0 0 0 314s 767s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2328m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2330m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2332m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2333m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2335m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2337m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2338m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2340m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2342m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2343m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2345m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2347m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2348m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2350m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2352m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2353m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2355m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2357m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2358m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2360m 948 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2362m 947 1 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2363m 947 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2365m 947 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2367m 947 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2368m 947 0 0 0 0 0 314s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2370m 947 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2372m 947 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2373m 947 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2375m 948 1 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2377m 948 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2378m 948 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2380m 948 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2382m 948 0 0 0 0 0 315s 766s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2383m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2385m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2387m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2388m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2390m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2392m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2393m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2395m 949 1 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2397m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2398m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2400m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2402m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2403m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2405m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2407m 949 1 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2408m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2410m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2412m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2413m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2415m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2417m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2418m 949 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2420m 948 1 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2422m 948 0 0 0 0 0 315s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2423m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2425m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2427m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2428m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2430m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2432m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2433m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2435m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2437m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2438m 948 0 0 0 0 0 316s 765s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2440m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2442m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2443m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2445m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2447m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2448m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2450m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2452m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2453m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2455m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2457m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2458m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2460m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2462m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2463m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2465m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2467m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2468m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2470m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2472m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2473m 948 0 0 0 0 0 316s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2475m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2477m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2478m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2480m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2482m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2483m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2485m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2487m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2488m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2490m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2492m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2493m 948 0 0 0 0 0 317s 764s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2495m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2497m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2498m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2500m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2502m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2503m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2505m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2507m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2508m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2510m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2512m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2513m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2515m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2517m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2518m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2520m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2522m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2523m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2525m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2527m 948 0 0 0 0 0 317s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2528m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2530m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2532m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2533m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2535m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2537m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2538m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2540m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2542m 948 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2543m 949 1 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2545m 949 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2547m 949 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2548m 949 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2550m 949 0 0 0 0 0 318s 763s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2552m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2553m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2555m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2557m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2558m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2560m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2562m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2563m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2565m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2567m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2568m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2570m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2572m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2573m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2575m 949 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2577m 948 1 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2578m 948 0 0 0 0 0 318s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2580m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2582m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2583m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2585m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2587m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2588m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2590m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2592m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2593m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2595m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2597m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2598m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2600m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2602m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2603m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2605m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2607m 948 0 0 0 0 0 319s 762s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2608m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2610m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2612m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2613m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2615m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2617m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2618m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2620m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2622m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2623m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2625m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2627m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2628m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2630m 948 0 0 0 0 0 319s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2632m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2633m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2635m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2637m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2638m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2640m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2642m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2643m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2645m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2647m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2648m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2650m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2652m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2653m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2655m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2657m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2658m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2660m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2662m 948 0 0 0 0 0 320s 761s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2663m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2665m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2667m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2668m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2670m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2672m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2673m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2675m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2677m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2678m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2680m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2682m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2683m 948 0 0 0 0 0 320s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2685m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2687m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2688m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2690m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2692m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2693m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2695m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2697m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2698m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2700m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2702m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2703m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2705m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2707m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2708m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2710m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2712m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2713m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2715m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2717m 948 0 0 0 0 0 321s 760s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2718m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2720m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2722m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2723m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2725m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2727m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2728m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2730m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2732m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2733m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2735m 948 0 0 0 0 0 321s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2737m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2738m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2740m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2742m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2743m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2745m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2747m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2748m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2750m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2752m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2753m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2755m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2757m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2758m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2760m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2762m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2763m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2765m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2767m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2768m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2770m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2772m 948 0 0 0 0 0 322s 759s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2773m 948 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2775m 948 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2777m 948 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2778m 948 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2780m 947 1 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2782m 947 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2783m 947 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2785m 947 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2787m 947 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2788m 947 0 0 0 0 0 322s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2790m 947 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2792m 946 1 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2793m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2795m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2797m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2798m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2800m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2802m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2803m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2805m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2807m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2808m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2810m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2812m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2813m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2815m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2817m 946 1 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2818m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2820m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2822m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2823m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2825m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2827m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2828m 946 0 0 0 0 0 323s 758s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2830m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2832m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2833m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2835m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2837m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2838m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2840m 946 0 0 0 0 0 323s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2842m 946 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2843m 946 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2845m 945 1 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2847m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2848m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2850m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2852m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2853m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2855m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2857m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2858m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2860m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2862m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2863m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2865m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2867m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2868m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2870m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2872m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2873m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2875m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2877m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2878m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 6 2880m 945 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 0s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 100s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 200s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 300s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 400s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 500s 1035 0 0 0 0 0 324s 757s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 600s 1035 0 0 0 0 0 324s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 700s 1034 1 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 800s 1034 2 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 900s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1000s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1100s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1200s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1300s 1034 1 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1400s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1500s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1600s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1700s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1800s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1900s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2000s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2100s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2200s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2300s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2400s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2500s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2600s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2700s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2800s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2900s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3000s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3100s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3200s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3300s 1034 0 0 0 0 0 325s 756s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3400s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3500s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3600s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3700s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3800s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 3900s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4000s 1034 0 0 0 0 0 325s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4100s 1034 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4200s 1034 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4300s 1034 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4400s 1033 1 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4500s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4600s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4700s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4800s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 4900s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5000s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5100s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5200s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5300s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5400s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5500s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5600s 1033 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5700s 1032 1 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5800s 1032 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 5900s 1032 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6000s 1031 1 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6100s 1031 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6200s 1031 0 0 0 0 0 326s 755s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6300s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6400s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6500s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6600s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6700s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6800s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 6900s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7000s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7100s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7200s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7300s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7400s 1031 0 0 0 0 0 326s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7500s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7600s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7700s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7800s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 7900s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8000s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8100s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8200s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8300s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8400s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8500s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8600s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8700s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8800s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 8900s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9000s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9100s 1031 0 0 0 0 0 327s 754s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9200s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9300s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9400s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9500s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9600s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9700s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9800s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 9900s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10000s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10100s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10200s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10300s 1031 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10400s 1030 1 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10500s 1030 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10600s 1030 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10700s 1030 0 0 0 0 0 327s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10800s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 10900s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11000s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11100s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11200s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11300s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11400s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11500s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11600s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11700s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11800s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 11900s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12000s 1030 0 0 0 0 0 328s 753s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12100s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12200s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12300s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12400s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12500s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12600s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12700s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12800s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 12900s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13000s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13100s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13200s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13300s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13400s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13500s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13600s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13700s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13800s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 13900s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14000s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14100s 1030 0 0 0 0 0 328s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14200s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14300s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14400s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14500s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14600s 1030 1 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14700s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14800s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 14900s 1030 0 0 0 0 0 329s 752s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15000s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15100s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15200s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15300s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15400s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15500s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15600s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15700s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15800s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 15900s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16000s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16100s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16200s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16300s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16400s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16500s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16600s 1030 1 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16700s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16800s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 16900s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17000s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17100s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17200s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17300s 1030 1 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17400s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17500s 1030 0 0 0 0 0 329s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17600s 1030 0 0 0 0 0 330s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17700s 1030 0 0 0 0 0 330s 751s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17800s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 17900s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18000s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18100s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18200s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18300s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18400s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18500s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18600s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18700s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18800s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 18900s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19000s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19100s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19200s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19300s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19400s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19500s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19600s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19700s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19800s 1030 1 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 19900s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20000s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20100s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20200s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20300s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20400s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20500s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20600s 1030 0 0 0 0 0 330s 750s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20700s 1030 0 0 0 0 0 330s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20800s 1030 0 0 0 0 0 330s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 20900s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21000s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21100s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21200s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21300s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21400s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21500s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21600s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21700s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21800s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 21900s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22000s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22100s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22200s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22300s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22400s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22500s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22600s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22700s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22800s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 22900s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23000s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23100s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23200s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23300s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23400s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23500s 1030 0 0 0 0 0 331s 749s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23600s 1030 0 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23700s 1030 0 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23800s 1029 1 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 23900s 1029 0 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24000s 1029 0 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24100s 1029 1 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24200s 1029 0 0 0 0 0 331s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24300s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24400s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24500s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24600s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24700s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24800s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 24900s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25000s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25100s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25200s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25300s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25400s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25500s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25600s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25700s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25800s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 25900s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26000s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26100s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26200s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26300s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26400s 1029 0 0 0 0 0 332s 748s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26500s 1029 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26600s 1029 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26700s 1029 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26800s 1029 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 26900s 1029 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27000s 1028 1 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27100s 1028 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27200s 1028 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27300s 1028 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27400s 1028 1 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27500s 1028 0 0 0 0 0 332s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27600s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27700s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27800s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 27900s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28000s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28100s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28200s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28300s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28400s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28500s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28600s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28700s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28800s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 28900s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29000s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29100s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29200s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29300s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29400s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29500s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29600s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29700s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29800s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 29900s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30000s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30100s 1028 0 0 0 0 0 333s 747s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30200s 1028 0 0 0 0 0 333s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30300s 1028 0 0 0 0 0 333s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30400s 1028 0 0 0 0 0 333s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30500s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30600s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30700s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30800s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 30900s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31000s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31100s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31200s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31300s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31400s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31500s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31600s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31700s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31800s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 31900s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32000s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32100s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32200s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32300s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32400s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32500s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32600s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32700s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32800s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 32900s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33000s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33100s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33200s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33300s 1028 0 0 0 0 0 334s 746s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33400s 1028 0 0 0 0 0 334s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33500s 1028 0 0 0 0 0 334s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33600s 1028 0 0 0 0 0 334s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33700s 1028 0 0 0 0 0 334s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33800s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 33900s 1028 1 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34000s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34100s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34200s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34300s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34400s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34500s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34600s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34700s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34800s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 34900s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35000s 1028 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35100s 1027 1 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35200s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35300s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35400s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35500s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35600s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35700s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35800s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 35900s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36000s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36100s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36200s 1027 0 0 0 0 0 335s 745s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36300s 1027 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36400s 1026 1 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36500s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36600s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36700s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36800s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 36900s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37000s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37100s 1026 0 0 0 0 0 335s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37200s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37300s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37400s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37500s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37600s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37700s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37800s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 37900s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38000s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38100s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38200s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38300s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38400s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38500s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38600s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38700s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38800s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 38900s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39000s 1026 0 0 0 0 0 336s 744s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39100s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39200s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39300s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39400s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39500s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39600s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39700s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39800s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 39900s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40000s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40100s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40200s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40300s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40400s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40500s 1026 0 0 0 0 0 336s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40600s 1026 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40700s 1026 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40800s 1027 1 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 40900s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41000s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41100s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41200s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41300s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41400s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41500s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41600s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41700s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41800s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 41900s 1027 0 0 0 0 0 337s 743s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42000s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42100s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42200s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42300s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42400s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42500s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42600s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42700s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42800s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 42900s 1027 1 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43000s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43100s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43200s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43300s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43400s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43500s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43600s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43700s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43800s 1027 0 0 0 0 0 337s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 43900s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44000s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44100s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44200s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44300s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44400s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44500s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44600s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44700s 1027 0 0 0 0 0 338s 742s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44800s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 44900s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45000s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45100s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45200s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45300s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45400s 1027 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45500s 1026 1 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45600s 1026 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45700s 1026 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45800s 1026 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 45900s 1026 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46000s 1026 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46100s 1025 1 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46200s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46300s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46400s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46500s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46600s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46700s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46800s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 46900s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47000s 1025 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47100s 1024 1 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47200s 1024 0 0 0 0 0 338s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47300s 1024 0 0 0 0 0 339s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47400s 1024 0 0 0 0 0 339s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47500s 1024 0 0 0 0 0 339s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47600s 1024 0 0 0 0 0 339s 741s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47700s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47800s 1025 1 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 47900s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48000s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48100s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48200s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48300s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48400s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48500s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48600s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48700s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48800s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 48900s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49000s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49100s 1025 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49200s 1024 1 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49300s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49400s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49500s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49600s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49700s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49800s 1024 1 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 49900s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50000s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50100s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50200s 1024 1 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50300s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50400s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50500s 1024 0 0 0 0 0 339s 740s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50600s 1024 0 0 0 0 0 339s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50700s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50800s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 50900s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51000s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51100s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51200s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51300s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51400s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51500s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51600s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51700s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51800s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 51900s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52000s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52100s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52200s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52300s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52400s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52500s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52600s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52700s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52800s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 52900s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53000s 1024 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53100s 1023 1 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53200s 1023 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53300s 1023 0 0 0 0 0 340s 739s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53400s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53500s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53600s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53700s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53800s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 53900s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54000s 1023 0 0 0 0 0 340s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54100s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54200s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54300s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54400s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54500s 1023 1 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54600s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54700s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54800s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 54900s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55000s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55100s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55200s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55300s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55400s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55500s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55600s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55700s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55800s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 55900s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56000s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56100s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56200s 1023 0 0 0 0 0 341s 738s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56300s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56400s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56500s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56600s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56700s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56800s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 56900s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57000s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57100s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57200s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57300s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57400s 1023 0 0 0 0 0 341s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57500s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57600s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57700s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57800s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 57900s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58000s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58100s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58200s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58300s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58400s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58500s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58600s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58700s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58800s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 58900s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59000s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59100s 1023 0 0 0 0 0 342s 737s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59200s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59300s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59400s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59500s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59600s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59700s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59800s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 59900s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60000s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60100s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60200s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60300s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60400s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60500s 1023 0 0 0 0 0 342s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60600s 1023 1 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60700s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60800s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 60900s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61000s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61100s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61200s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61300s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61400s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61500s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61600s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61700s 1023 1 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61800s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 61900s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62000s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62100s 1023 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62200s 1023 1 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62300s 1022 1 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62400s 1022 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62500s 1022 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62600s 1022 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62700s 1022 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62800s 1022 0 0 0 0 0 343s 736s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 62900s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63000s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63100s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63200s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63300s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63400s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63500s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63600s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63700s 1022 0 0 0 0 0 343s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63800s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 63900s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64000s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64100s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64200s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64300s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64400s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64500s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64600s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64700s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64800s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 64900s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65000s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65100s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65200s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65300s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65400s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65500s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65600s 1022 0 0 0 0 0 344s 735s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65700s 1022 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65800s 1022 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 65900s 1022 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66000s 1021 1 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66100s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66200s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66300s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66400s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66500s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66600s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66700s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66800s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 66900s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67000s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67100s 1021 0 0 0 0 0 344s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67200s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67300s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67400s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67500s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67600s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67700s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67800s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 67900s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68000s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68100s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68200s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68300s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68400s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68500s 1021 0 0 0 0 0 345s 734s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68600s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68700s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68800s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 68900s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69000s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69100s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69200s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69300s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69400s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69500s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69600s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69700s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69800s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 69900s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70000s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70100s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70200s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70300s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70400s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70500s 1021 0 0 0 0 0 345s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70600s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70700s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70800s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 70900s 1021 1 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71000s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71100s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71200s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71300s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71400s 1021 0 0 0 0 0 346s 733s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71500s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71600s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71700s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71800s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 71900s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72000s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72100s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72200s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72300s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72400s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72500s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72600s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72700s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72800s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 72900s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73000s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73100s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73200s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73300s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73400s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73500s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73600s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73700s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73800s 1021 0 0 0 0 0 346s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 73900s 1021 0 0 0 0 0 347s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74000s 1021 0 0 0 0 0 347s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74100s 1021 0 0 0 0 0 347s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74200s 1021 0 0 0 0 0 347s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74300s 1021 0 0 0 0 0 347s 732s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74400s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74500s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74600s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74700s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74800s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 74900s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75000s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75100s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75200s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75300s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75400s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75500s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75600s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75700s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75800s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 75900s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76000s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76100s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76200s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76300s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76400s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76500s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76600s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76700s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76800s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 76900s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77000s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77100s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77200s 1021 0 0 0 0 0 347s 731s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77300s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77400s 1021 1 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77500s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77600s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77700s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77800s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 77900s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78000s 1021 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78100s 1020 1 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78200s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78300s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78400s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78500s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78600s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78700s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78800s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 78900s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79000s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79100s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79200s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79300s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79400s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79500s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79600s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79700s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79800s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 79900s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80000s 1020 0 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80100s 1019 1 0 0 0 0 348s 730s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80200s 1019 0 0 0 0 0 348s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80300s 1019 0 0 0 0 0 348s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80400s 1019 0 0 0 0 0 348s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80500s 1019 0 0 0 0 0 348s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80600s 1019 0 0 0 0 0 348s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80700s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80800s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 80900s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81000s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81100s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81200s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81300s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81400s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81500s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81600s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81700s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81800s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 81900s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82000s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82100s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82200s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82300s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82400s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82500s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82600s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82700s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82800s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 82900s 1019 1 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83000s 1019 0 0 0 0 0 349s 729s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83100s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83200s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83300s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83400s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83500s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83600s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83700s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83800s 1019 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 83900s 1018 1 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84000s 1018 0 0 0 0 0 349s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84100s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84200s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84300s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84400s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84500s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84600s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84700s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84800s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 84900s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85000s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85100s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85200s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85300s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85400s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85500s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85600s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85700s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85800s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 85900s 1018 0 0 0 0 0 350s 728s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86000s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86100s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86200s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86300s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86400s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86500s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86600s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86700s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86800s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 86900s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87000s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87100s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87200s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87300s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87400s 1018 0 0 0 0 0 350s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87500s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87600s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87700s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87800s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 87900s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88000s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88100s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88200s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88300s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88400s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88500s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88600s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88700s 1018 0 0 0 0 0 351s 727s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88800s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 88900s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89000s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89100s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89200s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89300s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89400s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89500s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89600s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89700s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89800s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 89900s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90000s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90100s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90200s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90300s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90400s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90500s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90600s 1018 1 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90700s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90800s 1018 0 0 0 0 0 351s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 90900s 1018 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91000s 1018 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91100s 1017 1 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91200s 1017 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91300s 1017 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91400s 1017 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91500s 1017 0 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91600s 1016 1 0 0 0 0 352s 726s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91700s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91800s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 91900s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92000s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92100s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92200s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92300s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92400s 1016 1 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92500s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92600s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92700s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92800s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 92900s 1016 1 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93000s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93100s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93200s 1016 1 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93300s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93400s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93500s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93600s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93700s 1016 1 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93800s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 93900s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94000s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94100s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94200s 1016 0 0 0 0 0 352s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94300s 1016 0 0 0 0 0 353s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94400s 1016 0 0 0 0 0 353s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94500s 1016 1 0 0 0 0 353s 725s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94600s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94700s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94800s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 94900s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95000s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95100s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95200s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95300s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95400s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95500s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95600s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95700s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95800s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 95900s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96000s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96100s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96200s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96300s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96400s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96500s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96600s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96700s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96800s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 96900s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97000s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97100s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97200s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97300s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97400s 1016 0 0 0 0 0 353s 724s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97500s 1016 0 0 0 0 0 353s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97600s 1016 0 0 0 0 0 353s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97700s 1016 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97800s 1016 1 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 97900s 1016 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98000s 1016 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98100s 1016 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98200s 1016 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98300s 1015 1 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98400s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98500s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98600s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98700s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98800s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 98900s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99000s 1015 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99100s 1014 1 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99200s 1014 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99300s 1013 1 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99400s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99500s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99600s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99700s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99800s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 99900s 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1667m 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1668m 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1670m 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1672m 1013 0 0 0 0 0 354s 723s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1673m 1013 1 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1675m 1013 0 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1677m 1013 0 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1678m 1013 0 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1680m 1013 0 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1682m 1013 0 0 0 0 0 354s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1683m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1685m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1687m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1688m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1690m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1692m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1693m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1695m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1697m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1698m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1700m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1702m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1703m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1705m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1707m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1708m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1710m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1712m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1713m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1715m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1717m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1718m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1720m 1013 0 0 0 0 0 355s 722s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1722m 1013 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1723m 1013 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1725m 1012 1 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1727m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1728m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1730m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1732m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1733m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1735m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1737m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1738m 1012 0 0 0 0 0 355s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1740m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1742m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1743m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1745m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1747m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1748m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1750m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1752m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1753m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1755m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1757m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1758m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1760m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1762m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1763m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1765m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1767m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1768m 1012 0 0 0 0 0 356s 721s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1770m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1772m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1773m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1775m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1777m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1778m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1780m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1782m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1783m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1785m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1787m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1788m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1790m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1792m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1793m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1795m 1012 0 0 0 0 0 356s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1797m 1012 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1798m 1012 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1800m 1012 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1802m 1012 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1803m 1011 1 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1805m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1807m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1808m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1810m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1812m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1813m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1815m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1817m 1011 0 0 0 0 0 357s 720s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1818m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1820m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1822m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1823m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1825m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1827m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1828m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1830m 1011 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1832m 1010 1 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1833m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1835m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1837m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1838m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1840m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1842m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1843m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1845m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1847m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1848m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1850m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1852m 1010 0 0 0 0 0 357s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1853m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1855m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1857m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1858m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1860m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1862m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1863m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1865m 1010 0 0 0 0 0 358s 719s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1867m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1868m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1870m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1872m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1873m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1875m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1877m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1878m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1880m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1882m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1883m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1885m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1887m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1888m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1890m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1892m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1893m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1895m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1897m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1898m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1900m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1902m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1903m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1905m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1907m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1908m 1010 0 0 0 0 0 358s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1910m 1010 0 0 0 0 0 359s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1912m 1010 0 0 0 0 0 359s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1913m 1010 0 0 0 0 0 359s 718s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1915m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1917m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1918m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1920m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1922m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1923m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1925m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1927m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1928m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1930m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1932m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1933m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1935m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1937m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1938m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1940m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1942m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1943m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1945m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1947m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1948m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1950m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1952m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1953m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1955m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1957m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1958m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1960m 1010 0 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1962m 1009 1 0 0 0 0 359s 717s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1963m 1009 0 0 0 0 0 359s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1965m 1009 0 0 0 0 0 359s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1967m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1968m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1970m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1972m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1973m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1975m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1977m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1978m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1980m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1982m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1983m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1985m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1987m 1009 1 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1988m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1990m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1992m 1009 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1993m 1010 1 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1995m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1997m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 1998m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2000m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2002m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2003m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2005m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2007m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2008m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2010m 1010 0 0 0 0 0 360s 716s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2012m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2013m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2015m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2017m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2018m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2020m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2022m 1010 0 0 0 0 0 360s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2023m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2025m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2027m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2028m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2030m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2032m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2033m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2035m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2037m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2038m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2040m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2042m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2043m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2045m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2047m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2048m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2050m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2052m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2053m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2055m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2057m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2058m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2060m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2062m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2063m 1010 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2065m 1009 1 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2067m 1009 0 0 0 0 0 361s 715s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2068m 1009 0 0 0 0 0 361s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2070m 1009 0 0 0 0 0 361s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2072m 1009 0 0 0 0 0 361s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2073m 1009 0 0 0 0 0 361s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2075m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2077m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2078m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2080m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2082m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2083m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2085m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2087m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2088m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2090m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2092m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2093m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2095m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2097m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2098m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2100m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2102m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2103m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2105m 1009 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2107m 1010 2 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2108m 1010 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2110m 1010 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2112m 1010 0 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2113m 1009 1 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2115m 1008 1 0 0 0 0 362s 714s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2117m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2118m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2120m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2122m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2123m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2125m 1008 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2127m 1007 1 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2128m 1007 1 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2130m 1007 0 0 0 0 0 362s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2132m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2133m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2135m 1007 1 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2137m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2138m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2140m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2142m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2143m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2145m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2147m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2148m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2150m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2152m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2153m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2155m 1007 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2157m 1006 1 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2158m 1006 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2160m 1006 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2162m 1006 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2163m 1006 0 0 0 0 0 363s 713s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2165m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2167m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2168m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2170m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2172m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2173m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2175m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2177m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2178m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2180m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2182m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2183m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2185m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2187m 1006 0 0 0 0 0 363s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2188m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2190m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2192m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2193m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2195m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2197m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2198m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2200m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2202m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2203m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2205m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2207m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2208m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2210m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2212m 1006 0 0 0 0 0 364s 712s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2213m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2215m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2217m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2218m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2220m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2222m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2223m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2225m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2227m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2228m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2230m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2232m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2233m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2235m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2237m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2238m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2240m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2242m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2243m 1006 0 0 0 0 0 364s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2245m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2247m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2248m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2250m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2252m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2253m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2255m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2257m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2258m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2260m 1006 0 0 0 0 0 365s 711s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2262m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2263m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2265m 1006 1 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2267m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2268m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2270m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2272m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2273m 1006 1 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2275m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2277m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2278m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2280m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2282m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2283m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2285m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2287m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2288m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2290m 1006 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2292m 1005 1 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2293m 1005 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2295m 1004 1 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2297m 1004 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2298m 1004 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2300m 1004 0 0 0 0 0 365s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2302m 1004 0 0 0 0 0 366s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2303m 1004 0 0 0 0 0 366s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2305m 1004 0 0 0 0 0 366s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2307m 1004 0 0 0 0 0 366s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2308m 1004 0 0 0 0 0 366s 710s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2310m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2312m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2313m 1004 1 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2315m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2317m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2318m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2320m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2322m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2323m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2325m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2327m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2328m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2330m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2332m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2333m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2335m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2337m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2338m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2340m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2342m 1004 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2343m 1003 1 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2345m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2347m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2348m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2350m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2352m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2353m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2355m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2357m 1003 0 0 0 0 0 366s 709s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2358m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2360m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2362m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2363m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2365m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2367m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2368m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2370m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2372m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2373m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2375m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2377m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2378m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2380m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2382m 1003 1 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2383m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2385m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2387m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2388m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2390m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2392m 1003 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2393m 1001 2 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2395m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2397m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2398m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2400m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2402m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2403m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2405m 1001 0 0 0 0 0 367s 708s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2407m 1001 0 0 0 0 0 367s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2408m 1001 0 0 0 0 0 367s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2410m 1001 0 0 0 0 0 367s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2412m 1001 0 0 0 0 0 367s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2413m 1001 0 0 0 0 0 367s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2415m 1001 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2417m 1001 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2418m 1001 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2420m 1000 1 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2422m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2423m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2425m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2427m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2428m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2430m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2432m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2433m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2435m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2437m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2438m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2440m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2442m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2443m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2445m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2447m 999 1 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2448m 1000 1 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2450m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2452m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2453m 1000 0 0 0 0 0 368s 707s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2455m 1000 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2457m 1000 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2458m 999 1 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2460m 998 1 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2462m 998 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2463m 998 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2465m 998 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2467m 998 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2468m 998 1 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2470m 998 0 0 0 0 0 368s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2472m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2473m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2475m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2477m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2478m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2480m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2482m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2483m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2485m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2487m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2488m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2490m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2492m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2493m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2495m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2497m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2498m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2500m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2502m 998 0 0 0 0 0 369s 706s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2503m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2505m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2507m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2508m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2510m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2512m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2513m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2515m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2517m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2518m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2520m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2522m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2523m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2525m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2527m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2528m 998 0 0 0 0 0 369s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2530m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2532m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2533m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2535m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2537m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2538m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2540m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2542m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2543m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2545m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2547m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2548m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2550m 998 0 0 0 0 0 370s 705s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2552m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2553m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2555m 999 1 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2557m 999 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2558m 999 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2560m 999 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2562m 998 1 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2563m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2565m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2567m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2568m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2570m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2572m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2573m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2575m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2577m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2578m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2580m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2582m 998 0 0 0 0 0 370s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2583m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2585m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2587m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2588m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2590m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2592m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2593m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2595m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2597m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2598m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2600m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2602m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2603m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2605m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2607m 998 0 0 0 0 0 371s 704s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2608m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2610m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2612m 998 1 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2613m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2615m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2617m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2618m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2620m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2622m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2623m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2625m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2627m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2628m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2630m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2632m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2633m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2635m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2637m 998 0 0 0 0 0 371s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2638m 998 1 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2640m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2642m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2643m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2645m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2647m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2648m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2650m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2652m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2653m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2655m 998 0 0 0 0 0 372s 703s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2657m 998 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2658m 999 1 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2660m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2662m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2663m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2665m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2667m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2668m 999 1 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2670m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2672m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2673m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2675m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2677m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2678m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2680m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2682m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2683m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2685m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2687m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2688m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2690m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2692m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2693m 999 0 0 0 0 0 372s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2695m 999 0 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2697m 999 0 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2698m 999 1 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2700m 999 0 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2702m 999 0 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2703m 999 0 0 0 0 0 373s 702s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2705m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2707m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2708m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2710m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2712m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2713m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2715m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2717m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2718m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2720m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2722m 999 1 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2723m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2725m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2727m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2728m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2730m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2732m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2733m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2735m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2737m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2738m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2740m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2742m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2743m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2745m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2747m 999 1 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2748m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2750m 999 0 0 0 0 0 373s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2752m 999 0 0 0 0 0 374s 701s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2753m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2755m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2757m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2758m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2760m 999 1 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2762m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2763m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2765m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2767m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2768m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2770m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2772m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2773m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2775m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2777m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2778m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2780m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2782m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2783m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2785m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2787m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2788m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2790m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2792m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2793m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2795m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2797m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2798m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2800m 999 0 0 0 0 0 374s 700s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2802m 999 0 0 0 0 0 374s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2803m 999 0 0 0 0 0 374s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2805m 999 0 0 0 0 0 374s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2807m 999 0 0 0 0 0 374s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2808m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2810m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2812m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2813m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2815m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2817m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2818m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2820m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2822m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2823m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2825m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2827m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2828m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2830m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2832m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2833m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2835m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2837m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2838m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2840m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2842m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2843m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2845m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2847m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2848m 999 0 0 0 0 0 375s 699s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2850m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2852m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2853m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2855m 999 1 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2857m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2858m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2860m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2862m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2863m 999 0 0 0 0 0 375s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2865m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2867m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2868m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2870m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2872m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2873m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2875m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2877m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2878m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 7 2880m 999 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 0s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 100s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 200s 916 1 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 300s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 400s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 500s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 600s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 700s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 800s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 900s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1000s 916 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1100s 915 1 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1200s 915 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1300s 915 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1400s 915 0 0 0 0 0 376s 698s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1500s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1600s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1700s 915 1 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1800s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1900s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2000s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2100s 915 1 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2200s 915 0 0 0 0 0 376s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2300s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2400s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2500s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2600s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2700s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2800s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2900s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3000s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3100s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3200s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3300s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3400s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3500s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3600s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3700s 915 1 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3800s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 3900s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4000s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4100s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4200s 915 0 0 0 0 0 377s 697s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4300s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4400s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4500s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4600s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4700s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4800s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 4900s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5000s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5100s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5200s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5300s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5400s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5500s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5600s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5700s 915 0 0 0 0 0 377s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5800s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 5900s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6000s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6100s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6200s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6300s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6400s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6500s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6600s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6700s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6800s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 6900s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7000s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7100s 915 0 0 0 0 0 378s 696s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7200s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7300s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7400s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7500s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7600s 915 1 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7700s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7800s 915 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 7900s 916 1 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8000s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8100s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8200s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8300s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8400s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8500s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8600s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8700s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8800s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 8900s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9000s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9100s 916 0 0 0 0 0 378s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9200s 916 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9300s 916 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9400s 916 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9500s 916 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9600s 916 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9700s 915 1 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9800s 915 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 9900s 915 0 0 0 0 0 379s 695s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10000s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10100s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10200s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10300s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10400s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10500s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10600s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10700s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10800s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 10900s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11000s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11100s 915 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11200s 914 1 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11300s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11400s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11500s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11600s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11700s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11800s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 11900s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12000s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12100s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12200s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12300s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12400s 914 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12500s 913 1 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12600s 913 0 0 0 0 0 379s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12700s 912 1 0 0 0 0 380s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12800s 912 0 0 0 0 0 380s 694s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 12900s 912 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13000s 911 1 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13100s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13200s 911 1 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13300s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13400s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13500s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13600s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13700s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13800s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 13900s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14000s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14100s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14200s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14300s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14400s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14500s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14600s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14700s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14800s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 14900s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15000s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15100s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15200s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15300s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15400s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15500s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15600s 911 0 0 0 0 0 380s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15700s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15800s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 15900s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16000s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16100s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16200s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16300s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16400s 911 0 0 0 0 0 381s 693s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16500s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16600s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16700s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16800s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 16900s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17000s 910 1 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17100s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17200s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17300s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17400s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17500s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17600s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17700s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17800s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 17900s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18000s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18100s 910 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18200s 911 1 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18300s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18400s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18500s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18600s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18700s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18800s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 18900s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19000s 911 0 0 0 0 0 381s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19100s 911 0 0 0 0 0 382s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19200s 911 0 0 0 0 0 382s 692s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19300s 911 1 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19400s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19500s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19600s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19700s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19800s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 19900s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20000s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20100s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20200s 911 1 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20300s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20400s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20500s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20600s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20700s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20800s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 20900s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21000s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21100s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21200s 911 1 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21300s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21400s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21500s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21600s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21700s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21800s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 21900s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22000s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22100s 911 0 0 0 0 0 382s 691s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22200s 911 0 0 0 0 0 382s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22300s 911 0 0 0 0 0 382s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22400s 911 0 0 0 0 0 382s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22500s 911 0 0 0 0 0 382s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22600s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22700s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22800s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 22900s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23000s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23100s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23200s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23300s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23400s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23500s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23600s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23700s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23800s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 23900s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24000s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24100s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24200s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24300s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24400s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24500s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24600s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24700s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24800s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 24900s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25000s 911 0 0 0 0 0 383s 690s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25100s 911 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25200s 911 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25300s 911 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25400s 910 1 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25500s 910 1 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25600s 910 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25700s 910 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25800s 910 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 25900s 910 0 0 0 0 0 383s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26000s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26100s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26200s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26300s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26400s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26500s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26600s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26700s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26800s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 26900s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27000s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27100s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27200s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27300s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27400s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27500s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27600s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27700s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27800s 910 0 0 0 0 0 384s 689s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 27900s 909 1 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28000s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28100s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28200s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28300s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28400s 909 1 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28500s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28600s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28700s 909 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28800s 910 1 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 28900s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29000s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29100s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29200s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29300s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29400s 910 0 0 0 0 0 384s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29500s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29600s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29700s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29800s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 29900s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30000s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30100s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30200s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30300s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30400s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30500s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30600s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30700s 910 0 0 0 0 0 385s 688s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30800s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 30900s 910 1 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31000s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31100s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31200s 910 1 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31300s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31400s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31500s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31600s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31700s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31800s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 31900s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32000s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32100s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32200s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32300s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32400s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32500s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32600s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32700s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32800s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 32900s 910 0 0 0 0 0 385s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33000s 910 0 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33100s 910 1 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33200s 910 0 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33300s 910 0 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33400s 910 0 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33500s 910 0 0 0 0 0 386s 687s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33600s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33700s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33800s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 33900s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34000s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34100s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34200s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34300s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34400s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34500s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34600s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34700s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34800s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 34900s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35000s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35100s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35200s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35300s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35400s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35500s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35600s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35700s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35800s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 35900s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36000s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36100s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36200s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36300s 910 0 0 0 0 0 386s 686s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36400s 910 0 0 0 0 0 386s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36500s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36600s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36700s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36800s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 36900s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37000s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37100s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37200s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37300s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37400s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37500s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37600s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37700s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37800s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 37900s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38000s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38100s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38200s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38300s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38400s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38500s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38600s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38700s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38800s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 38900s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39000s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39100s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39200s 910 0 0 0 0 0 387s 685s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39300s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39400s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39500s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39600s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39700s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39800s 910 0 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 39900s 909 1 0 0 0 0 387s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40000s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40100s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40200s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40300s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40400s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40500s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40600s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40700s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40800s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 40900s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41000s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41100s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41200s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41300s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41400s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41500s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41600s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41700s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41800s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 41900s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42000s 909 0 0 0 0 0 388s 684s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42100s 909 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42200s 909 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42300s 910 1 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42400s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42500s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42600s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42700s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42800s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 42900s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43000s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43100s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43200s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43300s 910 0 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43400s 908 2 0 0 0 0 388s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43500s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43600s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43700s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43800s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 43900s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44000s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44100s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44200s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44300s 908 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44400s 907 1 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44500s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44600s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44700s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44800s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 44900s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45000s 907 0 0 0 0 0 389s 683s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45100s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45200s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45300s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45400s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45500s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45600s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45700s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45800s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 45900s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46000s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46100s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46200s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46300s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46400s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46500s 907 0 0 0 0 0 389s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46600s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46700s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46800s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 46900s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47000s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47100s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47200s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47300s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47400s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47500s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47600s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47700s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47800s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 47900s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48000s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48100s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48200s 907 0 0 0 0 0 390s 682s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48300s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48400s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48500s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48600s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48700s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48800s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 48900s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49000s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49100s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49200s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49300s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49400s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49500s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49600s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49700s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49800s 907 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 49900s 906 1 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50000s 906 0 0 0 0 0 390s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50100s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50200s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50300s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50400s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50500s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50600s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50700s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50800s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 50900s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51000s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51100s 906 0 0 0 0 0 391s 681s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51200s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51300s 906 1 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51400s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51500s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51600s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51700s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51800s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 51900s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52000s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52100s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52200s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52300s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52400s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52500s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52600s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52700s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52800s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 52900s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53000s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53100s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53200s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53300s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53400s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53500s 906 0 0 0 0 0 391s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53600s 906 0 0 0 0 0 392s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53700s 906 0 0 0 0 0 392s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53800s 906 0 0 0 0 0 392s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 53900s 906 0 0 0 0 0 392s 680s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54000s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54100s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54200s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54300s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54400s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54500s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54600s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54700s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54800s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 54900s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55000s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55100s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55200s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55300s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55400s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55500s 906 1 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55600s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55700s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55800s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 55900s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56000s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56100s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56200s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56300s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56400s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56500s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56600s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56700s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56800s 906 0 0 0 0 0 392s 679s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 56900s 906 0 0 0 0 0 392s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57000s 906 0 0 0 0 0 392s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57100s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57200s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57300s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57400s 906 1 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57500s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57600s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57700s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57800s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 57900s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58000s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58100s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58200s 906 1 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58300s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58400s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58500s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58600s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58700s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58800s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 58900s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59000s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59100s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59200s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59300s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59400s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59500s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59600s 906 0 0 0 0 0 393s 678s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59700s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59800s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 59900s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60000s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60100s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60200s 906 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60300s 906 1 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60400s 905 1 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60500s 905 0 0 0 0 0 393s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60600s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60700s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60800s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 60900s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61000s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61100s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61200s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61300s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61400s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61500s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61600s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61700s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61800s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 61900s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62000s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62100s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62200s 905 1 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62300s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62400s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62500s 905 0 0 0 0 0 394s 677s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62600s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62700s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62800s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 62900s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63000s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63100s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63200s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63300s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63400s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63500s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63600s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63700s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63800s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 63900s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64000s 905 0 0 0 0 0 394s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64100s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64200s 905 1 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64300s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64400s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64500s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64600s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64700s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64800s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 64900s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65000s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65100s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65200s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65300s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65400s 905 0 0 0 0 0 395s 676s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65500s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65600s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65700s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65800s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 65900s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66000s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66100s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66200s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66300s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66400s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66500s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66600s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66700s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66800s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 66900s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67000s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67100s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67200s 905 0 0 0 0 0 395s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67300s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67400s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67500s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67600s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67700s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67800s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 67900s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68000s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68100s 905 1 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68200s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68300s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68400s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68500s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68600s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68700s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68800s 905 0 0 0 0 0 396s 675s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 68900s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69000s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69100s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69200s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69300s 905 1 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69400s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69500s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69600s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69700s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69800s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 69900s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70000s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70100s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70200s 905 0 0 0 0 0 396s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70300s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70400s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70500s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70600s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70700s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70800s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 70900s 905 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71000s 904 1 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71100s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71200s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71300s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71400s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71500s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71600s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71700s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71800s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 71900s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72000s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72100s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72200s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72300s 904 0 0 0 0 0 397s 674s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72400s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72500s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72600s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72700s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72800s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 72900s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73000s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73100s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73200s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73300s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73400s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73500s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73600s 904 0 0 0 0 0 397s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73700s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73800s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 73900s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74000s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74100s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74200s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74300s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74400s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74500s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74600s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74700s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74800s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 74900s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75000s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75100s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75200s 904 0 0 0 0 0 398s 673s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75300s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75400s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75500s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75600s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75700s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75800s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 75900s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76000s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76100s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76200s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76300s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76400s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76500s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76600s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76700s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76800s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 76900s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77000s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77100s 904 0 0 0 0 0 398s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77200s 903 2 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77300s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77400s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77500s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77600s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77700s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77800s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 77900s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78000s 903 0 0 0 0 0 399s 672s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78100s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78200s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78300s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78400s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78500s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78600s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78700s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78800s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 78900s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79000s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79100s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79200s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79300s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79400s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79500s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79600s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79700s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79800s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 79900s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80000s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80100s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80200s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80300s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80400s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80500s 903 0 0 0 0 0 399s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80600s 903 0 0 0 0 0 400s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80700s 903 0 0 0 0 0 400s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80800s 903 0 0 0 0 0 400s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 80900s 903 0 0 0 0 0 400s 671s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81000s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81100s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81200s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81300s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81400s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81500s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81600s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81700s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81800s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 81900s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82000s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82100s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82200s 903 1 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82300s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82400s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82500s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82600s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82700s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82800s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 82900s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83000s 903 1 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83100s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83200s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83300s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83400s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83500s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83600s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83700s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83800s 903 0 0 0 0 0 400s 670s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 83900s 903 0 0 0 0 0 400s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84000s 903 0 0 0 0 0 400s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84100s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84200s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84300s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84400s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84500s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84600s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84700s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84800s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 84900s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85000s 903 1 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85100s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85200s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85300s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85400s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85500s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85600s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85700s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85800s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 85900s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86000s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86100s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86200s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86300s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86400s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86500s 903 0 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86600s 902 1 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86700s 902 1 0 0 0 0 401s 669s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86800s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 86900s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87000s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87100s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87200s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87300s 902 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87400s 901 1 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87500s 901 0 0 0 0 0 401s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87600s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87700s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87800s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 87900s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88000s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88100s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88200s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88300s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88400s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88500s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88600s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88700s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88800s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 88900s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89000s 901 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89100s 900 1 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89200s 900 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89300s 900 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89400s 900 1 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89500s 900 0 0 0 0 0 402s 668s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89600s 900 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89700s 900 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89800s 900 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 89900s 900 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90000s 900 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90100s 901 1 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90200s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90300s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90400s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90500s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90600s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90700s 901 0 0 0 0 0 402s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90800s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 90900s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91000s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91100s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91200s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91300s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91400s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91500s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91600s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91700s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91800s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 91900s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92000s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92100s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92200s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92300s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92400s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92500s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92600s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92700s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92800s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 92900s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93000s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93100s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93200s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93300s 901 0 0 0 0 0 403s 667s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93400s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93500s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93600s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93700s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93800s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 93900s 901 0 0 0 0 0 403s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94000s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94100s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94200s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94300s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94400s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94500s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94600s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94700s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94800s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 94900s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95000s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95100s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95200s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95300s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95400s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95500s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95600s 901 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95700s 902 1 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95800s 902 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 95900s 902 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96000s 902 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96100s 902 0 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96200s 901 1 0 0 0 0 404s 666s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96300s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96400s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96500s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96600s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96700s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96800s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 96900s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97000s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97100s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97200s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97300s 901 0 0 0 0 0 404s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97400s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97500s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97600s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97700s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97800s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 97900s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98000s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98100s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98200s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98300s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98400s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98500s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98600s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98700s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98800s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 98900s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99000s 901 1 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99100s 901 0 0 0 0 0 405s 665s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99200s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99300s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99400s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99500s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99600s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99700s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99800s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 99900s 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1667m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1668m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1670m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1672m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1673m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1675m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1677m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1678m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1680m 901 0 0 0 0 0 405s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1682m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1683m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1685m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1687m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1688m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1690m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1692m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1693m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1695m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1697m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1698m 901 0 0 0 0 0 406s 664s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1700m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1702m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1703m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1705m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1707m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1708m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1710m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1712m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1713m 901 1 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1715m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1717m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1718m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1720m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1722m 901 2 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1723m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1725m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1727m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1728m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1730m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1732m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1733m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1735m 901 1 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1737m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1738m 901 0 0 0 0 0 406s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1740m 901 0 0 0 0 0 407s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1742m 901 0 0 0 0 0 407s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1743m 901 0 0 0 0 0 407s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1745m 901 0 0 0 0 0 407s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1747m 901 0 0 0 0 0 407s 663s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1748m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1750m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1752m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1753m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1755m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1757m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1758m 901 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1760m 900 1 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1762m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1763m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1765m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1767m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1768m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1770m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1772m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1773m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1775m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1777m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1778m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1780m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1782m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1783m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1785m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1787m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1788m 900 1 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1790m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1792m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1793m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1795m 900 0 0 0 0 0 407s 662s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1797m 900 1 0 0 0 0 407s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1798m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1800m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1802m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1803m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1805m 901 1 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1807m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1808m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1810m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1812m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1813m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1815m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1817m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1818m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1820m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1822m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1823m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1825m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1827m 901 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1828m 900 1 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1830m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1832m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1833m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1835m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1837m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1838m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1840m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1842m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1843m 900 0 0 0 0 0 408s 661s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1845m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1847m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1848m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1850m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1852m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1853m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1855m 900 0 0 0 0 0 408s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1857m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1858m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1860m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1862m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1863m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1865m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1867m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1868m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1870m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1872m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1873m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1875m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1877m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1878m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1880m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1882m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1883m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1885m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1887m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1888m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1890m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1892m 900 0 0 0 0 0 409s 660s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1893m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1895m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1897m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1898m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1900m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1902m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1903m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1905m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1907m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1908m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1910m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1912m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1913m 900 0 0 0 0 0 409s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1915m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1917m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1918m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1920m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1922m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1923m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1925m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1927m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1928m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1930m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1932m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1933m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1935m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1937m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1938m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1940m 900 0 0 0 0 0 410s 659s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1942m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1943m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1945m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1947m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1948m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1950m 900 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1952m 899 1 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1953m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1955m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1957m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1958m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1960m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1962m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1963m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1965m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1967m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1968m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1970m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1972m 899 0 0 0 0 0 410s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1973m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1975m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1977m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1978m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1980m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1982m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1983m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1985m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1987m 899 0 0 0 0 0 411s 658s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1988m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1990m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1992m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1993m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1995m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1997m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 1998m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2000m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2002m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2003m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2005m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2007m 899 1 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2008m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2010m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2012m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2013m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2015m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2017m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2018m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2020m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2022m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2023m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2025m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2027m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2028m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2030m 899 0 0 0 0 0 411s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2032m 899 0 0 0 0 0 412s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2033m 899 0 0 0 0 0 412s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2035m 899 0 0 0 0 0 412s 657s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2037m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2038m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2040m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2042m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2043m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2045m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2047m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2048m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2050m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2052m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2053m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2055m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2057m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2058m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2060m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2062m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2063m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2065m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2067m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2068m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2070m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2072m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2073m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2075m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2077m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2078m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2080m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2082m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2083m 899 0 0 0 0 0 412s 656s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2085m 899 0 0 0 0 0 412s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2087m 899 0 0 0 0 0 412s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2088m 899 0 0 0 0 0 412s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2090m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2092m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2093m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2095m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2097m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2098m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2100m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2102m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2103m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2105m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2107m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2108m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2110m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2112m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2113m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2115m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2117m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2118m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2120m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2122m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2123m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2125m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2127m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2128m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2130m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2132m 899 0 0 0 0 0 413s 655s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2133m 899 1 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2135m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2137m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2138m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2140m 899 1 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2142m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2143m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2145m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2147m 899 0 0 0 0 0 413s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2148m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2150m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2152m 900 1 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2153m 899 1 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2155m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2157m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2158m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2160m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2162m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2163m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2165m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2167m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2168m 899 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2170m 898 1 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2172m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2173m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2175m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2177m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2178m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2180m 898 0 0 0 0 0 414s 654s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2182m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2183m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2185m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2187m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2188m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2190m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2192m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2193m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2195m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2197m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2198m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2200m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2202m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2203m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2205m 898 0 0 0 0 0 414s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2207m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2208m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2210m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2212m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2213m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2215m 898 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2217m 897 1 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2218m 897 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2220m 897 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2222m 897 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2223m 897 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2225m 897 0 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2227m 897 1 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2228m 897 1 0 0 0 0 415s 653s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2230m 897 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2232m 897 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2233m 896 1 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2235m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2237m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2238m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2240m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2242m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2243m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2245m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2247m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2248m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2250m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2252m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2253m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2255m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2257m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2258m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2260m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2262m 896 0 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2263m 897 1 0 0 0 0 415s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2265m 898 1 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2267m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2268m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2270m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2272m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2273m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2275m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2277m 898 0 0 0 0 0 416s 652s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2278m 898 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2280m 898 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2282m 898 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2283m 898 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2285m 898 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2287m 897 1 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2288m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2290m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2292m 897 1 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2293m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2295m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2297m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2298m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2300m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2302m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2303m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2305m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2307m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2308m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2310m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2312m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2313m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2315m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2317m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2318m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2320m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2322m 897 0 0 0 0 0 416s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2323m 897 0 0 0 0 0 417s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2325m 897 0 0 0 0 0 417s 651s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2327m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2328m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2330m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2332m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2333m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2335m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2337m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2338m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2340m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2342m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2343m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2345m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2347m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2348m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2350m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2352m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2353m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2355m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2357m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2358m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2360m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2362m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2363m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2365m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2367m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2368m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2370m 897 1 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2372m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2373m 897 0 0 0 0 0 417s 650s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2375m 897 0 0 0 0 0 417s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2377m 897 0 0 0 0 0 417s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2378m 897 0 0 0 0 0 417s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2380m 897 0 0 0 0 0 417s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2382m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2383m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2385m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2387m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2388m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2390m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2392m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2393m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2395m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2397m 897 1 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2398m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2400m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2402m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2403m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2405m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2407m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2408m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2410m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2412m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2413m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2415m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2417m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2418m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2420m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2422m 897 0 0 0 0 0 418s 649s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2423m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2425m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2427m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2428m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2430m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2432m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2433m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2435m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2437m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2438m 897 0 0 0 0 0 418s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2440m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2442m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2443m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2445m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2447m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2448m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2450m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2452m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2453m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2455m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2457m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2458m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2460m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2462m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2463m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2465m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2467m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2468m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2470m 897 0 0 0 0 0 419s 648s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2472m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2473m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2475m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2477m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2478m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2480m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2482m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2483m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2485m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2487m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2488m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2490m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2492m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2493m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2495m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2497m 897 0 0 0 0 0 419s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2498m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2500m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2502m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2503m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2505m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2507m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2508m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2510m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2512m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2513m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2515m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2517m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2518m 897 0 0 0 0 0 420s 647s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2520m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2522m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2523m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2525m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2527m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2528m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2530m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2532m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2533m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2535m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2537m 897 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2538m 896 1 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2540m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2542m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2543m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2545m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2547m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2548m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2550m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2552m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2553m 896 0 0 0 0 0 420s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2555m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2557m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2558m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2560m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2562m 896 1 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2563m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2565m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2567m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2568m 896 0 0 0 0 0 421s 646s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2570m 897 1 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2572m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2573m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2575m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2577m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2578m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2580m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2582m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2583m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2585m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2587m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2588m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2590m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2592m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2593m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2595m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2597m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2598m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2600m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2602m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2603m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2605m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2607m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2608m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2610m 897 1 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2612m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2613m 897 0 0 0 0 0 421s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2615m 897 0 0 0 0 0 422s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2617m 897 0 0 0 0 0 422s 645s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2618m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2620m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2622m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2623m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2625m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2627m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2628m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2630m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2632m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2633m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2635m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2637m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2638m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2640m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2642m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2643m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2645m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2647m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2648m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2650m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2652m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2653m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2655m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2657m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2658m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2660m 897 1 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2662m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2663m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2665m 897 0 0 0 0 0 422s 644s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2667m 897 0 0 0 0 0 422s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2668m 897 0 0 0 0 0 422s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2670m 897 0 0 0 0 0 422s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2672m 897 0 0 0 0 0 422s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2673m 897 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2675m 896 1 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2677m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2678m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2680m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2682m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2683m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2685m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2687m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2688m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2690m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2692m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2693m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2695m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2697m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2698m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2700m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2702m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2703m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2705m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2707m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2708m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2710m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2712m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2713m 896 0 0 0 0 0 423s 643s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2715m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2717m 896 2 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2718m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2720m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2722m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2723m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2725m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2727m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2728m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2730m 896 0 0 0 0 0 423s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2732m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2733m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2735m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2737m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2738m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2740m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2742m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2743m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2745m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2747m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2748m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2750m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2752m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2753m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2755m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2757m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2758m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2760m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2762m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2763m 896 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2765m 897 1 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2767m 897 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2768m 897 0 0 0 0 0 424s 642s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2770m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2772m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2773m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2775m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2777m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2778m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2780m 897 0 0 0 0 0 424s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2782m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2783m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2785m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2787m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2788m 897 1 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2790m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2792m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2793m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2795m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2797m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2798m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2800m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2802m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2803m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2805m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2807m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2808m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2810m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2812m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2813m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2815m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2817m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2818m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2820m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2822m 897 0 0 0 0 0 425s 641s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2823m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2825m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2827m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2828m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2830m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2832m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2833m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2835m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2837m 897 0 0 0 0 0 425s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2838m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2840m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2842m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2843m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2845m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2847m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2848m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2850m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2852m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2853m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2855m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2857m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2858m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2860m 896 1 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2862m 896 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2863m 896 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2865m 896 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2867m 896 1 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2868m 897 1 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2870m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2872m 897 1 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2873m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2875m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2877m 897 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2878m 897 0 0 0 0 0 426s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 8 2880m 897 0 0 0 0 0 426s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 0s 956 0 0 0 0 0 426s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 100s 956 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 200s 956 0 0 0 0 0 426s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 300s 956 0 0 0 0 0 427s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 400s 956 0 0 0 0 0 427s 640s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 500s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 600s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 700s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 800s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 900s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1000s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1100s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1200s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1300s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1400s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1500s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1600s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1700s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1800s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1900s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2000s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2100s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2200s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2300s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2400s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2500s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2600s 956 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2700s 955 1 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2800s 955 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2900s 955 0 0 0 0 0 427s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3000s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3100s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3200s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3300s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3400s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3500s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3600s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3700s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3800s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 3900s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4000s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4100s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4200s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4300s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4400s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4500s 955 0 0 0 0 0 428s 639s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4600s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4700s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4800s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 4900s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5000s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5100s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5200s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5300s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5400s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5500s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5600s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5700s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5800s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 5900s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6000s 955 0 0 0 0 0 428s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6100s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6200s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6300s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6400s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6500s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6600s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6700s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6800s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 6900s 955 2 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7000s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7100s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7200s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7300s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7400s 955 1 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7500s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7600s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7700s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7800s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 7900s 955 0 0 0 0 0 429s 638s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8000s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8100s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8200s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8300s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8400s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8500s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8600s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8700s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8800s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 8900s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9000s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9100s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9200s 955 0 0 0 0 0 429s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9300s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9400s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9500s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9600s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9700s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9800s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 9900s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10000s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10100s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10200s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10300s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10400s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10500s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10600s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10700s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10800s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 10900s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11000s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11100s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11200s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11300s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11400s 955 0 0 0 0 0 430s 637s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11500s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11600s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11700s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11800s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 11900s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12000s 955 1 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12100s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12200s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12300s 955 0 0 0 0 0 430s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12400s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12500s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12600s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12700s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12800s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 12900s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13000s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13100s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13200s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13300s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13400s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13500s 955 1 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13600s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13700s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13800s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 13900s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14000s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14100s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14200s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14300s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14400s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14500s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14600s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14700s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14800s 955 0 0 0 0 0 431s 636s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 14900s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15000s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15100s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15200s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15300s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15400s 955 0 0 0 0 0 431s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15500s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15600s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15700s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15800s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 15900s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16000s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16100s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16200s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16300s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16400s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16500s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16600s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16700s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16800s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 16900s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17000s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17100s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17200s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17300s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17400s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17500s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17600s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17700s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17800s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 17900s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18000s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18100s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18200s 955 0 0 0 0 0 432s 635s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18300s 955 0 0 0 0 0 432s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18400s 955 0 0 0 0 0 432s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18500s 955 0 0 0 0 0 432s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18600s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18700s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18800s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 18900s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19000s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19100s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19200s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19300s 955 1 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19400s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19500s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19600s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19700s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19800s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 19900s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20000s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20100s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20200s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20300s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20400s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20500s 955 1 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20600s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20700s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20800s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 20900s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21000s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21100s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21200s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21300s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21400s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21500s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21600s 955 0 0 0 0 0 433s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21700s 955 0 0 0 0 0 434s 634s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21800s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 21900s 955 1 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22000s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22100s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22200s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22300s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22400s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22500s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22600s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22700s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22800s 955 1 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 22900s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23000s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23100s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23200s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23300s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23400s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23500s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23600s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23700s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23800s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 23900s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24000s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24100s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24200s 955 1 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24300s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24400s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24500s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24600s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24700s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24800s 955 0 0 0 0 0 434s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 24900s 955 0 0 0 0 0 435s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25000s 955 0 0 0 0 0 435s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25100s 955 0 0 0 0 0 435s 633s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25200s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25300s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25400s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25500s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25600s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25700s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25800s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 25900s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26000s 955 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26100s 954 1 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26200s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26300s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26400s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26500s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26600s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26700s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26800s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 26900s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27000s 954 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27100s 953 1 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27200s 952 1 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27300s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27400s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27500s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27600s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27700s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27800s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 27900s 952 0 0 0 0 0 435s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28000s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28100s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28200s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28300s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28400s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28500s 952 0 0 0 0 0 436s 632s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28600s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28700s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28800s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 28900s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29000s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29100s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29200s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29300s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29400s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29500s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29600s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29700s 952 1 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29800s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 29900s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30000s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30100s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30200s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30300s 952 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30400s 951 1 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30500s 951 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30600s 951 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30700s 951 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30800s 951 0 0 0 0 0 436s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 30900s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31000s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31100s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31200s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31300s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31400s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31500s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31600s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31700s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31800s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 31900s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32000s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32100s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32200s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32300s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32400s 951 0 0 0 0 0 437s 631s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32500s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32600s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32700s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32800s 951 1 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 32900s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33000s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33100s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33200s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33300s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33400s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33500s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33600s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33700s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33800s 951 0 0 0 0 0 437s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 33900s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34000s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34100s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34200s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34300s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34400s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34500s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34600s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34700s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34800s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 34900s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35000s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35100s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35200s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35300s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35400s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35500s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35600s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35700s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35800s 951 0 0 0 0 0 438s 630s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 35900s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36000s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36100s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36200s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36300s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36400s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36500s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36600s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36700s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36800s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 36900s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37000s 951 0 0 0 0 0 438s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37100s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37200s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37300s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37400s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37500s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37600s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37700s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37800s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 37900s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38000s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38100s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38200s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38300s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38400s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38500s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38600s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38700s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38800s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 38900s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39000s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39100s 951 0 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39200s 950 1 0 0 0 0 439s 629s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39300s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39400s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39500s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39600s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39700s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39800s 950 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 39900s 949 1 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40000s 949 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40100s 949 0 0 0 0 0 439s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40200s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40300s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40400s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40500s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40600s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40700s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40800s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 40900s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41000s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41100s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41200s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41300s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41400s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41500s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41600s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41700s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41800s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 41900s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42000s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42100s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42200s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42300s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42400s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42500s 949 0 0 0 0 0 440s 628s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42600s 949 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42700s 948 1 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42800s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 42900s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43000s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43100s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43200s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43300s 948 0 0 0 0 0 440s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43400s 948 1 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43500s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43600s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43700s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43800s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 43900s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44000s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44100s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44200s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44300s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44400s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44500s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44600s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44700s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44800s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 44900s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45000s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45100s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45200s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45300s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45400s 948 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45500s 947 1 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45600s 947 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45700s 947 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45800s 947 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 45900s 947 0 0 0 0 0 441s 627s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46000s 947 0 0 0 0 0 441s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46100s 947 0 0 0 0 0 441s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46200s 947 0 0 0 0 0 441s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46300s 947 0 0 0 0 0 441s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46400s 947 0 0 0 0 0 441s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46500s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46600s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46700s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46800s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 46900s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47000s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47100s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47200s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47300s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47400s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47500s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47600s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47700s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47800s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 47900s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48000s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48100s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48200s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48300s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48400s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48500s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48600s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48700s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48800s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 48900s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49000s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49100s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49200s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49300s 947 0 0 0 0 0 442s 626s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49400s 947 0 0 0 0 0 442s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49500s 947 0 0 0 0 0 442s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49600s 947 1 0 0 0 0 442s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49700s 947 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49800s 948 1 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 49900s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50000s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50100s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50200s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50300s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50400s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50500s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50600s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50700s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50800s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 50900s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51000s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51100s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51200s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51300s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51400s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51500s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51600s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51700s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51800s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 51900s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52000s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52100s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52200s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52300s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52400s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52500s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52600s 948 0 0 0 0 0 443s 625s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52700s 948 0 0 0 0 0 443s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52800s 949 1 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 52900s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53000s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53100s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53200s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53300s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53400s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53500s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53600s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53700s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53800s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 53900s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54000s 949 1 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54100s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54200s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54300s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54400s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54500s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54600s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54700s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54800s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 54900s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55000s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55100s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55200s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55300s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55400s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55500s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55600s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55700s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55800s 949 0 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 55900s 949 1 0 0 0 0 444s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56000s 949 0 0 0 0 0 445s 624s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56100s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56200s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56300s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56400s 949 1 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56500s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56600s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56700s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56800s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 56900s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57000s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57100s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57200s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57300s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57400s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57500s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57600s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57700s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57800s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 57900s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58000s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58100s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58200s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58300s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58400s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58500s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58600s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58700s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58800s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 58900s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59000s 949 0 0 0 0 0 445s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59100s 949 0 0 0 0 0 446s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59200s 948 1 0 0 0 0 446s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59300s 948 0 0 0 0 0 446s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59400s 948 0 0 0 0 0 446s 623s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59500s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59600s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59700s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59800s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 59900s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60000s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60100s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60200s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60300s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60400s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60500s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60600s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60700s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60800s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 60900s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61000s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61100s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61200s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61300s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61400s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61500s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61600s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61700s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61800s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 61900s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62000s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62100s 948 0 0 0 0 0 446s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62200s 949 1 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62300s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62400s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62500s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62600s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62700s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62800s 949 0 0 0 0 0 447s 622s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 62900s 949 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63000s 949 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63100s 949 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63200s 948 1 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63300s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63400s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63500s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63600s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63700s 948 1 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63800s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 63900s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64000s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64100s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64200s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64300s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64400s 948 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64500s 947 1 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64600s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64700s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64800s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 64900s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65000s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65100s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65200s 947 1 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65300s 947 0 0 0 0 0 447s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65400s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65500s 947 1 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65600s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65700s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65800s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 65900s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66000s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66100s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66200s 947 0 0 0 0 0 448s 621s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66300s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66400s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66500s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66600s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66700s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66800s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 66900s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67000s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67100s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67200s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67300s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67400s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67500s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67600s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67700s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67800s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 67900s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68000s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68100s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68200s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68300s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68400s 947 0 0 0 0 0 448s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68500s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68600s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68700s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68800s 947 1 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 68900s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69000s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69100s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69200s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69300s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69400s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69500s 947 0 0 0 0 0 449s 620s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69600s 947 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69700s 946 1 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69800s 946 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 69900s 946 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70000s 946 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70100s 946 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70200s 945 1 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70300s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70400s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70500s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70600s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70700s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70800s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 70900s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71000s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71100s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71200s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71300s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71400s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71500s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71600s 945 0 0 0 0 0 449s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71700s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71800s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 71900s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72000s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72100s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72200s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72300s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72400s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72500s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72600s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72700s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72800s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 72900s 945 0 0 0 0 0 450s 619s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73000s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73100s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73200s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73300s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73400s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73500s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73600s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73700s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73800s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 73900s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74000s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74100s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74200s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74300s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74400s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74500s 945 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74600s 946 1 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74700s 946 0 0 0 0 0 450s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74800s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 74900s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75000s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75100s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75200s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75300s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75400s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75500s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75600s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75700s 946 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75800s 945 1 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 75900s 945 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76000s 945 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76100s 945 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76200s 945 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76300s 945 0 0 0 0 0 451s 618s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76400s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76500s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76600s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76700s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76800s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 76900s 945 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77000s 944 1 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77100s 943 1 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77200s 943 1 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77300s 943 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77400s 942 1 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77500s 942 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77600s 942 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77700s 942 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77800s 942 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 77900s 942 0 0 0 0 0 451s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78000s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78100s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78200s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78300s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78400s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78500s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78600s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78700s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78800s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 78900s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79000s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79100s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79200s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79300s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79400s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79500s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79600s 942 0 0 0 0 0 452s 617s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79700s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79800s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 79900s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80000s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80100s 942 1 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80200s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80300s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80400s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80500s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80600s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80700s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80800s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 80900s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81000s 942 0 0 0 0 0 452s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81100s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81200s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81300s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81400s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81500s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81600s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81700s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81800s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 81900s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82000s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82100s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82200s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82300s 942 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82400s 941 1 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82500s 941 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82600s 941 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82700s 941 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82800s 941 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 82900s 941 0 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83000s 940 1 0 0 0 0 453s 616s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83100s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83200s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83300s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83400s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83500s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83600s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83700s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83800s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 83900s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84000s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84100s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84200s 940 0 0 0 0 0 453s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84300s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84400s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84500s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84600s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84700s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84800s 940 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 84900s 939 1 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85000s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85100s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85200s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85300s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85400s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85500s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85600s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85700s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85800s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 85900s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86000s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86100s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86200s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86300s 939 0 0 0 0 0 454s 615s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86400s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86500s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86600s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86700s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86800s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 86900s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87000s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87100s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87200s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87300s 939 0 0 0 0 0 454s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87400s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87500s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87600s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87700s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87800s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 87900s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88000s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88100s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88200s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88300s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88400s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88500s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88600s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88700s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88800s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 88900s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89000s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89100s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89200s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89300s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89400s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89500s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89600s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89700s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89800s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 89900s 939 0 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90000s 939 1 0 0 0 0 455s 614s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90100s 939 0 0 0 0 0 455s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90200s 939 0 0 0 0 0 455s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90300s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90400s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90500s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90600s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90700s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90800s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 90900s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91000s 939 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91100s 938 1 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91200s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91300s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91400s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91500s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91600s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91700s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91800s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 91900s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92000s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92100s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92200s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92300s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92400s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92500s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92600s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92700s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92800s 938 0 0 0 0 0 456s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 92900s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93000s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93100s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93200s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93300s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93400s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93500s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93600s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93700s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93800s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 93900s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94000s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94100s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94200s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94300s 938 0 0 0 0 0 457s 613s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94400s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94500s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94600s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94700s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94800s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 94900s 938 1 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95000s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95100s 938 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95200s 937 1 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95300s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95400s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95500s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95600s 937 1 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95700s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95800s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 95900s 937 0 0 0 0 0 457s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96000s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96100s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96200s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96300s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96400s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96500s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96600s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96700s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96800s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 96900s 937 1 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97000s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97100s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97200s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97300s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97400s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97500s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97600s 937 0 0 0 0 0 458s 612s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97700s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97800s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 97900s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98000s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98100s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98200s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98300s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98400s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98500s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98600s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98700s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98800s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 98900s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99000s 937 0 0 0 0 0 458s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99100s 937 1 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99200s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99300s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99400s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99500s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99600s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99700s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99800s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 99900s 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1667m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1668m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1670m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1672m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1673m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1675m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1677m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1678m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1680m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1682m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1683m 937 0 0 0 0 0 459s 611s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1685m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1687m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1688m 937 1 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1690m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1692m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1693m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1695m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1697m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1698m 937 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1700m 936 1 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1702m 936 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1703m 936 0 0 0 0 0 459s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1705m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1707m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1708m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1710m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1712m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1713m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1715m 936 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1717m 935 1 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1718m 934 1 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1720m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1722m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1723m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1725m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1727m 934 1 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1728m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1730m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1732m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1733m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1735m 934 2 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1737m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1738m 934 0 0 0 0 0 460s 610s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1740m 934 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1742m 934 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1743m 934 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1745m 933 1 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1747m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1748m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1750m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1752m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1753m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1755m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1757m 933 0 0 0 0 0 460s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1758m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1760m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1762m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1763m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1765m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1767m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1768m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1770m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1772m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1773m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1775m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1777m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1778m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1780m 933 1 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1782m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1783m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1785m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1787m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1788m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1790m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1792m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1793m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1795m 933 0 0 0 0 0 461s 609s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1797m 934 1 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1798m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1800m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1802m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1803m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1805m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1807m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1808m 934 0 0 0 0 0 461s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1810m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1812m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1813m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1815m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1817m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1818m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1820m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1822m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1823m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1825m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1827m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1828m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1830m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1832m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1833m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1835m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1837m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1838m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1840m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1842m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1843m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1845m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1847m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1848m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1850m 934 0 0 0 0 0 462s 608s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1852m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1853m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1855m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1857m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1858m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1860m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1862m 934 0 0 0 0 0 462s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1863m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1865m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1867m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1868m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1870m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1872m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1873m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1875m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1877m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1878m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1880m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1882m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1883m 934 1 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1885m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1887m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1888m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1890m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1892m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1893m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1895m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1897m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1898m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1900m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1902m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1903m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1905m 934 0 0 0 0 0 463s 607s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1907m 934 0 0 0 0 0 463s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1908m 934 0 0 0 0 0 463s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1910m 934 0 0 0 0 0 463s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1912m 934 0 0 0 0 0 463s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1913m 934 0 0 0 0 0 463s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1915m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1917m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1918m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1920m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1922m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1923m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1925m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1927m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1928m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1930m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1932m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1933m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1935m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1937m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1938m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1940m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1942m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1943m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1945m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1947m 934 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1948m 933 1 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1950m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1952m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1953m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1955m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1957m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1958m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1960m 933 0 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1962m 933 1 0 0 0 0 464s 606s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1963m 933 0 0 0 0 0 464s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1965m 933 0 0 0 0 0 464s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1967m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1968m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1970m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1972m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1973m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1975m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1977m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1978m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1980m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1982m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1983m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1985m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1987m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1988m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1990m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1992m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1993m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1995m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1997m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 1998m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2000m 933 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2002m 932 1 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2003m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2005m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2007m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2008m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2010m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2012m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2013m 932 0 0 0 0 0 465s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2015m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2017m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2018m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2020m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2022m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2023m 932 0 0 0 0 0 466s 605s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2025m 932 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2027m 932 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2028m 932 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2030m 932 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2032m 931 1 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2033m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2035m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2037m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2038m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2040m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2042m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2043m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2045m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2047m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2048m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2050m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2052m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2053m 931 1 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2055m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2057m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2058m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2060m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2062m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2063m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2065m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2067m 931 0 0 0 0 0 466s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2068m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2070m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2072m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2073m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2075m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2077m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2078m 931 0 0 0 0 0 467s 604s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2080m 931 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2082m 931 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2083m 931 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2085m 930 1 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2087m 930 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2088m 930 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2090m 930 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2092m 930 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2093m 929 1 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2095m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2097m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2098m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2100m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2102m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2103m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2105m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2107m 929 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2108m 928 1 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2110m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2112m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2113m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2115m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2117m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2118m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2120m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2122m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2123m 928 0 0 0 0 0 467s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2125m 927 1 0 0 0 0 468s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2127m 927 0 0 0 0 0 468s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2128m 927 0 0 0 0 0 468s 603s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2130m 927 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2132m 927 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2133m 927 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2135m 927 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2137m 927 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2138m 926 1 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2140m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2142m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2143m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2145m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2147m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2148m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2150m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2152m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2153m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2155m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2157m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2158m 926 1 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2160m 926 1 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2162m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2163m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2165m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2167m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2168m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2170m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2172m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2173m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2175m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2177m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2178m 926 0 0 0 0 0 468s 602s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2180m 926 0 0 0 0 0 468s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2182m 926 0 0 0 0 0 468s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2183m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2185m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2187m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2188m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2190m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2192m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2193m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2195m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2197m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2198m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2200m 926 1 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2202m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2203m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2205m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2207m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2208m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2210m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2212m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2213m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2215m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2217m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2218m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2220m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2222m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2223m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2225m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2227m 926 0 0 0 0 0 469s 601s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2228m 926 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2230m 926 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2232m 926 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2233m 926 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2235m 926 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2237m 925 1 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2238m 925 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2240m 925 0 0 0 0 0 469s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2242m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2243m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2245m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2247m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2248m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2250m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2252m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2253m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2255m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2257m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2258m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2260m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2262m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2263m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2265m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2267m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2268m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2270m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2272m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2273m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2275m 925 0 0 0 0 0 470s 600s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2277m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2278m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2280m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2282m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2283m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2285m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2287m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2288m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2290m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2292m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2293m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2295m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2297m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2298m 925 0 0 0 0 0 470s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2300m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2302m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2303m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2305m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2307m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2308m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2310m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2312m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2313m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2315m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2317m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2318m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2320m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2322m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2323m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2325m 925 0 0 0 0 0 471s 599s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2327m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2328m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2330m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2332m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2333m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2335m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2337m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2338m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2340m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2342m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2343m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2345m 925 1 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2347m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2348m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2350m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2352m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2353m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2355m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2357m 925 0 0 0 0 0 471s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2358m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2360m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2362m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2363m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2365m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2367m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2368m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2370m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2372m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2373m 925 0 0 0 0 0 472s 598s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2375m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2377m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2378m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2380m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2382m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2383m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2385m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2387m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2388m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2390m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2392m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2393m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2395m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2397m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2398m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2400m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2402m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2403m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2405m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2407m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2408m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2410m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2412m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2413m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2415m 925 0 0 0 0 0 472s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2417m 925 0 0 0 0 0 473s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2418m 925 0 0 0 0 0 473s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2420m 925 0 0 0 0 0 473s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2422m 925 0 0 0 0 0 473s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2423m 925 0 0 0 0 0 473s 597s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2425m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2427m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2428m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2430m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2432m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2433m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2435m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2437m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2438m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2440m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2442m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2443m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2445m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2447m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2448m 925 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2450m 924 2 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2452m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2453m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2455m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2457m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2458m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2460m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2462m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2463m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2465m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2467m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2468m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2470m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2472m 924 0 0 0 0 0 473s 596s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2473m 924 0 0 0 0 0 473s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2475m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2477m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2478m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2480m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2482m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2483m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2485m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2487m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2488m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2490m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2492m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2493m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2495m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2497m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2498m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2500m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2502m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2503m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2505m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2507m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2508m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2510m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2512m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2513m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2515m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2517m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2518m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2520m 924 0 0 0 0 0 474s 595s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2522m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2523m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2525m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2527m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2528m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2530m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2532m 924 0 0 0 0 0 474s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2533m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2535m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2537m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2538m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2540m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2542m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2543m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2545m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2547m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2548m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2550m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2552m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2553m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2555m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2557m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2558m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2560m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2562m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2563m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2565m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2567m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2568m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2570m 924 0 0 0 0 0 475s 594s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2572m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2573m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2575m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2577m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2578m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2580m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2582m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2583m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2585m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2587m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2588m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2590m 924 0 0 0 0 0 475s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2592m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2593m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2595m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2597m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2598m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2600m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2602m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2603m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2605m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2607m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2608m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2610m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2612m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2613m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2615m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2617m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2618m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2620m 924 0 0 0 0 0 476s 593s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2622m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2623m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2625m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2627m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2628m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2630m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2632m 924 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2633m 925 1 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2635m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2637m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2638m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2640m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2642m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2643m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2645m 925 0 0 0 0 0 476s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2647m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2648m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2650m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2652m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2653m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2655m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2657m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2658m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2660m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2662m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2663m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2665m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2667m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2668m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2670m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2672m 925 0 0 0 0 0 477s 592s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2673m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2675m 925 1 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2677m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2678m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2680m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2682m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2683m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2685m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2687m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2688m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2690m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2692m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2693m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2695m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2697m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2698m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2700m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2702m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2703m 925 0 0 0 0 0 477s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2705m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2707m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2708m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2710m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2712m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2713m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2715m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2717m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2718m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2720m 925 0 0 0 0 0 478s 591s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2722m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2723m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2725m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2727m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2728m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2730m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2732m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2733m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2735m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2737m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2738m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2740m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2742m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2743m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2745m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2747m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2748m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2750m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2752m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2753m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2755m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2757m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2758m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2760m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2762m 925 0 0 0 0 0 478s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2763m 925 0 0 0 0 0 479s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2765m 925 0 0 0 0 0 479s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2767m 925 0 0 0 0 0 479s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2768m 925 0 0 0 0 0 479s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2770m 925 0 0 0 0 0 479s 590s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2772m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2773m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2775m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2777m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2778m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2780m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2782m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2783m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2785m 925 1 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2787m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2788m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2790m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2792m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2793m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2795m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2797m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2798m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2800m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2802m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2803m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2805m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2807m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2808m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2810m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2812m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2813m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2815m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2817m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2818m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2820m 925 0 0 0 0 0 479s 589s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2822m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2823m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2825m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2827m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2828m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2830m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2832m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2833m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2835m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2837m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2838m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2840m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2842m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2843m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2845m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2847m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2848m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2850m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2852m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2853m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2855m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2857m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2858m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2860m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2862m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2863m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2865m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2867m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2868m 925 0 0 0 0 0 480s 588s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2870m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2872m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2873m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2875m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2877m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2878m 925 0 0 0 0 0 480s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 9 2880m 925 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 0s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 100s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 200s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 300s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 400s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 500s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 600s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 700s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 800s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 900s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1000s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1100s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1200s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1300s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1400s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1500s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1600s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1700s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1800s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1900s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2000s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2100s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2200s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2300s 1013 0 0 0 0 0 481s 587s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2400s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2500s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2600s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2700s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2800s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2900s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3000s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3100s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3200s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3300s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3400s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3500s 1013 0 0 0 0 0 481s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3600s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3700s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3800s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 3900s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4000s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4100s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4200s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4300s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4400s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4500s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4600s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4700s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4800s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 4900s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5000s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5100s 1013 0 0 0 0 0 482s 586s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5200s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5300s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5400s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5500s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5600s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5700s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5800s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 5900s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6000s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6100s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6200s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6300s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6400s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6500s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6600s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6700s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6800s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 6900s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7000s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7100s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7200s 1013 0 0 0 0 0 482s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7300s 1012 1 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7400s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7500s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7600s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7700s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7800s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 7900s 1012 0 0 0 0 0 483s 585s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8000s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8100s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8200s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8300s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8400s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8500s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8600s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8700s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8800s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 8900s 1012 1 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9000s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9100s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9200s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9300s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9400s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9500s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9600s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9700s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9800s 1012 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 9900s 1011 1 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10000s 1011 1 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10100s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10200s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10300s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10400s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10500s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10600s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10700s 1011 0 0 0 0 0 483s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10800s 1011 0 0 0 0 0 484s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 10900s 1011 0 0 0 0 0 484s 584s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11000s 1011 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11100s 1010 1 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11200s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11300s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11400s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11500s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11600s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11700s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11800s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 11900s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12000s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12100s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12200s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12300s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12400s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12500s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12600s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12700s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12800s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 12900s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13000s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13100s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13200s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13300s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13400s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13500s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13600s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13700s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13800s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 13900s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14000s 1010 0 0 0 0 0 484s 583s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14100s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14200s 1010 1 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14300s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14400s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14500s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14600s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14700s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14800s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 14900s 1010 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15000s 1009 1 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15100s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15200s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15300s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15400s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15500s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15600s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15700s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15800s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 15900s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16000s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16100s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16200s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16300s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16400s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16500s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16600s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16700s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16800s 1009 0 0 0 0 0 485s 582s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 16900s 1008 1 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17000s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17100s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17200s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17300s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17400s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17500s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17600s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17700s 1008 0 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17800s 1008 1 0 0 0 0 485s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 17900s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18000s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18100s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18200s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18300s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18400s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18500s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18600s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18700s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18800s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 18900s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19000s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19100s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19200s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19300s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19400s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19500s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19600s 1008 0 0 0 0 0 486s 581s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19700s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19800s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 19900s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20000s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20100s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20200s 1008 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20300s 1007 1 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20400s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20500s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20600s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20700s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20800s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 20900s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21000s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21100s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21200s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21300s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21400s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21500s 1007 0 0 0 0 0 486s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21600s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21700s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21800s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 21900s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22000s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22100s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22200s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22300s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22400s 1007 0 0 0 0 0 487s 580s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22500s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22600s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22700s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22800s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 22900s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23000s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23100s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23200s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23300s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23400s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23500s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23600s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23700s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23800s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 23900s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24000s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24100s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24200s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24300s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24400s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24500s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24600s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24700s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24800s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 24900s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25000s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25100s 1007 0 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25200s 1007 1 0 0 0 0 487s 579s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25300s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25400s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25500s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25600s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25700s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25800s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 25900s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26000s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26100s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26200s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26300s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26400s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26500s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26600s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26700s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26800s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 26900s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27000s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27100s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27200s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27300s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27400s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27500s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27600s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27700s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27800s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 27900s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28000s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28100s 1007 0 0 0 0 0 488s 578s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28200s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28300s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28400s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28500s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28600s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28700s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28800s 1007 0 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 28900s 1006 1 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29000s 1005 1 0 0 0 0 488s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29100s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29200s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29300s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29400s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29500s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29600s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29700s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29800s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 29900s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30000s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30100s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30200s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30300s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30400s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30500s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30600s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30700s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30800s 1005 0 0 0 0 0 489s 577s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 30900s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31000s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31100s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31200s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31300s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31400s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31500s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31600s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31700s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31800s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 31900s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32000s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32100s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32200s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32300s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32400s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32500s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32600s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32700s 1005 0 0 0 0 0 489s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32800s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 32900s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33000s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33100s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33200s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33300s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33400s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33500s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33600s 1005 0 0 0 0 0 490s 576s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33700s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33800s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 33900s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34000s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34100s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34200s 1005 1 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34300s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34400s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34500s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34600s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34700s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34800s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 34900s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35000s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35100s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35200s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35300s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35400s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35500s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35600s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35700s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35800s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 35900s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36000s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36100s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36200s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36300s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36400s 1005 0 0 0 0 0 490s 575s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36500s 1005 0 0 0 0 0 490s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36600s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36700s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36800s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 36900s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37000s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37100s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37200s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37300s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37400s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37500s 1005 1 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37600s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37700s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37800s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 37900s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38000s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38100s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38200s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38300s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38400s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38500s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38600s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38700s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38800s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 38900s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39000s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39100s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39200s 1005 0 0 0 0 0 491s 574s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39300s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39400s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39500s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39600s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39700s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39800s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 39900s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40000s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40100s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40200s 1005 0 0 0 0 0 491s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40300s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40400s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40500s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40600s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40700s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40800s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 40900s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41000s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41100s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41200s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41300s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41400s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41500s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41600s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41700s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41800s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 41900s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42000s 1005 0 0 0 0 0 492s 573s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42100s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42200s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42300s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42400s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42500s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42600s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42700s 1005 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42800s 1006 1 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 42900s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43000s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43100s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43200s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43300s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43400s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43500s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43600s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43700s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43800s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 43900s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44000s 1006 0 0 0 0 0 492s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44100s 1006 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44200s 1006 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44300s 1006 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44400s 1005 1 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44500s 1005 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44600s 1005 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44700s 1005 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44800s 1005 0 0 0 0 0 493s 572s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 44900s 1005 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45000s 1005 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45100s 1005 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45200s 1006 2 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45300s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45400s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45500s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45600s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45700s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45800s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 45900s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46000s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46100s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46200s 1006 1 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46300s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46400s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46500s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46600s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46700s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46800s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 46900s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47000s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47100s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47200s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47300s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47400s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47500s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47600s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47700s 1006 0 0 0 0 0 493s 571s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47800s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 47900s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48000s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48100s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48200s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48300s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48400s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48500s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48600s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48700s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48800s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 48900s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49000s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49100s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49200s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49300s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49400s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49500s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49600s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49700s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49800s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 49900s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50000s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50100s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50200s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50300s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50400s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50500s 1006 0 0 0 0 0 494s 570s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50600s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50700s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50800s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 50900s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51000s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51100s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51200s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51300s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51400s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51500s 1006 0 0 0 0 0 494s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51600s 1005 1 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51700s 1005 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51800s 1005 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 51900s 1005 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52000s 1005 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52100s 1004 1 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52200s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52300s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52400s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52500s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52600s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52700s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52800s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 52900s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53000s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53100s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53200s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53300s 1004 0 0 0 0 0 495s 569s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53400s 1004 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53500s 1004 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53600s 1004 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53700s 1004 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53800s 1003 1 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 53900s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54000s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54100s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54200s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54300s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54400s 1003 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54500s 1002 1 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54600s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54700s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54800s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 54900s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55000s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55100s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55200s 1002 0 0 0 0 0 495s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55300s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55400s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55500s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55600s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55700s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55800s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 55900s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56000s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56100s 1002 0 0 0 0 0 496s 568s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56200s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56300s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56400s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56500s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56600s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56700s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56800s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 56900s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57000s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57100s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57200s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57300s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57400s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57500s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57600s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57700s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57800s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 57900s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58000s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58100s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58200s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58300s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58400s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58500s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58600s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58700s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58800s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 58900s 1002 0 0 0 0 0 496s 567s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59000s 1002 0 0 0 0 0 496s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59100s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59200s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59300s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59400s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59500s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59600s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59700s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59800s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 59900s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60000s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60100s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60200s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60300s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60400s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60500s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60600s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60700s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60800s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 60900s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61000s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61100s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61200s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61300s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61400s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61500s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61600s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61700s 1002 1 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61800s 1002 0 0 0 0 0 497s 566s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 61900s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62000s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62100s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62200s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62300s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62400s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62500s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62600s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62700s 1002 0 0 0 0 0 497s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62800s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 62900s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63000s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63100s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63200s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63300s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63400s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63500s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63600s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63700s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63800s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 63900s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64000s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64100s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64200s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64300s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64400s 1002 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64500s 1001 1 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64600s 1001 0 0 0 0 0 498s 565s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64700s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64800s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 64900s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65000s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65100s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65200s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65300s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65400s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65500s 1001 1 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65600s 1001 1 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65700s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65800s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 65900s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66000s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66100s 1001 1 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66200s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66300s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66400s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66500s 1001 0 0 0 0 0 498s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66600s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66700s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66800s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 66900s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67000s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67100s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67200s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67300s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67400s 1001 0 0 0 0 0 499s 564s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67500s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67600s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67700s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67800s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 67900s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68000s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68100s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68200s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68300s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68400s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68500s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68600s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68700s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68800s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 68900s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69000s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69100s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69200s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69300s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69400s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69500s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69600s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69700s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69800s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 69900s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70000s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70100s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70200s 1001 0 0 0 0 0 499s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70300s 1001 0 0 0 0 0 500s 563s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70400s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70500s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70600s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70700s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70800s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 70900s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71000s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71100s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71200s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71300s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71400s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71500s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71600s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71700s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71800s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 71900s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72000s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72100s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72200s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72300s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72400s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72500s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72600s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72700s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72800s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 72900s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73000s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73100s 1001 0 0 0 0 0 500s 562s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73200s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73300s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73400s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73500s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73600s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73700s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73800s 1001 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 73900s 1000 1 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74000s 1000 0 0 0 0 0 500s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74100s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74200s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74300s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74400s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74500s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74600s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74700s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74800s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 74900s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75000s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75100s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75200s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75300s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75400s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75500s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75600s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75700s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75800s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 75900s 1000 0 0 0 0 0 501s 561s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76000s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76100s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76200s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76300s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76400s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76500s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76600s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76700s 1000 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76800s 1001 1 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 76900s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77000s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77100s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77200s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77300s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77400s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77500s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77600s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77700s 1001 0 0 0 0 0 501s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77800s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 77900s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78000s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78100s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78200s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78300s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78400s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78500s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78600s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78700s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78800s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 78900s 1001 0 0 0 0 0 502s 560s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79000s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79100s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79200s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79300s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79400s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79500s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79600s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79700s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79800s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 79900s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80000s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80100s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80200s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80300s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80400s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80500s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80600s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80700s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80800s 1001 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 80900s 1000 1 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81000s 1000 0 0 0 0 0 502s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81100s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81200s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81300s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81400s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81500s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81600s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81700s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81800s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 81900s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82000s 1000 0 0 0 0 0 503s 559s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82100s 1000 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82200s 1000 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82300s 1000 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82400s 1001 1 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82500s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82600s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82700s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82800s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 82900s 1001 1 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83000s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83100s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83200s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83300s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83400s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83500s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83600s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83700s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83800s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 83900s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84000s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84100s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84200s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84300s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84400s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84500s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84600s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84700s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84800s 1001 0 0 0 0 0 503s 558s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 84900s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85000s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85100s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85200s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85300s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85400s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85500s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85600s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85700s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85800s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 85900s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86000s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86100s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86200s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86300s 1001 1 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86400s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86500s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86600s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86700s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86800s 1001 1 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 86900s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87000s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87100s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87200s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87300s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87400s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87500s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87600s 1001 0 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87700s 1001 1 0 0 0 0 504s 557s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87800s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 87900s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88000s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88100s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88200s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88300s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88400s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88500s 1001 0 0 0 0 0 504s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88600s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88700s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88800s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 88900s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89000s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89100s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89200s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89300s 1001 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89400s 1000 1 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89500s 1000 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89600s 1000 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89700s 1000 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89800s 1000 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 89900s 999 1 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90000s 999 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90100s 999 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90200s 999 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90300s 999 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90400s 1000 1 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90500s 1000 0 0 0 0 0 505s 556s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90600s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90700s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90800s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 90900s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91000s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91100s 1000 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91200s 999 1 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91300s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91400s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91500s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91600s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91700s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91800s 999 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 91900s 998 1 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92000s 998 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92100s 998 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92200s 998 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92300s 998 0 0 0 0 0 505s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92400s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92500s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92600s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92700s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92800s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 92900s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93000s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93100s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93200s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93300s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93400s 998 0 0 0 0 0 506s 555s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93500s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93600s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93700s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93800s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 93900s 999 1 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94000s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94100s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94200s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94300s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94400s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94500s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94600s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94700s 999 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94800s 998 1 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 94900s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95000s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95100s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95200s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95300s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95400s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95500s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95600s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95700s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95800s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 95900s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96000s 998 0 0 0 0 0 506s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96100s 998 0 0 0 0 0 507s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96200s 998 0 0 0 0 0 507s 554s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96300s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96400s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96500s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96600s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96700s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96800s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 96900s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97000s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97100s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97200s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97300s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97400s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97500s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97600s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97700s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97800s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 97900s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98000s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98100s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98200s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98300s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98400s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98500s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98600s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98700s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98800s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 98900s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99000s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99100s 998 0 0 0 0 0 507s 553s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99200s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99300s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99400s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99500s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99600s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99700s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99800s 998 0 0 0 0 0 507s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 99900s 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1667m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1668m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1670m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1672m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1673m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1675m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1677m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1678m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1680m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1682m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1683m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1685m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1687m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1688m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1690m 998 1 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1692m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1693m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1695m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1697m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1698m 998 0 0 0 0 0 508s 552s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1700m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1702m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1703m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1705m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1707m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1708m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1710m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1712m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1713m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1715m 998 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1717m 999 1 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1718m 999 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1720m 999 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1722m 999 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1723m 999 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1725m 999 0 0 0 0 0 508s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1727m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1728m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1730m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1732m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1733m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1735m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1737m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1738m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1740m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1742m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1743m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1745m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1747m 999 0 0 0 0 0 509s 551s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1748m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1750m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1752m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1753m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1755m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1757m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1758m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1760m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1762m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1763m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1765m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1767m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1768m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1770m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1772m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1773m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1775m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1777m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1778m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1780m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1782m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1783m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1785m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1787m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1788m 999 0 0 0 0 0 509s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1790m 999 0 0 0 0 0 510s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1792m 999 0 0 0 0 0 510s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1793m 999 0 0 0 0 0 510s 550s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1795m 999 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1797m 999 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1798m 999 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1800m 999 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1802m 998 1 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1803m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1805m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1807m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1808m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1810m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1812m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1813m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1815m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1817m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1818m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1820m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1822m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1823m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1825m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1827m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1828m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1830m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1832m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1833m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1835m 998 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1837m 997 1 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1838m 997 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1840m 997 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1842m 997 0 0 0 0 0 510s 549s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1843m 997 0 0 0 0 0 510s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1845m 997 0 0 0 0 0 510s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1847m 997 0 0 0 0 0 510s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1848m 997 0 0 0 0 0 510s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1850m 997 0 0 0 0 0 510s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1852m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1853m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1855m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1857m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1858m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1860m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1862m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1863m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1865m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1867m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1868m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1870m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1872m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1873m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1875m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1877m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1878m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1880m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1882m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1883m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1885m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1887m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1888m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1890m 997 0 0 0 0 0 511s 548s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1892m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1893m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1895m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1897m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1898m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1900m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1902m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1903m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1905m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1907m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1908m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1910m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1912m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1913m 997 0 0 0 0 0 511s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1915m 997 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1917m 997 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1918m 997 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1920m 997 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1922m 997 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1923m 996 1 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1925m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1927m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1928m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1930m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1932m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1933m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1935m 996 0 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1937m 996 1 0 0 0 0 512s 547s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1938m 996 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1940m 996 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1942m 995 2 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1943m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1945m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1947m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1948m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1950m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1952m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1953m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1955m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1957m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1958m 995 1 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1960m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1962m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1963m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1965m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1967m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1968m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1970m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1972m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1973m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1975m 995 0 0 0 0 0 512s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1977m 994 1 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1978m 994 0 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1980m 994 0 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1982m 994 0 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1983m 994 0 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1985m 994 0 0 0 0 0 513s 546s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1987m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1988m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1990m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1992m 994 1 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1993m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1995m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1997m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 1998m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2000m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2002m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2003m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2005m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2007m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2008m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2010m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2012m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2013m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2015m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2017m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2018m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2020m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2022m 994 1 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2023m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2025m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2027m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2028m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2030m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2032m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2033m 994 0 0 0 0 0 513s 545s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2035m 994 0 0 0 0 0 513s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2037m 994 1 0 0 0 0 513s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2038m 994 0 0 0 0 0 513s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2040m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2042m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2043m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2045m 994 1 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2047m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2048m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2050m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2052m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2053m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2055m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2057m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2058m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2060m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2062m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2063m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2065m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2067m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2068m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2070m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2072m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2073m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2075m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2077m 994 1 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2078m 994 0 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2080m 993 1 0 0 0 0 514s 544s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2082m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2083m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2085m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2087m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2088m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2090m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2092m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2093m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2095m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2097m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2098m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2100m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2102m 993 0 0 0 0 0 514s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2103m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2105m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2107m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2108m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2110m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2112m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2113m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2115m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2117m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2118m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2120m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2122m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2123m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2125m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2127m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2128m 993 0 0 0 0 0 515s 543s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2130m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2132m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2133m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2135m 993 1 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2137m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2138m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2140m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2142m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2143m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2145m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2147m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2148m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2150m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2152m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2153m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2155m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2157m 993 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2158m 992 1 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2160m 992 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2162m 991 1 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2163m 991 0 0 0 0 0 515s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2165m 991 1 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2167m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2168m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2170m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2172m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2173m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2175m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2177m 991 0 0 0 0 0 516s 542s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2178m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2180m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2182m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2183m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2185m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2187m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2188m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2190m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2192m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2193m 991 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2195m 990 1 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2197m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2198m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2200m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2202m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2203m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2205m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2207m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2208m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2210m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2212m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2213m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2215m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2217m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2218m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2220m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2222m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2223m 990 0 0 0 0 0 516s 541s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2225m 990 0 0 0 0 0 516s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2227m 990 0 0 0 0 0 516s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2228m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2230m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2232m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2233m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2235m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2237m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2238m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2240m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2242m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2243m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2245m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2247m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2248m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2250m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2252m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2253m 990 1 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2255m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2257m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2258m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2260m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2262m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2263m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2265m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2267m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2268m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2270m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2272m 990 0 0 0 0 0 517s 540s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2273m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2275m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2277m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2278m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2280m 990 1 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2282m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2283m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2285m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2287m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2288m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2290m 990 0 0 0 0 0 517s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2292m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2293m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2295m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2297m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2298m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2300m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2302m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2303m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2305m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2307m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2308m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2310m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2312m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2313m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2315m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2317m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2318m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2320m 990 0 0 0 0 0 518s 539s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2322m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2323m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2325m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2327m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2328m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2330m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2332m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2333m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2335m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2337m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2338m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2340m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2342m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2343m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2345m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2347m 990 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2348m 989 1 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2350m 989 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2352m 989 0 0 0 0 0 518s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2353m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2355m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2357m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2358m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2360m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2362m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2363m 989 1 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2365m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2367m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2368m 989 0 0 0 0 0 519s 538s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2370m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2372m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2373m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2375m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2377m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2378m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2380m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2382m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2383m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2385m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2387m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2388m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2390m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2392m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2393m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2395m 990 1 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2397m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2398m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2400m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2402m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2403m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2405m 990 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2407m 989 1 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2408m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2410m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2412m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2413m 989 1 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2415m 989 0 0 0 0 0 519s 537s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2417m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2418m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2420m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2422m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2423m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2425m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2427m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2428m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2430m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2432m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2433m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2435m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2437m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2438m 989 1 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2440m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2442m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2443m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2445m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2447m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2448m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2450m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2452m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2453m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2455m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2457m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2458m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2460m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2462m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2463m 989 0 0 0 0 0 520s 536s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2465m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2467m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2468m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2470m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2472m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2473m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2475m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2477m 989 0 0 0 0 0 520s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2478m 989 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2480m 989 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2482m 989 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2483m 988 1 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2485m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2487m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2488m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2490m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2492m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2493m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2495m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2497m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2498m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2500m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2502m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2503m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2505m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2507m 988 1 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2508m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2510m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2512m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2513m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2515m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2517m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2518m 988 0 0 0 0 0 521s 535s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2520m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2522m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2523m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2525m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2527m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2528m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2530m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2532m 988 0 0 0 0 0 521s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2533m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2535m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2537m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2538m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2540m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2542m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2543m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2545m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2547m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2548m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2550m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2552m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2553m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2555m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2557m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2558m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2560m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2562m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2563m 988 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2565m 987 1 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2567m 987 0 0 0 0 0 522s 534s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2568m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2570m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2572m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2573m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2575m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2577m 987 1 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2578m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2580m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2582m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2583m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2585m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2587m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2588m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2590m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2592m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2593m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2595m 987 0 0 0 0 0 522s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2597m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2598m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2600m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2602m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2603m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2605m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2607m 987 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2608m 986 1 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2610m 986 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2612m 986 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2613m 986 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2615m 986 0 0 0 0 0 523s 533s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2617m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2618m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2620m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2622m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2623m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2625m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2627m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2628m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2630m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2632m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2633m 986 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2635m 985 1 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2637m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2638m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2640m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2642m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2643m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2645m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2647m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2648m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2650m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2652m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2653m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2655m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2657m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2658m 985 0 0 0 0 0 523s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2660m 985 0 0 0 0 0 524s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2662m 985 0 0 0 0 0 524s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2663m 985 0 0 0 0 0 524s 532s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2665m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2667m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2668m 986 1 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2670m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2672m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2673m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2675m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2677m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2678m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2680m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2682m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2683m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2685m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2687m 986 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2688m 985 1 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2690m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2692m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2693m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2695m 985 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2697m 984 1 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2698m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2700m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2702m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2703m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2705m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2707m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2708m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2710m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2712m 984 0 0 0 0 0 524s 531s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2713m 984 0 0 0 0 0 524s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2715m 984 0 0 0 0 0 524s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2717m 984 0 0 0 0 0 524s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2718m 984 0 0 0 0 0 524s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2720m 984 0 0 0 0 0 524s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2722m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2723m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2725m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2727m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2728m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2730m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2732m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2733m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2735m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2737m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2738m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2740m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2742m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2743m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2745m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2747m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2748m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2750m 984 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2752m 983 1 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2753m 983 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2755m 983 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2757m 982 1 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2758m 982 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2760m 982 0 0 0 0 0 525s 530s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2762m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2763m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2765m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2767m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2768m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2770m 982 1 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2772m 982 1 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2773m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2775m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2777m 982 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2778m 981 1 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2780m 981 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2782m 981 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2783m 981 0 0 0 0 0 525s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2785m 981 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2787m 981 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2788m 981 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2790m 981 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2792m 980 1 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2793m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2795m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2797m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2798m 980 1 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2800m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2802m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2803m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2805m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2807m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2808m 980 0 0 0 0 0 526s 529s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2810m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2812m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2813m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2815m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2817m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2818m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2820m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2822m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2823m 980 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2825m 979 1 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2827m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2828m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2830m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2832m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2833m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2835m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2837m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2838m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2840m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2842m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2843m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2845m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2847m 979 0 0 0 0 0 526s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2848m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2850m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2852m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2853m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2855m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2857m 979 0 0 0 0 0 527s 528s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2858m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2860m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2862m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2863m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2865m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2867m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2868m 979 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2870m 978 1 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2872m 978 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2873m 978 1 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2875m 978 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2877m 978 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2878m 978 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 10 2880m 978 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 0s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 100s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 200s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 300s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 400s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 500s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 600s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 700s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 800s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 900s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1000s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1100s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1200s 948 0 0 0 0 0 527s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1300s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1400s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1500s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1600s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1700s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1800s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1900s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2000s 948 0 0 0 0 0 528s 527s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2100s 948 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2200s 947 1 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2300s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2400s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2500s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2600s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2700s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2800s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2900s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3000s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3100s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3200s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3300s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3400s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3500s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3600s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3700s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3800s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 3900s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4000s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4100s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4200s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4300s 947 0 0 0 0 0 528s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4400s 947 1 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4500s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4600s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4700s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4800s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 4900s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5000s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5100s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5200s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5300s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5400s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5500s 947 0 0 0 0 0 529s 526s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5600s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5700s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5800s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 5900s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6000s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6100s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6200s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6300s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6400s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6500s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6600s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6700s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6800s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 6900s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7000s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7100s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7200s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7300s 947 0 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7400s 946 1 0 0 0 0 529s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7500s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7600s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7700s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7800s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 7900s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8000s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8100s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8200s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8300s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8400s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8500s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8600s 946 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8700s 947 1 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8800s 947 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 8900s 947 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9000s 947 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9100s 947 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9200s 947 0 0 0 0 0 530s 525s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9300s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9400s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9500s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9600s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9700s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9800s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 9900s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10000s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10100s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10200s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10300s 947 0 0 0 0 0 530s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10400s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10500s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10600s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10700s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10800s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 10900s 947 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11000s 947 1 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11100s 948 1 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11200s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11300s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11400s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11500s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11600s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11700s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11800s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 11900s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12000s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12100s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12200s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12300s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12400s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12500s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12600s 948 0 0 0 0 0 531s 524s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12700s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12800s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 12900s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13000s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13100s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13200s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13300s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13400s 948 0 0 0 0 0 531s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13500s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13600s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13700s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13800s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 13900s 948 1 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14000s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14100s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14200s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14300s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14400s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14500s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14600s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14700s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14800s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 14900s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15000s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15100s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15200s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15300s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15400s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15500s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15600s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15700s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15800s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 15900s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16000s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16100s 948 0 0 0 0 0 532s 523s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16200s 948 0 0 0 0 0 532s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16300s 948 0 0 0 0 0 532s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16400s 948 0 0 0 0 0 532s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16500s 947 1 0 0 0 0 532s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16600s 947 0 0 0 0 0 532s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16700s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16800s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 16900s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17000s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17100s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17200s 947 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17300s 946 1 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17400s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17500s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17600s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17700s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17800s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 17900s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18000s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18100s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18200s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18300s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18400s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18500s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18600s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18700s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18800s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 18900s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19000s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19100s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19200s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19300s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19400s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19500s 946 0 0 0 0 0 533s 522s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19600s 946 0 0 0 0 0 533s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19700s 946 0 0 0 0 0 533s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19800s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 19900s 946 1 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20000s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20100s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20200s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20300s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20400s 946 1 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20500s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20600s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20700s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20800s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 20900s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21000s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21100s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21200s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21300s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21400s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21500s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21600s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21700s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21800s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 21900s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22000s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22100s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22200s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22300s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22400s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22500s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22600s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22700s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22800s 946 0 0 0 0 0 534s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 22900s 946 0 0 0 0 0 535s 521s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23000s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23100s 946 1 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23200s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23300s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23400s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23500s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23600s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23700s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23800s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 23900s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24000s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24100s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24200s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24300s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24400s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24500s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24600s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24700s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24800s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 24900s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25000s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25100s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25200s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25300s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25400s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25500s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25600s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25700s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25800s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 25900s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26000s 946 0 0 0 0 0 535s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26100s 946 0 0 0 0 0 536s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26200s 946 0 0 0 0 0 536s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26300s 946 0 0 0 0 0 536s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26400s 946 0 0 0 0 0 536s 520s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26500s 946 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26600s 946 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26700s 946 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26800s 946 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 26900s 946 1 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27000s 946 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27100s 945 1 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27200s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27300s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27400s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27500s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27600s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27700s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27800s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 27900s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28000s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28100s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28200s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28300s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28400s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28500s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28600s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28700s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28800s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 28900s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29000s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29100s 945 0 0 0 0 0 536s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29200s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29300s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29400s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29500s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29600s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29700s 945 0 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29800s 944 1 0 0 0 0 537s 519s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 29900s 943 1 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30000s 943 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30100s 942 1 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30200s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30300s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30400s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30500s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30600s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30700s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30800s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 30900s 942 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31000s 941 1 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31100s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31200s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31300s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31400s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31500s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31600s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31700s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31800s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 31900s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32000s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32100s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32200s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32300s 941 0 0 0 0 0 537s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32400s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32500s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32600s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32700s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32800s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 32900s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33000s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33100s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33200s 941 0 0 0 0 0 538s 518s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33300s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33400s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33500s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33600s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33700s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33800s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 33900s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34000s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34100s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34200s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34300s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34400s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34500s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34600s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34700s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34800s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 34900s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35000s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35100s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35200s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35300s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35400s 941 0 0 0 0 0 538s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35500s 941 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35600s 940 1 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35700s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35800s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 35900s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36000s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36100s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36200s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36300s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36400s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36500s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36600s 940 0 0 0 0 0 539s 517s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36700s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36800s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 36900s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37000s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37100s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37200s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37300s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37400s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37500s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37600s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37700s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37800s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 37900s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38000s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38100s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38200s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38300s 940 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38400s 939 1 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38500s 939 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38600s 939 0 0 0 0 0 539s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38700s 939 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38800s 939 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 38900s 939 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39000s 939 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39100s 938 1 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39200s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39300s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39400s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39500s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39600s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39700s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39800s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 39900s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40000s 938 0 0 0 0 0 540s 516s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40100s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40200s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40300s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40400s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40500s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40600s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40700s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40800s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 40900s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41000s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41100s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41200s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41300s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41400s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41500s 938 1 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41600s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41700s 938 0 0 0 0 0 540s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41800s 937 1 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 41900s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42000s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42100s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42200s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42300s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42400s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42500s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42600s 937 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42700s 936 1 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42800s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 42900s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43000s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43100s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43200s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43300s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43400s 936 0 0 0 0 0 541s 515s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43500s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43600s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43700s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43800s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 43900s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44000s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44100s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44200s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44300s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44400s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44500s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44600s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44700s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44800s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 44900s 936 0 0 0 0 0 541s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45000s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45100s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45200s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45300s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45400s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45500s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45600s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45700s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45800s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 45900s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46000s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46100s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46200s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46300s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46400s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46500s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46600s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46700s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46800s 936 0 0 0 0 0 542s 514s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 46900s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47000s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47100s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47200s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47300s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47400s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47500s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47600s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47700s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47800s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 47900s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48000s 936 0 0 0 0 0 542s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48100s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48200s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48300s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48400s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48500s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48600s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48700s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48800s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 48900s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49000s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49100s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49200s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49300s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49400s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49500s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49600s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49700s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49800s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 49900s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50000s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50100s 936 0 0 0 0 0 543s 513s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50200s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50300s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50400s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50500s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50600s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50700s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50800s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 50900s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51000s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51100s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51200s 936 0 0 0 0 0 543s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51300s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51400s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51500s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51600s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51700s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51800s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 51900s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52000s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52100s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52200s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52300s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52400s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52500s 936 1 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52600s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52700s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52800s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 52900s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53000s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53100s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53200s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53300s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53400s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53500s 936 0 0 0 0 0 544s 512s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53600s 936 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53700s 936 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53800s 936 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 53900s 936 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54000s 936 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54100s 935 1 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54200s 935 1 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54300s 935 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54400s 935 0 0 0 0 0 544s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54500s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54600s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54700s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54800s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 54900s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55000s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55100s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55200s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55300s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55400s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55500s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55600s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55700s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55800s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 55900s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56000s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56100s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56200s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56300s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56400s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56500s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56600s 935 1 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56700s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56800s 935 1 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 56900s 935 0 0 0 0 0 545s 511s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57000s 934 1 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57100s 934 0 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57200s 934 0 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57300s 934 0 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57400s 934 0 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57500s 934 0 0 0 0 0 545s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57600s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57700s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57800s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 57900s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58000s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58100s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58200s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58300s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58400s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58500s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58600s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58700s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58800s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 58900s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59000s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59100s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59200s 934 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59300s 933 1 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59400s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59500s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59600s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59700s 933 1 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59800s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 59900s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60000s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60100s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60200s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60300s 933 0 0 0 0 0 546s 510s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60400s 933 0 0 0 0 0 546s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60500s 933 0 0 0 0 0 546s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60600s 933 0 0 0 0 0 546s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60700s 932 1 0 0 0 0 546s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60800s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 60900s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61000s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61100s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61200s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61300s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61400s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61500s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61600s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61700s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61800s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 61900s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62000s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62100s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62200s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62300s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62400s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62500s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62600s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62700s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62800s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 62900s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63000s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63100s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63200s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63300s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63400s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63500s 932 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63600s 931 1 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63700s 931 0 0 0 0 0 547s 509s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63800s 931 0 0 0 0 0 547s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 63900s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64000s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64100s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64200s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64300s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64400s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64500s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64600s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64700s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64800s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 64900s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65000s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65100s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65200s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65300s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65400s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65500s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65600s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65700s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65800s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 65900s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66000s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66100s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66200s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66300s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66400s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66500s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66600s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66700s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66800s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 66900s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67000s 931 0 0 0 0 0 548s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67100s 931 0 0 0 0 0 549s 508s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67200s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67300s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67400s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67500s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67600s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67700s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67800s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 67900s 931 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68000s 930 1 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68100s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68200s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68300s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68400s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68500s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68600s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68700s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68800s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 68900s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69000s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69100s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69200s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69300s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69400s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69500s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69600s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69700s 930 0 0 0 0 0 549s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69800s 930 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 69900s 930 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70000s 930 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70100s 930 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70200s 929 1 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70300s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70400s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70500s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70600s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70700s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70800s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 70900s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71000s 929 0 0 0 0 0 550s 507s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71100s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71200s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71300s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71400s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71500s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71600s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71700s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71800s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 71900s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72000s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72100s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72200s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72300s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72400s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72500s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72600s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72700s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72800s 929 0 0 0 0 0 550s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 72900s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73000s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73100s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73200s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73300s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73400s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73500s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73600s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73700s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73800s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 73900s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74000s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74100s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74200s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74300s 929 0 0 0 0 0 551s 506s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74400s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74500s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74600s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74700s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74800s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 74900s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75000s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75100s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75200s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75300s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75400s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75500s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75600s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75700s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75800s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 75900s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76000s 929 0 0 0 0 0 551s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76100s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76200s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76300s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76400s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76500s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76600s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76700s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76800s 929 1 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 76900s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77000s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77100s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77200s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77300s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77400s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77500s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77600s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77700s 929 0 0 0 0 0 552s 505s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77800s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 77900s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78000s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78100s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78200s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78300s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78400s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78500s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78600s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78700s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78800s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 78900s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79000s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79100s 929 0 0 0 0 0 552s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79200s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79300s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79400s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79500s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79600s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79700s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79800s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 79900s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80000s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80100s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80200s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80300s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80400s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80500s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80600s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80700s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80800s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 80900s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81000s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81100s 929 0 0 0 0 0 553s 504s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81200s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81300s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81400s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81500s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81600s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81700s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81800s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 81900s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82000s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82100s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82200s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82300s 929 0 0 0 0 0 553s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82400s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82500s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82600s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82700s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82800s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 82900s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83000s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83100s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83200s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83300s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83400s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83500s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83600s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83700s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83800s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 83900s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84000s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84100s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84200s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84300s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84400s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84500s 929 0 0 0 0 0 554s 503s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84600s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84700s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84800s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 84900s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85000s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85100s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85200s 929 1 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85300s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85400s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85500s 929 0 0 0 0 0 554s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85600s 929 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85700s 928 1 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85800s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 85900s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86000s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86100s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86200s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86300s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86400s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86500s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86600s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86700s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86800s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 86900s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87000s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87100s 928 1 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87200s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87300s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87400s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87500s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87600s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87700s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87800s 928 0 0 0 0 0 555s 502s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 87900s 928 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88000s 928 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88100s 928 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88200s 927 1 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88300s 927 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88400s 927 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88500s 927 0 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88600s 927 1 0 0 0 0 555s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88700s 927 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88800s 927 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 88900s 927 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89000s 927 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89100s 927 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89200s 926 1 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89300s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89400s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89500s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89600s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89700s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89800s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 89900s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90000s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90100s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90200s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90300s 926 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90400s 925 1 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90500s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90600s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90700s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90800s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 90900s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91000s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91100s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91200s 925 0 0 0 0 0 556s 501s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91300s 925 0 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91400s 925 0 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91500s 925 0 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91600s 925 1 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91700s 925 0 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91800s 924 2 0 0 0 0 556s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 91900s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92000s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92100s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92200s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92300s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92400s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92500s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92600s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92700s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92800s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 92900s 924 1 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93000s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93100s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93200s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93300s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93400s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93500s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93600s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93700s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93800s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 93900s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94000s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94100s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94200s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94300s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94400s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94500s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94600s 924 0 0 0 0 0 557s 500s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94700s 924 0 0 0 0 0 557s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94800s 924 0 0 0 0 0 557s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 94900s 924 0 0 0 0 0 557s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95000s 924 0 0 0 0 0 557s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95100s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95200s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95300s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95400s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95500s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95600s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95700s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95800s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 95900s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96000s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96100s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96200s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96300s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96400s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96500s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96600s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96700s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96800s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 96900s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97000s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97100s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97200s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97300s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97400s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97500s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97600s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97700s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97800s 924 0 0 0 0 0 558s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 97900s 924 0 0 0 0 0 559s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98000s 924 0 0 0 0 0 559s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98100s 924 0 0 0 0 0 559s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98200s 924 0 0 0 0 0 559s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98300s 924 0 0 0 0 0 559s 499s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98400s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98500s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98600s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98700s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98800s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 98900s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99000s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99100s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99200s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99300s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99400s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99500s 924 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99600s 922 2 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99700s 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99800s 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 99900s 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1667m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1668m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1670m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1672m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1673m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1675m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1677m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1678m 922 0 0 0 0 0 559s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1680m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1682m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1683m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1685m 922 1 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1687m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1688m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1690m 922 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1692m 921 1 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1693m 921 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1695m 921 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1697m 921 0 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1698m 922 1 0 0 0 0 560s 498s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1700m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1702m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1703m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1705m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1707m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1708m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1710m 922 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1712m 921 1 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1713m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1715m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1717m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1718m 921 1 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1720m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1722m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1723m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1725m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1727m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1728m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1730m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1732m 921 0 0 0 0 0 560s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1733m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1735m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1737m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1738m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1740m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1742m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1743m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1745m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1747m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1748m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1750m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1752m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1753m 921 0 0 0 0 0 561s 497s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1755m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1757m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1758m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1760m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1762m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1763m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1765m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1767m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1768m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1770m 921 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1772m 920 1 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1773m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1775m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1777m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1778m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1780m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1782m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1783m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1785m 920 0 0 0 0 0 561s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1787m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1788m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1790m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1792m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1793m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1795m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1797m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1798m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1800m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1802m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1803m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1805m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1807m 920 1 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1808m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1810m 920 0 0 0 0 0 562s 496s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1812m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1813m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1815m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1817m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1818m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1820m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1822m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1823m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1825m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1827m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1828m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1830m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1832m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1833m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1835m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1837m 920 0 0 0 0 0 562s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1838m 920 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1840m 919 1 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1842m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1843m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1845m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1847m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1848m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1850m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1852m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1853m 919 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1855m 918 1 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1857m 917 1 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1858m 917 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1860m 917 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1862m 917 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1863m 917 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1865m 917 0 0 0 0 0 563s 495s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1867m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1868m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1870m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1872m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1873m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1875m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1877m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1878m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1880m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1882m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1883m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1885m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1887m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1888m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1890m 917 0 0 0 0 0 563s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1892m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1893m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1895m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1897m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1898m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1900m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1902m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1903m 917 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1905m 916 1 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1907m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1908m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1910m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1912m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1913m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1915m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1917m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1918m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1920m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1922m 916 0 0 0 0 0 564s 494s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1923m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1925m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1927m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1928m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1930m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1932m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1933m 916 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1935m 917 1 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1937m 917 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1938m 917 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1940m 917 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1942m 917 0 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1943m 916 1 0 0 0 0 564s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1945m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1947m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1948m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1950m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1952m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1953m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1955m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1957m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1958m 916 1 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1960m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1962m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1963m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1965m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1967m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1968m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1970m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1972m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1973m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1975m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1977m 916 0 0 0 0 0 565s 493s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1978m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1980m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1982m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1983m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1985m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1987m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1988m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1990m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1992m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1993m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1995m 916 1 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1997m 916 0 0 0 0 0 565s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 1998m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2000m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2002m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2003m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2005m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2007m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2008m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2010m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2012m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2013m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2015m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2017m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2018m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2020m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2022m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2023m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2025m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2027m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2028m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2030m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2032m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2033m 916 0 0 0 0 0 566s 492s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2035m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2037m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2038m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2040m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2042m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2043m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2045m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2047m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2048m 916 0 0 0 0 0 566s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2050m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2052m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2053m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2055m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2057m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2058m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2060m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2062m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2063m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2065m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2067m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2068m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2070m 916 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2072m 915 1 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2073m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2075m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2077m 915 1 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2078m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2080m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2082m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2083m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2085m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2087m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2088m 915 0 0 0 0 0 567s 491s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2090m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2092m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2093m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2095m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2097m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2098m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2100m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2102m 915 0 0 0 0 0 567s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2103m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2105m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2107m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2108m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2110m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2112m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2113m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2115m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2117m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2118m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2120m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2122m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2123m 916 1 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2125m 916 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2127m 915 1 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2128m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2130m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2132m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2133m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2135m 915 1 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2137m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2138m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2140m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2142m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2143m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2145m 915 0 0 0 0 0 568s 490s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2147m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2148m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2150m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2152m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2153m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2155m 915 0 0 0 0 0 568s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2157m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2158m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2160m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2162m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2163m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2165m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2167m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2168m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2170m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2172m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2173m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2175m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2177m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2178m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2180m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2182m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2183m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2185m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2187m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2188m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2190m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2192m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2193m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2195m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2197m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2198m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2200m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2202m 915 0 0 0 0 0 569s 489s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2203m 915 0 0 0 0 0 569s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2205m 915 0 0 0 0 0 569s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2207m 915 0 0 0 0 0 569s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2208m 915 0 0 0 0 0 569s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2210m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2212m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2213m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2215m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2217m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2218m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2220m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2222m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2223m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2225m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2227m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2228m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2230m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2232m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2233m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2235m 915 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2237m 914 1 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2238m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2240m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2242m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2243m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2245m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2247m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2248m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2250m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2252m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2253m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2255m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2257m 914 0 0 0 0 0 570s 488s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2258m 914 0 0 0 0 0 570s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2260m 914 0 0 0 0 0 570s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2262m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2263m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2265m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2267m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2268m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2270m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2272m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2273m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2275m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2277m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2278m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2280m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2282m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2283m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2285m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2287m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2288m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2290m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2292m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2293m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2295m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2297m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2298m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2300m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2302m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2303m 914 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2305m 914 1 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2307m 913 1 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2308m 913 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2310m 913 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2312m 913 0 0 0 0 0 571s 487s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2313m 913 0 0 0 0 0 571s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2315m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2317m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2318m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2320m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2322m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2323m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2325m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2327m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2328m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2330m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2332m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2333m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2335m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2337m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2338m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2340m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2342m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2343m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2345m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2347m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2348m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2350m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2352m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2353m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2355m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2357m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2358m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2360m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2362m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2363m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2365m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2367m 913 0 0 0 0 0 572s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2368m 913 0 0 0 0 0 573s 486s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2370m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2372m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2373m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2375m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2377m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2378m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2380m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2382m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2383m 913 1 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2385m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2387m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2388m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2390m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2392m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2393m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2395m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2397m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2398m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2400m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2402m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2403m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2405m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2407m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2408m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2410m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2412m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2413m 913 1 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2415m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2417m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2418m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2420m 913 0 0 0 0 0 573s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2422m 913 0 0 0 0 0 574s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2423m 913 0 0 0 0 0 574s 485s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2425m 913 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2427m 913 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2428m 913 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2430m 912 1 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2432m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2433m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2435m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2437m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2438m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2440m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2442m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2443m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2445m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2447m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2448m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2450m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2452m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2453m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2455m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2457m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2458m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2460m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2462m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2463m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2465m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2467m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2468m 912 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2470m 911 1 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2472m 911 0 0 0 0 0 574s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2473m 911 0 0 0 0 0 575s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2475m 911 0 0 0 0 0 575s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2477m 911 0 0 0 0 0 575s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2478m 911 0 0 0 0 0 575s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2480m 911 0 0 0 0 0 575s 484s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2482m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2483m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2485m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2487m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2488m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2490m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2492m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2493m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2495m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2497m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2498m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2500m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2502m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2503m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2505m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2507m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2508m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2510m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2512m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2513m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2515m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2517m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2518m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2520m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2522m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2523m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2525m 911 0 0 0 0 0 575s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2527m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2528m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2530m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2532m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2533m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2535m 911 0 0 0 0 0 576s 483s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2537m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2538m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2540m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2542m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2543m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2545m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2547m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2548m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2550m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2552m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2553m 911 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2555m 910 1 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2557m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2558m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2560m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2562m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2563m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2565m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2567m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2568m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2570m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2572m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2573m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2575m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2577m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2578m 910 0 0 0 0 0 576s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2580m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2582m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2583m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2585m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2587m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2588m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2590m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2592m 910 0 0 0 0 0 577s 482s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2593m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2595m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2597m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2598m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2600m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2602m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2603m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2605m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2607m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2608m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2610m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2612m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2613m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2615m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2617m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2618m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2620m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2622m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2623m 910 0 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2625m 910 1 0 0 0 0 577s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2627m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2628m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2630m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2632m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2633m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2635m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2637m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2638m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2640m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2642m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2643m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2645m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2647m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2648m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2650m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2652m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2653m 910 0 0 0 0 0 578s 481s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2655m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2657m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2658m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2660m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2662m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2663m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2665m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2667m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2668m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2670m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2672m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2673m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2675m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2677m 910 0 0 0 0 0 578s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2678m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2680m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2682m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2683m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2685m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2687m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2688m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2690m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2692m 910 1 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2693m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2695m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2697m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2698m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2700m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2702m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2703m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2705m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2707m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2708m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2710m 910 0 0 0 0 0 579s 480s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2712m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2713m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2715m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2717m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2718m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2720m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2722m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2723m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2725m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2727m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2728m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2730m 910 0 0 0 0 0 579s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2732m 910 1 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2733m 910 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2735m 910 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2737m 910 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2738m 910 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2740m 910 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2742m 909 1 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2743m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2745m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2747m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2748m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2750m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2752m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2753m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2755m 909 1 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2757m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2758m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2760m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2762m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2763m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2765m 909 0 0 0 0 0 580s 479s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2767m 907 2 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2768m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2770m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2772m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2773m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2775m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2777m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2778m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2780m 907 1 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2782m 907 0 0 0 0 0 580s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2783m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2785m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2787m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2788m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2790m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2792m 907 1 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2793m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2795m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2797m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2798m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2800m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2802m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2803m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2805m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2807m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2808m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2810m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2812m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2813m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2815m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2817m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2818m 907 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2820m 906 1 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2822m 906 0 0 0 0 0 581s 478s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2823m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2825m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2827m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2828m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2830m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2832m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2833m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2835m 906 0 0 0 0 0 581s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2837m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2838m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2840m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2842m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2843m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2845m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2847m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2848m 907 1 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2850m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2852m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2853m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2855m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2857m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2858m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2860m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2862m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2863m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2865m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2867m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2868m 907 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2870m 906 1 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2872m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2873m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2875m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2877m 906 0 0 0 0 0 582s 477s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2878m 906 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 11 2880m 906 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 0s 1036 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 100s 1036 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 200s 1036 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 300s 1036 0 0 0 0 0 582s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 400s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 500s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 600s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 700s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 800s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 900s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1000s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1100s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1200s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1300s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1400s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1500s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1600s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1700s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1800s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1900s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2000s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2100s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2200s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2300s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2400s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2500s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2600s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2700s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2800s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2900s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3000s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3100s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3200s 1036 0 0 0 0 0 583s 476s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3300s 1036 0 0 0 0 0 583s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3400s 1036 0 0 0 0 0 583s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3500s 1036 0 0 0 0 0 583s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3600s 1036 0 0 0 0 0 583s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3700s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3800s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 3900s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4000s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4100s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4200s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4300s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4400s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4500s 1035 1 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4600s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4700s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4800s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 4900s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5000s 1035 1 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5100s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5200s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5300s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5400s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5500s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5600s 1036 1 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5700s 1036 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5800s 1035 1 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 5900s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6000s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6100s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6200s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6300s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6400s 1035 0 0 0 0 0 584s 475s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6500s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6600s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6700s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6800s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 6900s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7000s 1035 0 0 0 0 0 584s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7100s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7200s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7300s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7400s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7500s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7600s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7700s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7800s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 7900s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8000s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8100s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8200s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8300s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8400s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8500s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8600s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8700s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8800s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 8900s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9000s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9100s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9200s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9300s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9400s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9500s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9600s 1035 0 0 0 0 0 585s 474s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9700s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9800s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 9900s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10000s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10100s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10200s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10300s 1035 0 0 0 0 0 585s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10400s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10500s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10600s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10700s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10800s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 10900s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11000s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11100s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11200s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11300s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11400s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11500s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11600s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11700s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11800s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 11900s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12000s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12100s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12200s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12300s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12400s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12500s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12600s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12700s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12800s 1035 0 0 0 0 0 586s 473s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 12900s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13000s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13100s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13200s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13300s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13400s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13500s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13600s 1035 0 0 0 0 0 586s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13700s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13800s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 13900s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14000s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14100s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14200s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14300s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14400s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14500s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14600s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14700s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14800s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 14900s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15000s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15100s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15200s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15300s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15400s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15500s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15600s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15700s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15800s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 15900s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16000s 1035 1 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16100s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16200s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16300s 1035 0 0 0 0 0 587s 472s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16400s 1035 0 0 0 0 0 587s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16500s 1035 0 0 0 0 0 587s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16600s 1035 0 0 0 0 0 587s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16700s 1035 0 0 0 0 0 587s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16800s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 16900s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17000s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17100s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17200s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17300s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17400s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17500s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17600s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17700s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17800s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 17900s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18000s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18100s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18200s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18300s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18400s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18500s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18600s 1035 1 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18700s 1035 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18800s 1034 2 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 18900s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19000s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19100s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19200s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19300s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19400s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19500s 1034 0 0 0 0 0 588s 471s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19600s 1034 0 0 0 0 0 588s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19700s 1034 1 0 0 0 0 588s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19800s 1034 0 0 0 0 0 588s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 19900s 1034 0 0 0 0 0 588s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20000s 1034 0 0 0 0 0 588s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20100s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20200s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20300s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20400s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20500s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20600s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20700s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20800s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 20900s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21000s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21100s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21200s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21300s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21400s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21500s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21600s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21700s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21800s 1034 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 21900s 1033 1 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22000s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22100s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22200s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22300s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22400s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22500s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22600s 1033 0 0 0 0 0 589s 470s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22700s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22800s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 22900s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23000s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23100s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23200s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23300s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23400s 1033 0 0 0 0 0 589s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23500s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23600s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23700s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23800s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 23900s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24000s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24100s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24200s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24300s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24400s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24500s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24600s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24700s 1033 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24800s 1032 2 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 24900s 1032 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25000s 1032 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25100s 1032 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25200s 1032 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25300s 1032 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25400s 1031 1 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25500s 1031 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25600s 1031 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25700s 1031 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25800s 1031 0 0 0 0 0 590s 469s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 25900s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26000s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26100s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26200s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26300s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26400s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26500s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26600s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26700s 1031 0 0 0 0 0 590s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26800s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 26900s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27000s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27100s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27200s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27300s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27400s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27500s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27600s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27700s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27800s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 27900s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28000s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28100s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28200s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28300s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28400s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28500s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28600s 1031 1 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28700s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28800s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 28900s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29000s 1031 0 0 0 0 0 591s 468s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29100s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29200s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29300s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29400s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29500s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29600s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29700s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29800s 1031 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 29900s 1030 1 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30000s 1030 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30100s 1030 0 0 0 0 0 591s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30200s 1030 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30300s 1030 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30400s 1030 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30500s 1030 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30600s 1029 1 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30700s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30800s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 30900s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31000s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31100s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31200s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31300s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31400s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31500s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31600s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31700s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31800s 1029 1 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 31900s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32000s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32100s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32200s 1029 0 0 0 0 0 592s 467s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32300s 1029 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32400s 1029 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32500s 1028 1 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32600s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32700s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32800s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 32900s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33000s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33100s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33200s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33300s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33400s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33500s 1028 0 0 0 0 0 592s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33600s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33700s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33800s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 33900s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34000s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34100s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34200s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34300s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34400s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34500s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34600s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34700s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34800s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 34900s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35000s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35100s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35200s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35300s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35400s 1028 0 0 0 0 0 593s 466s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35500s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35600s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35700s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35800s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 35900s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36000s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36100s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36200s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36300s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36400s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36500s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36600s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36700s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36800s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 36900s 1028 0 0 0 0 0 593s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37000s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37100s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37200s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37300s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37400s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37500s 1028 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37600s 1027 1 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37700s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37800s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 37900s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38000s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38100s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38200s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38300s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38400s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38500s 1027 0 0 0 0 0 594s 465s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38600s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38700s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38800s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 38900s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39000s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39100s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39200s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39300s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39400s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39500s 1027 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39600s 1026 1 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39700s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39800s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 39900s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40000s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40100s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40200s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40300s 1026 0 0 0 0 0 594s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40400s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40500s 1026 1 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40600s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40700s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40800s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 40900s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41000s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41100s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41200s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41300s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41400s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41500s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41600s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41700s 1026 0 0 0 0 0 595s 464s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41800s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 41900s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42000s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42100s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42200s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42300s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42400s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42500s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42600s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42700s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42800s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 42900s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43000s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43100s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43200s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43300s 1026 1 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43400s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43500s 1026 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43600s 1025 1 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43700s 1025 0 0 0 0 0 595s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43800s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 43900s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44000s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44100s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44200s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44300s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44400s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44500s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44600s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44700s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44800s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 44900s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45000s 1025 0 0 0 0 0 596s 463s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45100s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45200s 1025 1 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45300s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45400s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45500s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45600s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45700s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45800s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 45900s 1025 1 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46000s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46100s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46200s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46300s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46400s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46500s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46600s 1025 0 0 0 0 0 596s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46700s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46800s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 46900s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47000s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47100s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47200s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47300s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47400s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47500s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47600s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47700s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47800s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 47900s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48000s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48100s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48200s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48300s 1025 1 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48400s 1025 0 0 0 0 0 597s 462s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48500s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48600s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48700s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48800s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 48900s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49000s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49100s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49200s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49300s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49400s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49500s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49600s 1025 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49700s 1024 1 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49800s 1024 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 49900s 1024 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50000s 1024 0 0 0 0 0 597s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50100s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50200s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50300s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50400s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50500s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50600s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50700s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50800s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 50900s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51000s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51100s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51200s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51300s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51400s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51500s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51600s 1024 0 0 0 0 0 598s 461s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51700s 1024 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51800s 1024 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 51900s 1024 1 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52000s 1024 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52100s 1024 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52200s 1023 1 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52300s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52400s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52500s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52600s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52700s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52800s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 52900s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53000s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53100s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53200s 1023 1 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53300s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53400s 1023 0 0 0 0 0 598s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53500s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53600s 1023 1 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53700s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53800s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 53900s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54000s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54100s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54200s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54300s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54400s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54500s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54600s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54700s 1023 0 0 0 0 0 599s 460s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54800s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 54900s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55000s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55100s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55200s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55300s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55400s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55500s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55600s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55700s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55800s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 55900s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56000s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56100s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56200s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56300s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56400s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56500s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56600s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56700s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56800s 1023 0 0 0 0 0 599s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 56900s 1023 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57000s 1023 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57100s 1023 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57200s 1023 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57300s 1023 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57400s 1022 1 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57500s 1022 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57600s 1022 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57700s 1022 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57800s 1022 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 57900s 1022 0 0 0 0 0 600s 459s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58000s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58100s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58200s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58300s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58400s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58500s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58600s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58700s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58800s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 58900s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59000s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59100s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59200s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59300s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59400s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59500s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59600s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59700s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59800s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 59900s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60000s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60100s 1022 0 0 0 0 0 600s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60200s 1022 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60300s 1021 1 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60400s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60500s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60600s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60700s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60800s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 60900s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61000s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61100s 1021 0 0 0 0 0 601s 458s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61200s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61300s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61400s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61500s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61600s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61700s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61800s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 61900s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62000s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62100s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62200s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62300s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62400s 1021 1 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62500s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62600s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62700s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62800s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 62900s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63000s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63100s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63200s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63300s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63400s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63500s 1021 0 0 0 0 0 601s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63600s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63700s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63800s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 63900s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64000s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64100s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64200s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64300s 1021 0 0 0 0 0 602s 457s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64400s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64500s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64600s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64700s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64800s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 64900s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65000s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65100s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65200s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65300s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65400s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65500s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65600s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65700s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65800s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 65900s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66000s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66100s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66200s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66300s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66400s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66500s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66600s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66700s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66800s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 66900s 1021 0 0 0 0 0 602s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67000s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67100s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67200s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67300s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67400s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67500s 1021 0 0 0 0 0 603s 456s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67600s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67700s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67800s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 67900s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68000s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68100s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68200s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68300s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68400s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68500s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68600s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68700s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68800s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 68900s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69000s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69100s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69200s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69300s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69400s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69500s 1021 1 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69600s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69700s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69800s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 69900s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70000s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70100s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70200s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70300s 1021 0 0 0 0 0 603s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70400s 1021 0 0 0 0 0 604s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70500s 1021 0 0 0 0 0 604s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70600s 1021 0 0 0 0 0 604s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70700s 1021 0 0 0 0 0 604s 455s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70800s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 70900s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71000s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71100s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71200s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71300s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71400s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71500s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71600s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71700s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71800s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 71900s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72000s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72100s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72200s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72300s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72400s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72500s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72600s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72700s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72800s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 72900s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73000s 1021 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73100s 1020 1 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73200s 1020 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73300s 1020 1 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73400s 1020 1 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73500s 1020 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73600s 1020 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73700s 1020 0 0 0 0 0 604s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73800s 1020 0 0 0 0 0 605s 454s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 73900s 1020 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74000s 1020 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74100s 1020 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74200s 1020 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74300s 1020 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74400s 1019 1 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74500s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74600s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74700s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74800s 1019 1 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 74900s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75000s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75100s 1019 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75200s 1018 1 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75300s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75400s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75500s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75600s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75700s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75800s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 75900s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76000s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76100s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76200s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76300s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76400s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76500s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76600s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76700s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76800s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 76900s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77000s 1018 0 0 0 0 0 605s 453s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77100s 1018 0 0 0 0 0 605s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77200s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77300s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77400s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77500s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77600s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77700s 1018 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77800s 1017 1 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 77900s 1017 1 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78000s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78100s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78200s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78300s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78400s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78500s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78600s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78700s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78800s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 78900s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79000s 1017 1 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79100s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79200s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79300s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79400s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79500s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79600s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79700s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79800s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 79900s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80000s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80100s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80200s 1017 0 0 0 0 0 606s 452s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80300s 1017 0 0 0 0 0 606s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80400s 1017 0 0 0 0 0 606s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80500s 1017 0 0 0 0 0 606s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80600s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80700s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80800s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 80900s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81000s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81100s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81200s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81300s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81400s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81500s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81600s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81700s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81800s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 81900s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82000s 1017 1 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82100s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82200s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82300s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82400s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82500s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82600s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82700s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82800s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 82900s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83000s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83100s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83200s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83300s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83400s 1017 0 0 0 0 0 607s 451s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83500s 1017 0 0 0 0 0 607s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83600s 1017 0 0 0 0 0 607s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83700s 1017 0 0 0 0 0 607s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83800s 1017 0 0 0 0 0 607s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 83900s 1017 0 0 0 0 0 607s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84000s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84100s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84200s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84300s 1017 1 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84400s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84500s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84600s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84700s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84800s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 84900s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85000s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85100s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85200s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85300s 1017 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85400s 1016 2 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85500s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85600s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85700s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85800s 1016 1 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 85900s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86000s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86100s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86200s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86300s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86400s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86500s 1016 0 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86600s 1015 1 0 0 0 0 608s 450s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86700s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86800s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 86900s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87000s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87100s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87200s 1015 0 0 0 0 0 608s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87300s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87400s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87500s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87600s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87700s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87800s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 87900s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88000s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88100s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88200s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88300s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88400s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88500s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88600s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88700s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88800s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 88900s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89000s 1015 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89100s 1014 1 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89200s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89300s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89400s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89500s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89600s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89700s 1014 0 0 0 0 0 609s 449s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89800s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 89900s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90000s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90100s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90200s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90300s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90400s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90500s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90600s 1014 0 0 0 0 0 609s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90700s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90800s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 90900s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91000s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91100s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91200s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91300s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91400s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91500s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91600s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91700s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91800s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 91900s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92000s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92100s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92200s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92300s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92400s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92500s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92600s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92700s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92800s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 92900s 1014 0 0 0 0 0 610s 448s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93000s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93100s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93200s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93300s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93400s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93500s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93600s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93700s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93800s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 93900s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94000s 1014 0 0 0 0 0 610s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94100s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94200s 1014 1 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94300s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94400s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94500s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94600s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94700s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94800s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 94900s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95000s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95100s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95200s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95300s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95400s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95500s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95600s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95700s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95800s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 95900s 1014 1 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96000s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96100s 1014 0 0 0 0 0 611s 447s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96200s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96300s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96400s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96500s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96600s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96700s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96800s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 96900s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97000s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97100s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97200s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97300s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97400s 1014 0 0 0 0 0 611s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97500s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97600s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97700s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97800s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 97900s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98000s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98100s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98200s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98300s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98400s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98500s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98600s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98700s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98800s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 98900s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99000s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99100s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99200s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99300s 1014 0 0 0 0 0 612s 446s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99400s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99500s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99600s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99700s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99800s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 99900s 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1667m 1014 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1668m 1013 1 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1670m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1672m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1673m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1675m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1677m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1678m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1680m 1013 0 0 0 0 0 612s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1682m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1683m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1685m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1687m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1688m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1690m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1692m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1693m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1695m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1697m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1698m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1700m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1702m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1703m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1705m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1707m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1708m 1013 0 0 0 0 0 613s 445s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1710m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1712m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1713m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1715m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1717m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1718m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1720m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1722m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1723m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1725m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1727m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1728m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1730m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1732m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1733m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1735m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1737m 1013 0 0 0 0 0 613s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1738m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1740m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1742m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1743m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1745m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1747m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1748m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1750m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1752m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1753m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1755m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1757m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1758m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1760m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1762m 1013 0 0 0 0 0 614s 444s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1763m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1765m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1767m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1768m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1770m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1772m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1773m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1775m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1777m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1778m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1780m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1782m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1783m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1785m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1787m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1788m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1790m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1792m 1013 0 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1793m 1012 1 0 0 0 0 614s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1795m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1797m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1798m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1800m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1802m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1803m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1805m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1807m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1808m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1810m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1812m 1012 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1813m 1011 1 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1815m 1011 1 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1817m 1011 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1818m 1011 0 0 0 0 0 615s 443s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1820m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1822m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1823m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1825m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1827m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1828m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1830m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1832m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1833m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1835m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1837m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1838m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1840m 1011 0 0 0 0 0 615s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1842m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1843m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1845m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1847m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1848m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1850m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1852m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1853m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1855m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1857m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1858m 1011 1 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1860m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1862m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1863m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1865m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1867m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1868m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1870m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1872m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1873m 1011 0 0 0 0 0 616s 442s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1875m 1011 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1877m 1011 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1878m 1011 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1880m 1011 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1882m 1010 1 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1883m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1885m 1010 1 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1887m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1888m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1890m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1892m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1893m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1895m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1897m 1010 0 0 0 0 0 616s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1898m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1900m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1902m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1903m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1905m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1907m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1908m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1910m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1912m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1913m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1915m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1917m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1918m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1920m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1922m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1923m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1925m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1927m 1010 0 0 0 0 0 617s 441s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1928m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1930m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1932m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1933m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1935m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1937m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1938m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1940m 1010 1 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1942m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1943m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1945m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1947m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1948m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1950m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1952m 1010 0 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1953m 1009 1 0 0 0 0 617s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1955m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1957m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1958m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1960m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1962m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1963m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1965m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1967m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1968m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1970m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1972m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1973m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1975m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1977m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1978m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1980m 1009 0 0 0 0 0 618s 440s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1982m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1983m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1985m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1987m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1988m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1990m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1992m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1993m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1995m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1997m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 1998m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2000m 1009 2 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2002m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2003m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2005m 1009 1 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2007m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2008m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2010m 1009 0 0 0 0 0 618s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2012m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2013m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2015m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2017m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2018m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2020m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2022m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2023m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2025m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2027m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2028m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2030m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2032m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2033m 1009 0 0 0 0 0 619s 439s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2035m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2037m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2038m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2040m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2042m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2043m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2045m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2047m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2048m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2050m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2052m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2053m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2055m 1009 1 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2057m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2058m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2060m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2062m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2063m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2065m 1009 0 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2067m 1008 1 0 0 0 0 619s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2068m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2070m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2072m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2073m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2075m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2077m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2078m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2080m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2082m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2083m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2085m 1008 0 0 0 0 0 620s 438s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2087m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2088m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2090m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2092m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2093m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2095m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2097m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2098m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2100m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2102m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2103m 1008 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2105m 1007 1 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2107m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2108m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2110m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2112m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2113m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2115m 1007 1 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2117m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2118m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2120m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2122m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2123m 1007 0 0 0 0 0 620s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2125m 1007 1 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2127m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2128m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2130m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2132m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2133m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2135m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2137m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2138m 1007 0 0 0 0 0 621s 437s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2140m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2142m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2143m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2145m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2147m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2148m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2150m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2152m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2153m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2155m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2157m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2158m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2160m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2162m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2163m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2165m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2167m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2168m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2170m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2172m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2173m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2175m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2177m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2178m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2180m 1007 0 0 0 0 0 621s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2182m 1007 1 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2183m 1007 0 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2185m 1007 0 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2187m 1007 0 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2188m 1007 0 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2190m 1006 1 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2192m 1006 0 0 0 0 0 622s 436s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2193m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2195m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2197m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2198m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2200m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2202m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2203m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2205m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2207m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2208m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2210m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2212m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2213m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2215m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2217m 1006 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2218m 1007 1 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2220m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2222m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2223m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2225m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2227m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2228m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2230m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2232m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2233m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2235m 1007 0 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2237m 1007 1 0 0 0 0 622s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2238m 1007 0 0 0 0 0 623s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2240m 1007 0 0 0 0 0 623s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2242m 1007 0 0 0 0 0 623s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2243m 1007 0 0 0 0 0 623s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2245m 1007 0 0 0 0 0 623s 435s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2247m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2248m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2250m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2252m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2253m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2255m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2257m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2258m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2260m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2262m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2263m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2265m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2267m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2268m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2270m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2272m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2273m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2275m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2277m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2278m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2280m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2282m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2283m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2285m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2287m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2288m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2290m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2292m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2293m 1007 0 0 0 0 0 623s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2295m 1007 0 0 0 0 0 624s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2297m 1007 0 0 0 0 0 624s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2298m 1007 0 0 0 0 0 624s 434s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2300m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2302m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2303m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2305m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2307m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2308m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2310m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2312m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2313m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2315m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2317m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2318m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2320m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2322m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2323m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2325m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2327m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2328m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2330m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2332m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2333m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2335m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2337m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2338m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2340m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2342m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2343m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2345m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2347m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2348m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2350m 1007 0 0 0 0 0 624s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2352m 1007 0 0 0 0 0 625s 433s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2353m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2355m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2357m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2358m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2360m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2362m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2363m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2365m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2367m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2368m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2370m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2372m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2373m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2375m 1007 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2377m 1006 1 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2378m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2380m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2382m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2383m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2385m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2387m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2388m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2390m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2392m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2393m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2395m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2397m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2398m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2400m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2402m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2403m 1006 0 0 0 0 0 625s 432s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2405m 1006 0 0 0 0 0 625s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2407m 1006 0 0 0 0 0 625s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2408m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2410m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2412m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2413m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2415m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2417m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2418m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2420m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2422m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2423m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2425m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2427m 1006 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2428m 1005 1 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2430m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2432m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2433m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2435m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2437m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2438m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2440m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2442m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2443m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2445m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2447m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2448m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2450m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2452m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2453m 1005 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2455m 1004 1 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2457m 1004 0 0 0 0 0 626s 431s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2458m 1004 0 0 0 0 0 626s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2460m 1004 0 0 0 0 0 626s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2462m 1004 0 0 0 0 0 626s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2463m 1004 0 0 0 0 0 626s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2465m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2467m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2468m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2470m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2472m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2473m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2475m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2477m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2478m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2480m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2482m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2483m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2485m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2487m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2488m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2490m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2492m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2493m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2495m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2497m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2498m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2500m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2502m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2503m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2505m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2507m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2508m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2510m 1004 0 0 0 0 0 627s 430s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2512m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2513m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2515m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2517m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2518m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2520m 1004 0 0 0 0 0 627s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2522m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2523m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2525m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2527m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2528m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2530m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2532m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2533m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2535m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2537m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2538m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2540m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2542m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2543m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2545m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2547m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2548m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2550m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2552m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2553m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2555m 1004 1 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2557m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2558m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2560m 1004 1 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2562m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2563m 1004 0 0 0 0 0 628s 429s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2565m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2567m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2568m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2570m 1004 2 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2572m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2573m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2575m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2577m 1004 0 0 0 0 0 628s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2578m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2580m 1004 1 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2582m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2583m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2585m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2587m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2588m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2590m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2592m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2593m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2595m 1004 1 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2597m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2598m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2600m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2602m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2603m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2605m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2607m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2608m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2610m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2612m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2613m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2615m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2617m 1004 0 0 0 0 0 629s 428s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2618m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2620m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2622m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2623m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2625m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2627m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2628m 1004 1 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2630m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2632m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2633m 1004 0 0 0 0 0 629s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2635m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2637m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2638m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2640m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2642m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2643m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2645m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2647m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2648m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2650m 1004 1 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2652m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2653m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2655m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2657m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2658m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2660m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2662m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2663m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2665m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2667m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2668m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2670m 1004 0 0 0 0 0 630s 427s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2672m 1004 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2673m 1003 1 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2675m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2677m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2678m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2680m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2682m 1003 1 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2683m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2685m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2687m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2688m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2690m 1003 0 0 0 0 0 630s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2692m 1003 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2693m 1003 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2695m 1003 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2697m 1003 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2698m 1003 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2700m 1004 1 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2702m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2703m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2705m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2707m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2708m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2710m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2712m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2713m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2715m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2717m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2718m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2720m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2722m 1004 0 0 0 0 0 631s 426s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2723m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2725m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2727m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2728m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2730m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2732m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2733m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2735m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2737m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2738m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2740m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2742m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2743m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2745m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2747m 1004 0 0 0 0 0 631s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2748m 1004 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2750m 1004 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2752m 1004 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2753m 1004 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2755m 1004 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2757m 1005 2 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2758m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2760m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2762m 1005 1 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2763m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2765m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2767m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2768m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2770m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2772m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2773m 1005 0 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2775m 1006 1 0 0 0 0 632s 425s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2777m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2778m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2780m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2782m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2783m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2785m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2787m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2788m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2790m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2792m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2793m 1006 1 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2795m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2797m 1006 1 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2798m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2800m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2802m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2803m 1006 0 0 0 0 0 632s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2805m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2807m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2808m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2810m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2812m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2813m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2815m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2817m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2818m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2820m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2822m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2823m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2825m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2827m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2828m 1006 0 0 0 0 0 633s 424s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2830m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2832m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2833m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2835m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2837m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2838m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2840m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2842m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2843m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2845m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2847m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2848m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2850m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2852m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2853m 1006 1 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2855m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2857m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2858m 1006 1 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2860m 1006 0 0 0 0 0 633s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2862m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2863m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2865m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2867m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2868m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2870m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2872m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2873m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2875m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2877m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2878m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 12 2880m 1006 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 0s 1019 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 100s 1019 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 200s 1019 0 0 0 0 0 634s 423s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 300s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 400s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 500s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 600s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 700s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 800s 1019 1 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 900s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1000s 1019 1 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1100s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1200s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1300s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1400s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1500s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1600s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1700s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1800s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1900s 1019 0 0 0 0 0 634s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2000s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2100s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2200s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2300s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2400s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2500s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2600s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2700s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2800s 1020 1 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2900s 1020 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3000s 1020 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3100s 1019 1 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3200s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3300s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3400s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3500s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3600s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3700s 1019 0 0 0 0 0 635s 422s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3800s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 3900s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4000s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4100s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4200s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4300s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4400s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4500s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4600s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4700s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4800s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 4900s 1019 0 0 0 0 0 635s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5000s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5100s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5200s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5300s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5400s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5500s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5600s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5700s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5800s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 5900s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6000s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6100s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6200s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6300s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6400s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6500s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6600s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6700s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6800s 1019 1 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 6900s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7000s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7100s 1019 0 0 0 0 0 636s 421s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7200s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7300s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7400s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7500s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7600s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7700s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7800s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 7900s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8000s 1019 0 0 0 0 0 636s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8100s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8200s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8300s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8400s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8500s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8600s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8700s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8800s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 8900s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9000s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9100s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9200s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9300s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9400s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9500s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9600s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9700s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9800s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 9900s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10000s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10100s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10200s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10300s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10400s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10500s 1019 0 0 0 0 0 637s 420s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10600s 1019 0 0 0 0 0 637s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10700s 1019 1 0 0 0 0 637s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10800s 1019 0 0 0 0 0 637s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 10900s 1019 0 0 0 0 0 637s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11000s 1019 0 0 0 0 0 637s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11100s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11200s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11300s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11400s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11500s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11600s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11700s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11800s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 11900s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12000s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12100s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12200s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12300s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12400s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12500s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12600s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12700s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12800s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 12900s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13000s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13100s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13200s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13300s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13400s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13500s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13600s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13700s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13800s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 13900s 1019 0 0 0 0 0 638s 419s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14000s 1019 0 0 0 0 0 638s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14100s 1019 0 0 0 0 0 638s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14200s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14300s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14400s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14500s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14600s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14700s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14800s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 14900s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15000s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15100s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15200s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15300s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15400s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15500s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15600s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15700s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15800s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 15900s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16000s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16100s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16200s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16300s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16400s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16500s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16600s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16700s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16800s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 16900s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17000s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17100s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17200s 1019 0 0 0 0 0 639s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17300s 1019 0 0 0 0 0 640s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17400s 1019 0 0 0 0 0 640s 418s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17500s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17600s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17700s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17800s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 17900s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18000s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18100s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18200s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18300s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18400s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18500s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18600s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18700s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18800s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 18900s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19000s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19100s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19200s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19300s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19400s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19500s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19600s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19700s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19800s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 19900s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20000s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20100s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20200s 1019 0 0 0 0 0 640s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20300s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20400s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20500s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20600s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20700s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20800s 1019 0 0 0 0 0 641s 417s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 20900s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21000s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21100s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21200s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21300s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21400s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21500s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21600s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21700s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21800s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 21900s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22000s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22100s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22200s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22300s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22400s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22500s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22600s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22700s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22800s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 22900s 1019 1 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23000s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23100s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23200s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23300s 1019 0 0 0 0 0 641s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23400s 1019 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23500s 1018 1 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23600s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23700s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23800s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 23900s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24000s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24100s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24200s 1018 0 0 0 0 0 642s 416s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24300s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24400s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24500s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24600s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24700s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24800s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 24900s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25000s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25100s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25200s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25300s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25400s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25500s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25600s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25700s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25800s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 25900s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26000s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26100s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26200s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26300s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26400s 1018 0 0 0 0 0 642s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26500s 1018 1 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26600s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26700s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26800s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 26900s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27000s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27100s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27200s 1018 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27300s 1017 1 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27400s 1017 1 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27500s 1017 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27600s 1016 1 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27700s 1016 0 0 0 0 0 643s 415s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27800s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 27900s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28000s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28100s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28200s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28300s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28400s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28500s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28600s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28700s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28800s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 28900s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29000s 1016 0 0 0 0 0 643s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29100s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29200s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29300s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29400s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29500s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29600s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29700s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29800s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 29900s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30000s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30100s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30200s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30300s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30400s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30500s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30600s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30700s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30800s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 30900s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31000s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31100s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31200s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31300s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31400s 1016 0 0 0 0 0 644s 414s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31500s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31600s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31700s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31800s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 31900s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32000s 1016 0 0 0 0 0 644s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32100s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32200s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32300s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32400s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32500s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32600s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32700s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32800s 1016 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 32900s 1015 1 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33000s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33100s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33200s 1015 1 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33300s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33400s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33500s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33600s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33700s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33800s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 33900s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34000s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34100s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34200s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34300s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34400s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34500s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34600s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34700s 1015 0 0 0 0 0 645s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34800s 1015 0 0 0 0 0 646s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 34900s 1015 0 0 0 0 0 646s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35000s 1015 0 0 0 0 0 646s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35100s 1015 0 0 0 0 0 646s 413s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35200s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35300s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35400s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35500s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35600s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35700s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35800s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 35900s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36000s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36100s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36200s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36300s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36400s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36500s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36600s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36700s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36800s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 36900s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37000s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37100s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37200s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37300s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37400s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37500s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37600s 1015 1 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37700s 1015 0 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37800s 1014 1 0 0 0 0 646s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 37900s 1014 0 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38000s 1014 0 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38100s 1014 0 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38200s 1014 0 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38300s 1013 1 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38400s 1013 0 0 0 0 0 647s 412s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38500s 1013 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38600s 1013 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38700s 1012 1 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38800s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 38900s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39000s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39100s 1012 2 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39200s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39300s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39400s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39500s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39600s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39700s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39800s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 39900s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40000s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40100s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40200s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40300s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40400s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40500s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40600s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40700s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40800s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 40900s 1012 0 0 0 0 0 647s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41000s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41100s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41200s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41300s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41400s 1013 1 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41500s 1013 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41600s 1012 1 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41700s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41800s 1012 0 0 0 0 0 648s 411s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 41900s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42000s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42100s 1012 1 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42200s 1013 1 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42300s 1013 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42400s 1013 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42500s 1012 1 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42600s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42700s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42800s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 42900s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43000s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43100s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43200s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43300s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43400s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43500s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43600s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43700s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43800s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 43900s 1012 0 0 0 0 0 648s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44000s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44100s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44200s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44300s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44400s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44500s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44600s 1012 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44700s 1011 1 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44800s 1011 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 44900s 1011 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45000s 1011 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45100s 1011 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45200s 1011 0 0 0 0 0 649s 410s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45300s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45400s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45500s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45600s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45700s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45800s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 45900s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46000s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46100s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46200s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46300s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46400s 1011 1 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46500s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46600s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46700s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46800s 1011 1 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 46900s 1011 1 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47000s 1011 0 0 0 0 0 649s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47100s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47200s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47300s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47400s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47500s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47600s 1011 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47700s 1010 1 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47800s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 47900s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48000s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48100s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48200s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48300s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48400s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48500s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48600s 1010 0 0 0 0 0 650s 409s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48700s 1010 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48800s 1009 1 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 48900s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49000s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49100s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49200s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49300s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49400s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49500s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49600s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49700s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49800s 1009 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 49900s 1008 1 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50000s 1008 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50100s 1008 0 0 0 0 0 650s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50200s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50300s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50400s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50500s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50600s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50700s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50800s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 50900s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51000s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51100s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51200s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51300s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51400s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51500s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51600s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51700s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51800s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 51900s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52000s 1008 0 0 0 0 0 651s 408s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52100s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52200s 1008 1 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52300s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52400s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52500s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52600s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52700s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52800s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 52900s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53000s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53100s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53200s 1008 0 0 0 0 0 651s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53300s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53400s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53500s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53600s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53700s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53800s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 53900s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54000s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54100s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54200s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54300s 1008 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54400s 1006 2 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54500s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54600s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54700s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54800s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 54900s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55000s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55100s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55200s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55300s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55400s 1006 0 0 0 0 0 652s 407s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55500s 1006 0 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55600s 1007 1 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55700s 1007 0 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55800s 1007 0 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 55900s 1007 1 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56000s 1007 0 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56100s 1007 0 0 0 0 0 652s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56200s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56300s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56400s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56500s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56600s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56700s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56800s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 56900s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57000s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57100s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57200s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57300s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57400s 1007 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57500s 1006 1 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57600s 1006 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57700s 1006 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57800s 1006 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 57900s 1006 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58000s 1006 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58100s 1005 1 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58200s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58300s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58400s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58500s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58600s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58700s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58800s 1005 0 0 0 0 0 653s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 58900s 1005 0 0 0 0 0 654s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59000s 1005 0 0 0 0 0 654s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59100s 1005 0 0 0 0 0 654s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59200s 1005 0 0 0 0 0 654s 406s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59300s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59400s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59500s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59600s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59700s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59800s 1004 1 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 59900s 1004 1 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60000s 1005 1 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60100s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60200s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60300s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60400s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60500s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60600s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60700s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60800s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 60900s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61000s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61100s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61200s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61300s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61400s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61500s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61600s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61700s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61800s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 61900s 1005 0 0 0 0 0 654s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62000s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62100s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62200s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62300s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62400s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62500s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62600s 1005 0 0 0 0 0 655s 405s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62700s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62800s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 62900s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63000s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63100s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63200s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63300s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63400s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63500s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63600s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63700s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63800s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 63900s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64000s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64100s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64200s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64300s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64400s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64500s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64600s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64700s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64800s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 64900s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65000s 1005 0 0 0 0 0 655s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65100s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65200s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65300s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65400s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65500s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65600s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65700s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65800s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 65900s 1005 0 0 0 0 0 656s 404s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66000s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66100s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66200s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66300s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66400s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66500s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66600s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66700s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66800s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 66900s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67000s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67100s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67200s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67300s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67400s 1005 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67500s 1004 1 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67600s 1003 1 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67700s 1003 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67800s 1003 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 67900s 1003 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68000s 1003 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68100s 1003 0 0 0 0 0 656s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68200s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68300s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68400s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68500s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68600s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68700s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68800s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 68900s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69000s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69100s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69200s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69300s 1003 0 0 0 0 0 657s 403s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69400s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69500s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69600s 1003 1 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69700s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69800s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 69900s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70000s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70100s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70200s 1003 1 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70300s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70400s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70500s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70600s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70700s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70800s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 70900s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71000s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71100s 1003 0 0 0 0 0 657s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71200s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71300s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71400s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71500s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71600s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71700s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71800s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 71900s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72000s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72100s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72200s 1003 1 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72300s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72400s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72500s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72600s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72700s 1003 0 0 0 0 0 658s 402s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72800s 1003 1 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 72900s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73000s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73100s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73200s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73300s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73400s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73500s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73600s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73700s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73800s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 73900s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74000s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74100s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74200s 1003 0 0 0 0 0 658s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74300s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74400s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74500s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74600s 1003 1 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74700s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74800s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 74900s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75000s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75100s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75200s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75300s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75400s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75500s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75600s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75700s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75800s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 75900s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76000s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76100s 1003 0 0 0 0 0 659s 401s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76200s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76300s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76400s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76500s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76600s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76700s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76800s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 76900s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77000s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77100s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77200s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77300s 1003 0 0 0 0 0 659s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77400s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77500s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77600s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77700s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77800s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 77900s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78000s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78100s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78200s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78300s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78400s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78500s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78600s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78700s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78800s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 78900s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79000s 1003 1 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79100s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79200s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79300s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79400s 1003 0 0 0 0 0 660s 400s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79500s 1003 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79600s 1003 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79700s 1003 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79800s 1003 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 79900s 1002 1 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80000s 1002 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80100s 1002 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80200s 1002 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80300s 1002 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80400s 1002 0 0 0 0 0 660s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80500s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80600s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80700s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80800s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 80900s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81000s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81100s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81200s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81300s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81400s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81500s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81600s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81700s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81800s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 81900s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82000s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82100s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82200s 1002 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82300s 1001 1 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82400s 1001 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82500s 1001 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82600s 1001 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82700s 1001 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82800s 1001 0 0 0 0 0 661s 399s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 82900s 999 2 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83000s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83100s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83200s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83300s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83400s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83500s 999 0 0 0 0 0 661s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83600s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83700s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83800s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 83900s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84000s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84100s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84200s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84300s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84400s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84500s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84600s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84700s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84800s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 84900s 999 1 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85000s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85100s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85200s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85300s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85400s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85500s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85600s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85700s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85800s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 85900s 999 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86000s 998 1 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86100s 998 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86200s 998 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86300s 998 0 0 0 0 0 662s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86400s 998 0 0 0 0 0 663s 398s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86500s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86600s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86700s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86800s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 86900s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87000s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87100s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87200s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87300s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87400s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87500s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87600s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87700s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87800s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 87900s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88000s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88100s 998 1 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88200s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88300s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88400s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88500s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88600s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88700s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88800s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 88900s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89000s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89100s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89200s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89300s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89400s 998 0 0 0 0 0 663s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89500s 998 0 0 0 0 0 664s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89600s 998 0 0 0 0 0 664s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89700s 998 0 0 0 0 0 664s 397s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89800s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 89900s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90000s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90100s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90200s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90300s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90400s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90500s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90600s 998 1 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90700s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90800s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 90900s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91000s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91100s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91200s 998 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91300s 997 1 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91400s 997 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91500s 996 1 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91600s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91700s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91800s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 91900s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92000s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92100s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92200s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92300s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92400s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92500s 996 0 0 0 0 0 664s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92600s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92700s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92800s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 92900s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93000s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93100s 996 0 0 0 0 0 665s 396s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93200s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93300s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93400s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93500s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93600s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93700s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93800s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 93900s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94000s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94100s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94200s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94300s 996 1 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94400s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94500s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94600s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94700s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94800s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 94900s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95000s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95100s 996 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95200s 995 1 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95300s 995 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95400s 995 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95500s 995 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95600s 995 0 0 0 0 0 665s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95700s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95800s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 95900s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96000s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96100s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96200s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96300s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96400s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96500s 995 0 0 0 0 0 666s 395s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96600s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96700s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96800s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 96900s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97000s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97100s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97200s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97300s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97400s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97500s 995 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97600s 994 1 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97700s 994 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97800s 994 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 97900s 994 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98000s 993 1 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98100s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98200s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98300s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98400s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98500s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98600s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98700s 993 0 0 0 0 0 666s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98800s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 98900s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99000s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99100s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99200s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99300s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99400s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99500s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99600s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99700s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99800s 993 0 0 0 0 0 667s 394s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 99900s 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1667m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1668m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1670m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1672m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1673m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1675m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1677m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1678m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1680m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1682m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1683m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1685m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1687m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1688m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1690m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1692m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1693m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1695m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1697m 993 0 0 0 0 0 667s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1698m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1700m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1702m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1703m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1705m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1707m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1708m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1710m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1712m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1713m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1715m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1717m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1718m 993 0 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1720m 994 1 0 0 0 0 668s 393s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1722m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1723m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1725m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1727m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1728m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1730m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1732m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1733m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1735m 994 1 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1737m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1738m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1740m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1742m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1743m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1745m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1747m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1748m 994 0 0 0 0 0 668s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1750m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1752m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1753m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1755m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1757m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1758m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1760m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1762m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1763m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1765m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1767m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1768m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1770m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1772m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1773m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1775m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1777m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1778m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1780m 994 0 0 0 0 0 669s 392s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1782m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1783m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1785m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1787m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1788m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1790m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1792m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1793m 994 0 0 0 0 0 669s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1795m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1797m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1798m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1800m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1802m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1803m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1805m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1807m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1808m 994 1 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1810m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1812m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1813m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1815m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1817m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1818m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1820m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1822m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1823m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1825m 994 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1827m 993 1 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1828m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1830m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1832m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1833m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1835m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1837m 993 0 0 0 0 0 670s 391s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1838m 993 0 0 0 0 0 670s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1840m 993 0 0 0 0 0 670s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1842m 993 0 0 0 0 0 670s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1843m 993 0 0 0 0 0 670s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1845m 993 0 0 0 0 0 670s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1847m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1848m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1850m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1852m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1853m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1855m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1857m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1858m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1860m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1862m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1863m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1865m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1867m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1868m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1870m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1872m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1873m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1875m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1877m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1878m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1880m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1882m 993 1 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1883m 993 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1885m 992 1 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1887m 992 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1888m 992 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1890m 992 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1892m 992 0 0 0 0 0 671s 390s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1893m 992 0 0 0 0 0 671s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1895m 992 0 0 0 0 0 671s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1897m 992 0 0 0 0 0 671s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1898m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1900m 992 1 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1902m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1903m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1905m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1907m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1908m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1910m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1912m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1913m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1915m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1917m 992 1 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1918m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1920m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1922m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1923m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1925m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1927m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1928m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1930m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1932m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1933m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1935m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1937m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1938m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1940m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1942m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1943m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1945m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1947m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1948m 992 0 0 0 0 0 672s 389s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1950m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1952m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1953m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1955m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1957m 992 1 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1958m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1960m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1962m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1963m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1965m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1967m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1968m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1970m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1972m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1973m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1975m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1977m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1978m 992 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1980m 991 1 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1982m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1983m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1985m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1987m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1988m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1990m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1992m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1993m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1995m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1997m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 1998m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2000m 991 0 0 0 0 0 673s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2002m 991 0 0 0 0 0 674s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2003m 991 0 0 0 0 0 674s 388s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2005m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2007m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2008m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2010m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2012m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2013m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2015m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2017m 991 1 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2018m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2020m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2022m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2023m 991 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2025m 990 2 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2027m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2028m 990 1 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2030m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2032m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2033m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2035m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2037m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2038m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2040m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2042m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2043m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2045m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2047m 990 1 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2048m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2050m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2052m 990 0 0 0 0 0 674s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2053m 990 0 0 0 0 0 675s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2055m 990 0 0 0 0 0 675s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2057m 990 0 0 0 0 0 675s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2058m 990 0 0 0 0 0 675s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2060m 990 0 0 0 0 0 675s 387s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2062m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2063m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2065m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2067m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2068m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2070m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2072m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2073m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2075m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2077m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2078m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2080m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2082m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2083m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2085m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2087m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2088m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2090m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2092m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2093m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2095m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2097m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2098m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2100m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2102m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2103m 990 0 0 0 0 0 675s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2105m 989 1 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2107m 989 1 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2108m 989 0 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2110m 989 0 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2112m 989 0 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2113m 989 0 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2115m 989 0 0 0 0 0 676s 386s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2117m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2118m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2120m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2122m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2123m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2125m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2127m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2128m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2130m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2132m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2133m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2135m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2137m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2138m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2140m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2142m 989 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2143m 988 1 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2145m 987 1 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2147m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2148m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2150m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2152m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2153m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2155m 987 0 0 0 0 0 676s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2157m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2158m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2160m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2162m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2163m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2165m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2167m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2168m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2170m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2172m 987 0 0 0 0 0 677s 385s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2173m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2175m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2177m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2178m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2180m 987 1 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2182m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2183m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2185m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2187m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2188m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2190m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2192m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2193m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2195m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2197m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2198m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2200m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2202m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2203m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2205m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2207m 987 0 0 0 0 0 677s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2208m 987 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2210m 987 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2212m 987 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2213m 986 1 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2215m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2217m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2218m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2220m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2222m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2223m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2225m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2227m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2228m 986 0 0 0 0 0 678s 384s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2230m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2232m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2233m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2235m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2237m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2238m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2240m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2242m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2243m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2245m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2247m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2248m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2250m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2252m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2253m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2255m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2257m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2258m 986 0 0 0 0 0 678s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2260m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2262m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2263m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2265m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2267m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2268m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2270m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2272m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2273m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2275m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2277m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2278m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2280m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2282m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2283m 986 0 0 0 0 0 679s 383s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2285m 986 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2287m 986 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2288m 985 1 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2290m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2292m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2293m 985 1 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2295m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2297m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2298m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2300m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2302m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2303m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2305m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2307m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2308m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2310m 985 0 0 0 0 0 679s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2312m 984 1 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2313m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2315m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2317m 984 1 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2318m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2320m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2322m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2323m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2325m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2327m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2328m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2330m 984 1 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2332m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2333m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2335m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2337m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2338m 984 0 0 0 0 0 680s 382s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2340m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2342m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2343m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2345m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2347m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2348m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2350m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2352m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2353m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2355m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2357m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2358m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2360m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2362m 984 0 0 0 0 0 680s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2363m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2365m 984 1 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2367m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2368m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2370m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2372m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2373m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2375m 984 1 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2377m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2378m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2380m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2382m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2383m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2385m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2387m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2388m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2390m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2392m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2393m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2395m 984 0 0 0 0 0 681s 381s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2397m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2398m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2400m 984 1 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2402m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2403m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2405m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2407m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2408m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2410m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2412m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2413m 984 0 0 0 0 0 681s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2415m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2417m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2418m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2420m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2422m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2423m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2425m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2427m 984 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2428m 983 1 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2430m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2432m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2433m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2435m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2437m 983 1 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2438m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2440m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2442m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2443m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2445m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2447m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2448m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2450m 983 0 0 0 0 0 682s 380s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2452m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2453m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2455m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2457m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2458m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2460m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2462m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2463m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2465m 983 0 0 0 0 0 682s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2467m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2468m 983 1 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2470m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2472m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2473m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2475m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2477m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2478m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2480m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2482m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2483m 983 1 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2485m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2487m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2488m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2490m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2492m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2493m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2495m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2497m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2498m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2500m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2502m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2503m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2505m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2507m 983 0 0 0 0 0 683s 379s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2508m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2510m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2512m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2513m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2515m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2517m 983 0 0 0 0 0 683s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2518m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2520m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2522m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2523m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2525m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2527m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2528m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2530m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2532m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2533m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2535m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2537m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2538m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2540m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2542m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2543m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2545m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2547m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2548m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2550m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2552m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2553m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2555m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2557m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2558m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2560m 983 0 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2562m 984 1 0 0 0 0 684s 378s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2563m 984 0 0 0 0 0 684s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2565m 984 0 0 0 0 0 684s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2567m 984 0 0 0 0 0 684s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2568m 984 0 0 0 0 0 684s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2570m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2572m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2573m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2575m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2577m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2578m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2580m 984 1 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2582m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2583m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2585m 984 1 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2587m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2588m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2590m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2592m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2593m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2595m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2597m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2598m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2600m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2602m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2603m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2605m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2607m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2608m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2610m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2612m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2613m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2615m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2617m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2618m 984 0 0 0 0 0 685s 377s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2620m 984 0 0 0 0 0 685s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2622m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2623m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2625m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2627m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2628m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2630m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2632m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2633m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2635m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2637m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2638m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2640m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2642m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2643m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2645m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2647m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2648m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2650m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2652m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2653m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2655m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2657m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2658m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2660m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2662m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2663m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2665m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2667m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2668m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2670m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2672m 984 0 0 0 0 0 686s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2673m 984 0 0 0 0 0 687s 376s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2675m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2677m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2678m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2680m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2682m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2683m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2685m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2687m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2688m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2690m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2692m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2693m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2695m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2697m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2698m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2700m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2702m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2703m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2705m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2707m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2708m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2710m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2712m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2713m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2715m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2717m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2718m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2720m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2722m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2723m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2725m 984 0 0 0 0 0 687s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2727m 984 0 0 0 0 0 688s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2728m 984 0 0 0 0 0 688s 375s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2730m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2732m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2733m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2735m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2737m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2738m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2740m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2742m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2743m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2745m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2747m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2748m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2750m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2752m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2753m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2755m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2757m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2758m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2760m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2762m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2763m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2765m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2767m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2768m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2770m 984 1 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2772m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2773m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2775m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2777m 984 0 0 0 0 0 688s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2778m 984 0 0 0 0 0 689s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2780m 984 0 0 0 0 0 689s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2782m 984 0 0 0 0 0 689s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2783m 984 0 0 0 0 0 689s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2785m 984 0 0 0 0 0 689s 374s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2787m 984 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2788m 984 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2790m 984 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2792m 985 1 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2793m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2795m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2797m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2798m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2800m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2802m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2803m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2805m 985 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2807m 986 1 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2808m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2810m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2812m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2813m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2815m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2817m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2818m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2820m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2822m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2823m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2825m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2827m 986 0 0 0 0 0 689s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2828m 986 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2830m 985 1 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2832m 985 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2833m 985 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2835m 985 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2837m 985 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2838m 984 1 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2840m 984 0 0 0 0 0 690s 373s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2842m 984 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2843m 985 1 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2845m 985 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2847m 984 1 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2848m 984 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2850m 984 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2852m 984 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2853m 984 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2855m 985 1 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2857m 985 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2858m 985 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2860m 985 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2862m 986 1 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2863m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2865m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2867m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2868m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2870m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2872m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2873m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2875m 986 1 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2877m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2878m 986 0 0 0 0 0 690s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 13 2880m 986 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 0s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 100s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 200s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 300s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 400s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 500s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 600s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 700s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 800s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 900s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1000s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1100s 1033 0 0 0 0 0 691s 372s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1200s 1033 1 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1300s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1400s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1500s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1600s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1700s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1800s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1900s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2000s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2100s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2200s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2300s 1033 1 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2400s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2500s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2600s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2700s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2800s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2900s 1033 0 0 0 0 0 691s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3000s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3100s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3200s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3300s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3400s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3500s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3600s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3700s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3800s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 3900s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4000s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4100s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4200s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4300s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4400s 1033 0 0 0 0 0 692s 371s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4500s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4600s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4700s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4800s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 4900s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5000s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5100s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5200s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5300s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5400s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5500s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5600s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5700s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5800s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 5900s 1033 0 0 0 0 0 692s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6000s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6100s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6200s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6300s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6400s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6500s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6600s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6700s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6800s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 6900s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7000s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7100s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7200s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7300s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7400s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7500s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7600s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7700s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7800s 1033 0 0 0 0 0 693s 370s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 7900s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8000s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8100s 1033 1 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8200s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8300s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8400s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8500s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8600s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8700s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8800s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 8900s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9000s 1033 0 0 0 0 0 693s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9100s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9200s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9300s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9400s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9500s 1033 1 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9600s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9700s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9800s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 9900s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10000s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10100s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10200s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10300s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10400s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10500s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10600s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10700s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10800s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 10900s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11000s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11100s 1033 1 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11200s 1033 0 0 0 0 0 694s 369s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11300s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11400s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11500s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11600s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11700s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11800s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 11900s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12000s 1033 0 0 0 0 0 694s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12100s 1033 1 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12200s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12300s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12400s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12500s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12600s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12700s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12800s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 12900s 1033 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13000s 1032 1 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13100s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13200s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13300s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13400s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13500s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13600s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13700s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13800s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 13900s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14000s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14100s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14200s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14300s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14400s 1032 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14500s 1031 1 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14600s 1031 0 0 0 0 0 695s 368s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14700s 1031 0 0 0 0 0 695s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14800s 1031 0 0 0 0 0 695s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 14900s 1031 0 0 0 0 0 695s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15000s 1031 0 0 0 0 0 695s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15100s 1031 0 0 0 0 0 695s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15200s 1031 1 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15300s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15400s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15500s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15600s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15700s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15800s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 15900s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16000s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16100s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16200s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16300s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16400s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16500s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16600s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16700s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16800s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 16900s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17000s 1031 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17100s 1032 1 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17200s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17300s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17400s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17500s 1032 1 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17600s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17700s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17800s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 17900s 1032 0 0 0 0 0 696s 367s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18000s 1032 0 0 0 0 0 696s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18100s 1032 0 0 0 0 0 696s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18200s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18300s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18400s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18500s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18600s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18700s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18800s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 18900s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19000s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19100s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19200s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19300s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19400s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19500s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19600s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19700s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19800s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 19900s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20000s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20100s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20200s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20300s 1032 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20400s 1031 1 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20500s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20600s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20700s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20800s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 20900s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21000s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21100s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21200s 1031 0 0 0 0 0 697s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21300s 1031 0 0 0 0 0 698s 366s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21400s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21500s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21600s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21700s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21800s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 21900s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22000s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22100s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22200s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22300s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22400s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22500s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22600s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22700s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22800s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 22900s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23000s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23100s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23200s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23300s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23400s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23500s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23600s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23700s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23800s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 23900s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24000s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24100s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24200s 1031 0 0 0 0 0 698s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24300s 1031 0 0 0 0 0 699s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24400s 1031 0 0 0 0 0 699s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24500s 1031 0 0 0 0 0 699s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24600s 1031 0 0 0 0 0 699s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24700s 1031 0 0 0 0 0 699s 365s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24800s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 24900s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25000s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25100s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25200s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25300s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25400s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25500s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25600s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25700s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25800s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 25900s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26000s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26100s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26200s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26300s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26400s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26500s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26600s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26700s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26800s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 26900s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27000s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27100s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27200s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27300s 1031 0 0 0 0 0 699s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27400s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27500s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27600s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27700s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27800s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 27900s 1031 1 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28000s 1031 0 0 0 0 0 700s 364s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28100s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28200s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28300s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28400s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28500s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28600s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28700s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28800s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 28900s 1031 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29000s 1030 1 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29100s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29200s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29300s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29400s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29500s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29600s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29700s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29800s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 29900s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30000s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30100s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30200s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30300s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30400s 1030 0 0 0 0 0 700s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30500s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30600s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30700s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30800s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 30900s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31000s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31100s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31200s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31300s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31400s 1030 0 0 0 0 0 701s 363s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31500s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31600s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31700s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31800s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 31900s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32000s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32100s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32200s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32300s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32400s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32500s 1030 1 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32600s 1030 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32700s 1029 1 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32800s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 32900s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33000s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33100s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33200s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33300s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33400s 1029 0 0 0 0 0 701s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33500s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33600s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33700s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33800s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 33900s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34000s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34100s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34200s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34300s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34400s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34500s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34600s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34700s 1029 0 0 0 0 0 702s 362s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34800s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 34900s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35000s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35100s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35200s 1029 1 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35300s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35400s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35500s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35600s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35700s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35800s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 35900s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36000s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36100s 1029 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36200s 1028 2 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36300s 1028 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36400s 1028 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36500s 1028 0 0 0 0 0 702s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36600s 1028 1 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36700s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36800s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 36900s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37000s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37100s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37200s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37300s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37400s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37500s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37600s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37700s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37800s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 37900s 1028 1 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38000s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38100s 1028 0 0 0 0 0 703s 361s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38200s 1028 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38300s 1028 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38400s 1029 1 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38500s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38600s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38700s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38800s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 38900s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39000s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39100s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39200s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39300s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39400s 1029 1 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39500s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39600s 1029 0 0 0 0 0 703s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39700s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39800s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 39900s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40000s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40100s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40200s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40300s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40400s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40500s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40600s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40700s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40800s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 40900s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41000s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41100s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41200s 1029 1 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41300s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41400s 1029 0 0 0 0 0 704s 360s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41500s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41600s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41700s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41800s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 41900s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42000s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42100s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42200s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42300s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42400s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42500s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42600s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42700s 1029 0 0 0 0 0 704s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42800s 1028 1 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 42900s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43000s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43100s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43200s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43300s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43400s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43500s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43600s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43700s 1028 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43800s 1027 1 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 43900s 1027 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44000s 1027 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44100s 1027 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44200s 1027 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44300s 1027 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44400s 1026 1 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44500s 1026 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44600s 1026 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44700s 1026 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44800s 1026 0 0 0 0 0 705s 359s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 44900s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45000s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45100s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45200s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45300s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45400s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45500s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45600s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45700s 1026 0 0 0 0 0 705s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45800s 1026 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 45900s 1026 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46000s 1026 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46100s 1026 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46200s 1026 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46300s 1025 1 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46400s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46500s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46600s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46700s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46800s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 46900s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47000s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47100s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47200s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47300s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47400s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47500s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47600s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47700s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47800s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 47900s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48000s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48100s 1025 0 0 0 0 0 706s 358s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48200s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48300s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48400s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48500s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48600s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48700s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48800s 1025 0 0 0 0 0 706s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 48900s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49000s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49100s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49200s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49300s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49400s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49500s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49600s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49700s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49800s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 49900s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50000s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50100s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50200s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50300s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50400s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50500s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50600s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50700s 1025 1 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50800s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 50900s 1025 1 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51000s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51100s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51200s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51300s 1025 0 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51400s 1025 1 0 0 0 0 707s 357s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51500s 1025 0 0 0 0 0 707s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51600s 1025 0 0 0 0 0 707s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51700s 1025 0 0 0 0 0 707s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51800s 1025 0 0 0 0 0 707s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 51900s 1025 0 0 0 0 0 707s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52000s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52100s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52200s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52300s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52400s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52500s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52600s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52700s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52800s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 52900s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53000s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53100s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53200s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53300s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53400s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53500s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53600s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53700s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53800s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 53900s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54000s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54100s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54200s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54300s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54400s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54500s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54600s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54700s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54800s 1025 0 0 0 0 0 708s 356s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 54900s 1025 0 0 0 0 0 708s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55000s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55100s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55200s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55300s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55400s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55500s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55600s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55700s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55800s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 55900s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56000s 1025 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56100s 1024 1 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56200s 1024 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56300s 1024 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56400s 1024 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56500s 1024 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56600s 1023 1 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56700s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56800s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 56900s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57000s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57100s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57200s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57300s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57400s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57500s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57600s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57700s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57800s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 57900s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58000s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58100s 1023 0 0 0 0 0 709s 355s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58200s 1023 0 0 0 0 0 709s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58300s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58400s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58500s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58600s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58700s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58800s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 58900s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59000s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59100s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59200s 1023 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59300s 1022 1 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59400s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59500s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59600s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59700s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59800s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 59900s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60000s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60100s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60200s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60300s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60400s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60500s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60600s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60700s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60800s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 60900s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61000s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61100s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61200s 1022 0 0 0 0 0 710s 354s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61300s 1022 0 0 0 0 0 710s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61400s 1022 0 0 0 0 0 710s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61500s 1022 0 0 0 0 0 710s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61600s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61700s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61800s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 61900s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62000s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62100s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62200s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62300s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62400s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62500s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62600s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62700s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62800s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 62900s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63000s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63100s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63200s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63300s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63400s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63500s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63600s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63700s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63800s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 63900s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64000s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64100s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64200s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64300s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64400s 1022 0 0 0 0 0 711s 353s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64500s 1022 0 0 0 0 0 711s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64600s 1022 0 0 0 0 0 711s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64700s 1022 0 0 0 0 0 711s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64800s 1022 0 0 0 0 0 711s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 64900s 1022 0 0 0 0 0 711s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65000s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65100s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65200s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65300s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65400s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65500s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65600s 1022 1 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65700s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65800s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 65900s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66000s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66100s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66200s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66300s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66400s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66500s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66600s 1022 1 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66700s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66800s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 66900s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67000s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67100s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67200s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67300s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67400s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67500s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67600s 1022 0 0 0 0 0 712s 352s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67700s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67800s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 67900s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68000s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68100s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68200s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68300s 1022 0 0 0 0 0 712s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68400s 1022 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68500s 1022 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68600s 1022 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68700s 1022 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68800s 1021 1 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 68900s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69000s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69100s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69200s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69300s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69400s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69500s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69600s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69700s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69800s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 69900s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70000s 1021 1 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70100s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70200s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70300s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70400s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70500s 1021 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70600s 1020 1 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70700s 1020 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70800s 1020 0 0 0 0 0 713s 351s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 70900s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71000s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71100s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71200s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71300s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71400s 1020 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71500s 1019 1 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71600s 1019 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71700s 1019 0 0 0 0 0 713s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71800s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 71900s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72000s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72100s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72200s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72300s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72400s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72500s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72600s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72700s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72800s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 72900s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73000s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73100s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73200s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73300s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73400s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73500s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73600s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73700s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73800s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 73900s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74000s 1019 0 0 0 0 0 714s 350s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74100s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74200s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74300s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74400s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74500s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74600s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74700s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74800s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 74900s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75000s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75100s 1019 0 0 0 0 0 714s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75200s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75300s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75400s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75500s 1020 1 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75600s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75700s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75800s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 75900s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76000s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76100s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76200s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76300s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76400s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76500s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76600s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76700s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76800s 1020 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 76900s 1019 1 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77000s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77100s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77200s 1019 0 0 0 0 0 715s 349s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77300s 1019 1 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77400s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77500s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77600s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77700s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77800s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 77900s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78000s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78100s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78200s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78300s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78400s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78500s 1019 0 0 0 0 0 715s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78600s 1019 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78700s 1018 1 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78800s 1017 1 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 78900s 1017 1 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79000s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79100s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79200s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79300s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79400s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79500s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79600s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79700s 1018 1 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79800s 1018 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 79900s 1018 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80000s 1018 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80100s 1018 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80200s 1018 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80300s 1017 1 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80400s 1017 0 0 0 0 0 716s 348s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80500s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80600s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80700s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80800s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 80900s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81000s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81100s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81200s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81300s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81400s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81500s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81600s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81700s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81800s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 81900s 1017 0 0 0 0 0 716s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82000s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82100s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82200s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82300s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82400s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82500s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82600s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82700s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82800s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 82900s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83000s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83100s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83200s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83300s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83400s 1017 0 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83500s 1017 1 0 0 0 0 717s 347s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83600s 1017 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83700s 1017 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83800s 1016 1 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 83900s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84000s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84100s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84200s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84300s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84400s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84500s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84600s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84700s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84800s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 84900s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85000s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85100s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85200s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85300s 1016 0 0 0 0 0 717s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85400s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85500s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85600s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85700s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85800s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 85900s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86000s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86100s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86200s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86300s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86400s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86500s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86600s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86700s 1016 0 0 0 0 0 718s 346s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86800s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 86900s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87000s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87100s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87200s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87300s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87400s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87500s 1016 1 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87600s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87700s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87800s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 87900s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88000s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88100s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88200s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88300s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88400s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88500s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88600s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88700s 1016 0 0 0 0 0 718s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88800s 1016 1 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 88900s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89000s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89100s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89200s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89300s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89400s 1016 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89500s 1015 1 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89600s 1015 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89700s 1015 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89800s 1015 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 89900s 1015 0 0 0 0 0 719s 345s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90000s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90100s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90200s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90300s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90400s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90500s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90600s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90700s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90800s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 90900s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91000s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91100s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91200s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91300s 1015 1 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91400s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91500s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91600s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91700s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91800s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 91900s 1015 0 0 0 0 0 719s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92000s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92100s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92200s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92300s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92400s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92500s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92600s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92700s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92800s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 92900s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93000s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93100s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93200s 1015 0 0 0 0 0 720s 344s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93300s 1015 1 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93400s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93500s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93600s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93700s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93800s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 93900s 1015 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94000s 1016 1 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94100s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94200s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94300s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94400s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94500s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94600s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94700s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94800s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 94900s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95000s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95100s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95200s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95300s 1016 0 0 0 0 0 720s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95400s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95500s 1016 1 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95600s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95700s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95800s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 95900s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96000s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96100s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96200s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96300s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96400s 1016 0 0 0 0 0 721s 343s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96500s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96600s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96700s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96800s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 96900s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97000s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97100s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97200s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97300s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97400s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97500s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97600s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97700s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97800s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 97900s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98000s 1016 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98100s 1015 1 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98200s 1015 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98300s 1015 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98400s 1015 0 0 0 0 0 721s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98500s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98600s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98700s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98800s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 98900s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99000s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99100s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99200s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99300s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99400s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99500s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99600s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99700s 1015 0 0 0 0 0 722s 342s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99800s 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 99900s 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1667m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1668m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1670m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1672m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1673m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1675m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1677m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1678m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1680m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1682m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1683m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1685m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1687m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1688m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1690m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1692m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1693m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1695m 1015 0 0 0 0 0 722s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1697m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1698m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1700m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1702m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1703m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1705m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1707m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1708m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1710m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1712m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1713m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1715m 1015 0 0 0 0 0 723s 341s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1717m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1718m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1720m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1722m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1723m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1725m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1727m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1728m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1730m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1732m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1733m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1735m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1737m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1738m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1740m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1742m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1743m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1745m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1747m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1748m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1750m 1015 0 0 0 0 0 723s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1752m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1753m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1755m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1757m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1758m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1760m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1762m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1763m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1765m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1767m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1768m 1015 0 0 0 0 0 724s 340s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1770m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1772m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1773m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1775m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1777m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1778m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1780m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1782m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1783m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1785m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1787m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1788m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1790m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1792m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1793m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1795m 1015 1 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1797m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1798m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1800m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1802m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1803m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1805m 1015 0 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1807m 1015 1 0 0 0 0 724s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1808m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1810m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1812m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1813m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1815m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1817m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1818m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1820m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1822m 1015 0 0 0 0 0 725s 339s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1823m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1825m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1827m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1828m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1830m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1832m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1833m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1835m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1837m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1838m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1840m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1842m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1843m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1845m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1847m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1848m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1850m 1015 1 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1852m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1853m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1855m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1857m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1858m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1860m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1862m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1863m 1015 0 0 0 0 0 725s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1865m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1867m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1868m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1870m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1872m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1873m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1875m 1015 0 0 0 0 0 726s 338s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1877m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1878m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1880m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1882m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1883m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1885m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1887m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1888m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1890m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1892m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1893m 1015 1 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1895m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1897m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1898m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1900m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1902m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1903m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1905m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1907m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1908m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1910m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1912m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1913m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1915m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1917m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1918m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1920m 1015 0 0 0 0 0 726s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1922m 1015 0 0 0 0 0 727s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1923m 1014 1 0 0 0 0 727s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1925m 1014 0 0 0 0 0 727s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1927m 1014 0 0 0 0 0 727s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1928m 1014 0 0 0 0 0 727s 337s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1930m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1932m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1933m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1935m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1937m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1938m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1940m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1942m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1943m 1014 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1945m 1013 1 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1947m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1948m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1950m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1952m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1953m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1955m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1957m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1958m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1960m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1962m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1963m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1965m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1967m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1968m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1970m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1972m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1973m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1975m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1977m 1013 0 0 0 0 0 727s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1978m 1013 0 0 0 0 0 728s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1980m 1013 0 0 0 0 0 728s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1982m 1013 0 0 0 0 0 728s 336s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1983m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1985m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1987m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1988m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1990m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1992m 1013 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1993m 1012 1 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1995m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1997m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 1998m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2000m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2002m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2003m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2005m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2007m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2008m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2010m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2012m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2013m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2015m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2017m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2018m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2020m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2022m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2023m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2025m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2027m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2028m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2030m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2032m 1012 0 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2033m 1012 1 0 0 0 0 728s 335s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2035m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2037m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2038m 1012 1 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2040m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2042m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2043m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2045m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2047m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2048m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2050m 1012 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2052m 1010 2 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2053m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2055m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2057m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2058m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2060m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2062m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2063m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2065m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2067m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2068m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2070m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2072m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2073m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2075m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2077m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2078m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2080m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2082m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2083m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2085m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2087m 1010 0 0 0 0 0 729s 334s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2088m 1010 0 0 0 0 0 729s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2090m 1010 0 0 0 0 0 729s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2092m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2093m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2095m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2097m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2098m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2100m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2102m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2103m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2105m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2107m 1010 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2108m 1009 1 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2110m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2112m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2113m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2115m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2117m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2118m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2120m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2122m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2123m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2125m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2127m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2128m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2130m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2132m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2133m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2135m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2137m 1009 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2138m 1008 1 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2140m 1008 0 0 0 0 0 730s 333s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2142m 1008 0 0 0 0 0 730s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2143m 1008 0 0 0 0 0 730s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2145m 1008 0 0 0 0 0 730s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2147m 1008 0 0 0 0 0 730s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2148m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2150m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2152m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2153m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2155m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2157m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2158m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2160m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2162m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2163m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2165m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2167m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2168m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2170m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2172m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2173m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2175m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2177m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2178m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2180m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2182m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2183m 1008 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2185m 1007 1 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2187m 1007 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2188m 1007 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2190m 1007 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2192m 1007 1 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2193m 1007 0 0 0 0 0 731s 332s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2195m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2197m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2198m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2200m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2202m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2203m 1007 0 0 0 0 0 731s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2205m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2207m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2208m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2210m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2212m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2213m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2215m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2217m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2218m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2220m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2222m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2223m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2225m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2227m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2228m 1007 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2230m 1006 1 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2232m 1006 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2233m 1006 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2235m 1006 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2237m 1006 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2238m 1005 2 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2240m 1005 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2242m 1005 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2243m 1005 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2245m 1005 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2247m 1005 0 0 0 0 0 732s 331s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2248m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2250m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2252m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2253m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2255m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2257m 1005 1 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2258m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2260m 1005 0 0 0 0 0 732s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2262m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2263m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2265m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2267m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2268m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2270m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2272m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2273m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2275m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2277m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2278m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2280m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2282m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2283m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2285m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2287m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2288m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2290m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2292m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2293m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2295m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2297m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2298m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2300m 1005 0 0 0 0 0 733s 330s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2302m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2303m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2305m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2307m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2308m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2310m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2312m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2313m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2315m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2317m 1005 0 0 0 0 0 733s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2318m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2320m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2322m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2323m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2325m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2327m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2328m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2330m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2332m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2333m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2335m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2337m 1005 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2338m 1006 1 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2340m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2342m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2343m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2345m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2347m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2348m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2350m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2352m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2353m 1006 0 0 0 0 0 734s 329s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2355m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2357m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2358m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2360m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2362m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2363m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2365m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2367m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2368m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2370m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2372m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2373m 1006 0 0 0 0 0 734s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2375m 1006 1 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2377m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2378m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2380m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2382m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2383m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2385m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2387m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2388m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2390m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2392m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2393m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2395m 1006 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2397m 1005 1 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2398m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2400m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2402m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2403m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2405m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2407m 1005 0 0 0 0 0 735s 328s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2408m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2410m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2412m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2413m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2415m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2417m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2418m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2420m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2422m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2423m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2425m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2427m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2428m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2430m 1005 0 0 0 0 0 735s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2432m 1005 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2433m 1004 1 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2435m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2437m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2438m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2440m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2442m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2443m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2445m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2447m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2448m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2450m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2452m 1004 1 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2453m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2455m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2457m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2458m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2460m 1004 0 0 0 0 0 736s 327s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2462m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2463m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2465m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2467m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2468m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2470m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2472m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2473m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2475m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2477m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2478m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2480m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2482m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2483m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2485m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2487m 1004 0 0 0 0 0 736s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2488m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2490m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2492m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2493m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2495m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2497m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2498m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2500m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2502m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2503m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2505m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2507m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2508m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2510m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2512m 1004 0 0 0 0 0 737s 326s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2513m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2515m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2517m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2518m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2520m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2522m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2523m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2525m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2527m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2528m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2530m 1004 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2532m 1003 1 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2533m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2535m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2537m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2538m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2540m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2542m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2543m 1003 0 0 0 0 0 737s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2545m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2547m 1003 1 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2548m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2550m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2552m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2553m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2555m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2557m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2558m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2560m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2562m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2563m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2565m 1003 0 0 0 0 0 738s 325s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2567m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2568m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2570m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2572m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2573m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2575m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2577m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2578m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2580m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2582m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2583m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2585m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2587m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2588m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2590m 1002 1 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2592m 1002 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2593m 1002 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2595m 1002 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2597m 1002 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2598m 1003 1 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2600m 1003 0 0 0 0 0 738s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2602m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2603m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2605m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2607m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2608m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2610m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2612m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2613m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2615m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2617m 1003 1 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2618m 1003 0 0 0 0 0 739s 324s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2620m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2622m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2623m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2625m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2627m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2628m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2630m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2632m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2633m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2635m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2637m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2638m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2640m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2642m 1003 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2643m 1002 1 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2645m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2647m 1002 1 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2648m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2650m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2652m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2653m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2655m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2657m 1002 0 0 0 0 0 739s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2658m 1002 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2660m 1002 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2662m 1002 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2663m 1002 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2665m 1002 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2667m 1001 1 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2668m 1001 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2670m 1001 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2672m 1001 0 0 0 0 0 740s 323s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2673m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2675m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2677m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2678m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2680m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2682m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2683m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2685m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2687m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2688m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2690m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2692m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2693m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2695m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2697m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2698m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2700m 1001 1 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2702m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2703m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2705m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2707m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2708m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2710m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2712m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2713m 1001 0 0 0 0 0 740s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2715m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2717m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2718m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2720m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2722m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2723m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2725m 1001 0 0 0 0 0 741s 322s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2727m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2728m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2730m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2732m 1001 1 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2733m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2735m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2737m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2738m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2740m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2742m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2743m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2745m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2747m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2748m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2750m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2752m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2753m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2755m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2757m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2758m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2760m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2762m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2763m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2765m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2767m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2768m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2770m 1001 1 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2772m 1001 0 0 0 0 0 741s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2773m 1001 0 0 0 0 0 742s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2775m 1001 0 0 0 0 0 742s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2777m 1001 0 0 0 0 0 742s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2778m 1001 0 0 0 0 0 742s 321s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2780m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2782m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2783m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2785m 1002 1 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2787m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2788m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2790m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2792m 1002 1 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2793m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2795m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2797m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2798m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2800m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2802m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2803m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2805m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2807m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2808m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2810m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2812m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2813m 1002 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2815m 1001 1 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2817m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2818m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2820m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2822m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2823m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2825m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2827m 1001 0 0 0 0 0 742s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2828m 1001 0 0 0 0 0 743s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2830m 1001 0 0 0 0 0 743s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2832m 1001 0 0 0 0 0 743s 320s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2833m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2835m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2837m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2838m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2840m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2842m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2843m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2845m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2847m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2848m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2850m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2852m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2853m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2855m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2857m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2858m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2860m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2862m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2863m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2865m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2867m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2868m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2870m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2872m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2873m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2875m 1001 1 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2877m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2878m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 14 2880m 1001 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 0s 957 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 100s 957 0 0 0 0 0 743s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 200s 957 0 0 0 0 0 744s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 300s 957 0 0 0 0 0 744s 319s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 400s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 500s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 600s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 700s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 800s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 900s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1000s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1100s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1200s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1300s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1400s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1500s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1600s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1700s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1800s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1900s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2000s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2100s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2200s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2300s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2400s 957 1 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2500s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2600s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2700s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2800s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2900s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3000s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3100s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3200s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3300s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3400s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3500s 957 0 0 0 0 0 744s 318s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3600s 957 0 0 0 0 0 744s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3700s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3800s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 3900s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4000s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4100s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4200s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4300s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4400s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4500s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4600s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4700s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4800s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 4900s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5000s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5100s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5200s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5300s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5400s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5500s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5600s 957 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5700s 956 1 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5800s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 5900s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6000s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6100s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6200s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6300s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6400s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6500s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6600s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6700s 956 0 0 0 0 0 745s 317s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6800s 956 0 0 0 0 0 745s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 6900s 956 0 0 0 0 0 745s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7000s 956 0 0 0 0 0 745s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7100s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7200s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7300s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7400s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7500s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7600s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7700s 956 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7800s 954 2 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 7900s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8000s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8100s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8200s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8300s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8400s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8500s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8600s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8700s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8800s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 8900s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9000s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9100s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9200s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9300s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9400s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9500s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9600s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9700s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9800s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 9900s 954 0 0 0 0 0 746s 316s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10000s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10100s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10200s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10300s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10400s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10500s 954 0 0 0 0 0 746s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10600s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10700s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10800s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 10900s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11000s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11100s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11200s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11300s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11400s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11500s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11600s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11700s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11800s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 11900s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12000s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12100s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12200s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12300s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12400s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12500s 954 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12600s 953 1 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12700s 953 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12800s 953 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 12900s 953 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13000s 953 0 0 0 0 0 747s 315s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13100s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13200s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13300s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13400s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13500s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13600s 953 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13700s 952 1 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13800s 952 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 13900s 952 0 0 0 0 0 747s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14000s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14100s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14200s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14300s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14400s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14500s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14600s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14700s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14800s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 14900s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15000s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15100s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15200s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15300s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15400s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15500s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15600s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15700s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15800s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 15900s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16000s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16100s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16200s 952 0 0 0 0 0 748s 314s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16300s 952 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16400s 952 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16500s 953 1 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16600s 953 1 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16700s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16800s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 16900s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17000s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17100s 953 1 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17200s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17300s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17400s 953 0 0 0 0 0 748s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17500s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17600s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17700s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17800s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 17900s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18000s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18100s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18200s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18300s 953 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18400s 952 1 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18500s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18600s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18700s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18800s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 18900s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19000s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19100s 952 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19200s 951 1 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19300s 951 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19400s 951 0 0 0 0 0 749s 313s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19500s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19600s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19700s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19800s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 19900s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20000s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20100s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20200s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20300s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20400s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20500s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20600s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20700s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20800s 951 0 0 0 0 0 749s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 20900s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21000s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21100s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21200s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21300s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21400s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21500s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21600s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21700s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21800s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 21900s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22000s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22100s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22200s 951 1 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22300s 951 1 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22400s 951 1 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22500s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22600s 951 0 0 0 0 0 750s 312s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22700s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22800s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 22900s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23000s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23100s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23200s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23300s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23400s 951 1 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23500s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23600s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23700s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23800s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 23900s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24000s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24100s 951 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24200s 950 1 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24300s 950 0 0 0 0 0 750s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24400s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24500s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24600s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24700s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24800s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 24900s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25000s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25100s 950 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25200s 949 1 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25300s 949 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25400s 949 1 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25500s 949 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25600s 949 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25700s 949 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25800s 949 0 0 0 0 0 751s 311s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 25900s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26000s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26100s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26200s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26300s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26400s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26500s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26600s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26700s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26800s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 26900s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27000s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27100s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27200s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27300s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27400s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27500s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27600s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27700s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27800s 949 0 0 0 0 0 751s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 27900s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28000s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28100s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28200s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28300s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28400s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28500s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28600s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28700s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28800s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 28900s 949 0 0 0 0 0 752s 310s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29000s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29100s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29200s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29300s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29400s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29500s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29600s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29700s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29800s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 29900s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30000s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30100s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30200s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30300s 949 1 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30400s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30500s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30600s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30700s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30800s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 30900s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31000s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31100s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31200s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31300s 949 0 0 0 0 0 752s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31400s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31500s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31600s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31700s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31800s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 31900s 949 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32000s 948 1 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32100s 948 0 0 0 0 0 753s 309s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32200s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32300s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32400s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32500s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32600s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32700s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32800s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 32900s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33000s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33100s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33200s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33300s 948 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33400s 947 1 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33500s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33600s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33700s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33800s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 33900s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34000s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34100s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34200s 947 1 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34300s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34400s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34500s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34600s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34700s 947 0 0 0 0 0 753s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34800s 947 0 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 34900s 948 1 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35000s 948 0 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35100s 948 0 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35200s 948 0 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35300s 948 0 0 0 0 0 754s 308s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35400s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35500s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35600s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35700s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35800s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 35900s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36000s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36100s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36200s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36300s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36400s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36500s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36600s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36700s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36800s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 36900s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37000s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37100s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37200s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37300s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37400s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37500s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37600s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37700s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37800s 948 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 37900s 947 1 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38000s 947 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38100s 947 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38200s 947 0 0 0 0 0 754s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38300s 947 0 0 0 0 0 755s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38400s 947 0 0 0 0 0 755s 307s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38500s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38600s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38700s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38800s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 38900s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39000s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39100s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39200s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39300s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39400s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39500s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39600s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39700s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39800s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 39900s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40000s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40100s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40200s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40300s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40400s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40500s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40600s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40700s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40800s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 40900s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41000s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41100s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41200s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41300s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41400s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41500s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41600s 947 0 0 0 0 0 755s 306s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41700s 947 0 0 0 0 0 755s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41800s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 41900s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42000s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42100s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42200s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42300s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42400s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42500s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42600s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42700s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42800s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 42900s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43000s 947 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43100s 946 1 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43200s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43300s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43400s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43500s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43600s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43700s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43800s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 43900s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44000s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44100s 946 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44200s 945 1 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44300s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44400s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44500s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44600s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44700s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44800s 945 0 0 0 0 0 756s 305s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 44900s 945 0 0 0 0 0 756s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45000s 945 0 0 0 0 0 756s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45100s 945 1 0 0 0 0 756s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45200s 945 0 0 0 0 0 756s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45300s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45400s 945 1 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45500s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45600s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45700s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45800s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 45900s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46000s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46100s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46200s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46300s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46400s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46500s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46600s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46700s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46800s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 46900s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47000s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47100s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47200s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47300s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47400s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47500s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47600s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47700s 945 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47800s 946 1 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 47900s 946 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48000s 946 0 0 0 0 0 757s 304s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48100s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48200s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48300s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48400s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48500s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48600s 946 1 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48700s 946 0 0 0 0 0 757s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48800s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 48900s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49000s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49100s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49200s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49300s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49400s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49500s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49600s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49700s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49800s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 49900s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50000s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50100s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50200s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50300s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50400s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50500s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50600s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50700s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50800s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 50900s 946 1 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51000s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51100s 946 0 0 0 0 0 758s 303s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51200s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51300s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51400s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51500s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51600s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51700s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51800s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 51900s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52000s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52100s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52200s 946 0 0 0 0 0 758s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52300s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52400s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52500s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52600s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52700s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52800s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 52900s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53000s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53100s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53200s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53300s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53400s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53500s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53600s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53700s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53800s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 53900s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54000s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54100s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54200s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54300s 946 0 0 0 0 0 759s 302s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54400s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54500s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54600s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54700s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54800s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 54900s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55000s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55100s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55200s 946 1 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55300s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55400s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55500s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55600s 946 0 0 0 0 0 759s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55700s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55800s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 55900s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56000s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56100s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56200s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56300s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56400s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56500s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56600s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56700s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56800s 946 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 56900s 945 2 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57000s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57100s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57200s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57300s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57400s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57500s 945 0 0 0 0 0 760s 301s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57600s 945 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57700s 945 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57800s 944 1 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 57900s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58000s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58100s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58200s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58300s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58400s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58500s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58600s 944 1 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58700s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58800s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 58900s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59000s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59100s 944 0 0 0 0 0 760s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59200s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59300s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59400s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59500s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59600s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59700s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59800s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 59900s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60000s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60100s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60200s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60300s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60400s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60500s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60600s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60700s 944 0 0 0 0 0 761s 300s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60800s 944 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 60900s 944 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61000s 944 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61100s 944 1 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61200s 944 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61300s 944 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61400s 945 1 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61500s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61600s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61700s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61800s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 61900s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62000s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62100s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62200s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62300s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62400s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62500s 945 1 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62600s 945 0 0 0 0 0 761s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62700s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62800s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 62900s 945 1 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63000s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63100s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63200s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63300s 945 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63400s 944 1 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63500s 944 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63600s 944 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63700s 944 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63800s 944 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 63900s 944 0 0 0 0 0 762s 299s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64000s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64100s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64200s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64300s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64400s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64500s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64600s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64700s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64800s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 64900s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65000s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65100s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65200s 944 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65300s 943 1 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65400s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65500s 943 1 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65600s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65700s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65800s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 65900s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66000s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66100s 943 0 0 0 0 0 762s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66200s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66300s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66400s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66500s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66600s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66700s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66800s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 66900s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67000s 943 0 0 0 0 0 763s 298s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67100s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67200s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67300s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67400s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67500s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67600s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67700s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67800s 943 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 67900s 944 2 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68000s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68100s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68200s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68300s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68400s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68500s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68600s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68700s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68800s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 68900s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69000s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69100s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69200s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69300s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69400s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69500s 944 0 0 0 0 0 763s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69600s 944 0 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69700s 942 2 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69800s 942 0 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 69900s 942 0 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70000s 942 0 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70100s 942 1 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70200s 942 0 0 0 0 0 764s 297s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70300s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70400s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70500s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70600s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70700s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70800s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 70900s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71000s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71100s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71200s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71300s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71400s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71500s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71600s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71700s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71800s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 71900s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72000s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72100s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72200s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72300s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72400s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72500s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72600s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72700s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72800s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 72900s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73000s 942 0 0 0 0 0 764s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73100s 942 0 0 0 0 0 765s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73200s 942 0 0 0 0 0 765s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73300s 942 0 0 0 0 0 765s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73400s 942 0 0 0 0 0 765s 296s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73500s 942 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73600s 942 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73700s 942 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73800s 941 1 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 73900s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74000s 941 1 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74100s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74200s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74300s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74400s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74500s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74600s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74700s 941 1 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74800s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 74900s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75000s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75100s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75200s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75300s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75400s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75500s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75600s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75700s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75800s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 75900s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76000s 941 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76100s 940 1 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76200s 940 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76300s 940 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76400s 940 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76500s 940 0 0 0 0 0 765s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76600s 940 0 0 0 0 0 766s 295s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76700s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76800s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 76900s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77000s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77100s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77200s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77300s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77400s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77500s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77600s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77700s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77800s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 77900s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78000s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78100s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78200s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78300s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78400s 940 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78500s 941 1 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78600s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78700s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78800s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 78900s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79000s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79100s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79200s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79300s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79400s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79500s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79600s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79700s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79800s 941 0 0 0 0 0 766s 294s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 79900s 941 0 0 0 0 0 766s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80000s 941 0 0 0 0 0 766s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80100s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80200s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80300s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80400s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80500s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80600s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80700s 941 1 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80800s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 80900s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81000s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81100s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81200s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81300s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81400s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81500s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81600s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81700s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81800s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 81900s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82000s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82100s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82200s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82300s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82400s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82500s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82600s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82700s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82800s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 82900s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83000s 941 0 0 0 0 0 767s 293s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83100s 941 0 0 0 0 0 767s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83200s 941 0 0 0 0 0 767s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83300s 941 0 0 0 0 0 767s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83400s 941 0 0 0 0 0 767s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83500s 941 0 0 0 0 0 767s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83600s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83700s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83800s 941 1 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 83900s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84000s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84100s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84200s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84300s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84400s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84500s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84600s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84700s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84800s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 84900s 941 1 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85000s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85100s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85200s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85300s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85400s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85500s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85600s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85700s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85800s 941 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 85900s 942 1 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86000s 942 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86100s 942 0 0 0 0 0 768s 292s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86200s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86300s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86400s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86500s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86600s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86700s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86800s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 86900s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87000s 942 0 0 0 0 0 768s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87100s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87200s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87300s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87400s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87500s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87600s 942 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87700s 943 1 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87800s 943 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 87900s 943 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88000s 943 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88100s 944 1 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88200s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88300s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88400s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88500s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88600s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88700s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88800s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 88900s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89000s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89100s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89200s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89300s 944 0 0 0 0 0 769s 291s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89400s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89500s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89600s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89700s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89800s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 89900s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90000s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90100s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90200s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90300s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90400s 944 0 0 0 0 0 769s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90500s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90600s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90700s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90800s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 90900s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91000s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91100s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91200s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91300s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91400s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91500s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91600s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91700s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91800s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 91900s 944 1 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92000s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92100s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92200s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92300s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92400s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92500s 944 0 0 0 0 0 770s 290s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92600s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92700s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92800s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 92900s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93000s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93100s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93200s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93300s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93400s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93500s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93600s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93700s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93800s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 93900s 944 0 0 0 0 0 770s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94000s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94100s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94200s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94300s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94400s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94500s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94600s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94700s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94800s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 94900s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95000s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95100s 944 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95200s 943 1 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95300s 943 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95400s 943 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95500s 943 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95600s 943 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95700s 943 0 0 0 0 0 771s 289s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95800s 943 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 95900s 943 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96000s 943 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96100s 943 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96200s 943 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96300s 942 1 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96400s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96500s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96600s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96700s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96800s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 96900s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97000s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97100s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97200s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97300s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97400s 942 0 0 0 0 0 771s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97500s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97600s 942 1 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97700s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97800s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 97900s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98000s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98100s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98200s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98300s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98400s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98500s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98600s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98700s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98800s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 98900s 942 0 0 0 0 0 772s 288s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99000s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99100s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99200s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99300s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99400s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99500s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99600s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99700s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99800s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 99900s 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1667m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1668m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1670m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1672m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1673m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1675m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1677m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1678m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1680m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1682m 942 0 0 0 0 0 772s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1683m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1685m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1687m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1688m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1690m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1692m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1693m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1695m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1697m 942 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1698m 941 1 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1700m 941 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1702m 941 0 0 0 0 0 773s 287s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1703m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1705m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1707m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1708m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1710m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1712m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1713m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1715m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1717m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1718m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1720m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1722m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1723m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1725m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1727m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1728m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1730m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1732m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1733m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1735m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1737m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1738m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1740m 941 0 0 0 0 0 773s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1742m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1743m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1745m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1747m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1748m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1750m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1752m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1753m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1755m 941 0 0 0 0 0 774s 286s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1757m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1758m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1760m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1762m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1763m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1765m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1767m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1768m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1770m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1772m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1773m 941 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1775m 940 1 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1777m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1778m 940 2 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1780m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1782m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1783m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1785m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1787m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1788m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1790m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1792m 940 1 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1793m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1795m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1797m 940 0 0 0 0 0 774s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1798m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1800m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1802m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1803m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1805m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1807m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1808m 940 0 0 0 0 0 775s 285s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1810m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1812m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1813m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1815m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1817m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1818m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1820m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1822m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1823m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1825m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1827m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1828m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1830m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1832m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1833m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1835m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1837m 940 1 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1838m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1840m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1842m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1843m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1845m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1847m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1848m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1850m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1852m 940 0 0 0 0 0 775s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1853m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1855m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1857m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1858m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1860m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1862m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1863m 940 0 0 0 0 0 776s 284s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1865m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1867m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1868m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1870m 940 1 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1872m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1873m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1875m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1877m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1878m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1880m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1882m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1883m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1885m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1887m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1888m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1890m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1892m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1893m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1895m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1897m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1898m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1900m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1902m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1903m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1905m 940 0 0 0 0 0 776s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1907m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1908m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1910m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1912m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1913m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1915m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1917m 940 0 0 0 0 0 777s 283s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1918m 940 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1920m 939 1 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1922m 939 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1923m 938 1 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1925m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1927m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1928m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1930m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1932m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1933m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1935m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1937m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1938m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1940m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1942m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1943m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1945m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1947m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1948m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1950m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1952m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1953m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1955m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1957m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1958m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1960m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1962m 938 0 0 0 0 0 777s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1963m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1965m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1967m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1968m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1970m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1972m 938 0 0 0 0 0 778s 282s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1973m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1975m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1977m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1978m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1980m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1982m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1983m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1985m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1987m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1988m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1990m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1992m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1993m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1995m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1997m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 1998m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2000m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2002m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2003m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2005m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2007m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2008m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2010m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2012m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2013m 938 0 0 0 0 0 778s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2015m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2017m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2018m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2020m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2022m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2023m 938 1 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2025m 938 0 0 0 0 0 779s 281s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2027m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2028m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2030m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2032m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2033m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2035m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2037m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2038m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2040m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2042m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2043m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2045m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2047m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2048m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2050m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2052m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2053m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2055m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2057m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2058m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2060m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2062m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2063m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2065m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2067m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2068m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2070m 938 0 0 0 0 0 779s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2072m 938 0 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2073m 938 0 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2075m 938 1 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2077m 938 0 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2078m 938 0 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2080m 938 0 0 0 0 0 780s 280s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2082m 938 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2083m 938 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2085m 937 1 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2087m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2088m 936 1 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2090m 936 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2092m 936 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2093m 937 1 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2095m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2097m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2098m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2100m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2102m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2103m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2105m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2107m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2108m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2110m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2112m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2113m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2115m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2117m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2118m 937 0 0 0 0 0 780s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2120m 936 1 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2122m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2123m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2125m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2127m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2128m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2130m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2132m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2133m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2135m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2137m 936 0 0 0 0 0 781s 279s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2138m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2140m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2142m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2143m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2145m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2147m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2148m 936 1 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2150m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2152m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2153m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2155m 936 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2157m 935 1 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2158m 935 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2160m 935 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2162m 935 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2163m 935 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2165m 935 0 0 0 0 0 781s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2167m 935 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2168m 935 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2170m 935 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2172m 935 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2173m 934 1 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2175m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2177m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2178m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2180m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2182m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2183m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2185m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2187m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2188m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2190m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2192m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2193m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2195m 934 0 0 0 0 0 782s 278s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2197m 934 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2198m 933 1 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2200m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2202m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2203m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2205m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2207m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2208m 933 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2210m 932 1 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2212m 932 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2213m 932 0 0 0 0 0 782s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2215m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2217m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2218m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2220m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2222m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2223m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2225m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2227m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2228m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2230m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2232m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2233m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2235m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2237m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2238m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2240m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2242m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2243m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2245m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2247m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2248m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2250m 932 0 0 0 0 0 783s 277s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2252m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2253m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2255m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2257m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2258m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2260m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2262m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2263m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2265m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2267m 932 1 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2268m 932 0 0 0 0 0 783s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2270m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2272m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2273m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2275m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2277m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2278m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2280m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2282m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2283m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2285m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2287m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2288m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2290m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2292m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2293m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2295m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2297m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2298m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2300m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2302m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2303m 932 0 0 0 0 0 784s 276s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2305m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2307m 932 1 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2308m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2310m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2312m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2313m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2315m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2317m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2318m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2320m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2322m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2323m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2325m 932 0 0 0 0 0 784s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2327m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2328m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2330m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2332m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2333m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2335m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2337m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2338m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2340m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2342m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2343m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2345m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2347m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2348m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2350m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2352m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2353m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2355m 932 0 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2357m 931 1 0 0 0 0 785s 275s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2358m 931 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2360m 931 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2362m 931 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2363m 931 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2365m 930 1 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2367m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2368m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2370m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2372m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2373m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2375m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2377m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2378m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2380m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2382m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2383m 930 0 0 0 0 0 785s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2385m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2387m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2388m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2390m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2392m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2393m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2395m 930 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2397m 929 1 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2398m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2400m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2402m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2403m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2405m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2407m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2408m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2410m 929 0 0 0 0 0 786s 274s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2412m 929 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2413m 929 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2415m 929 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2417m 929 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2418m 929 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2420m 928 1 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2422m 928 1 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2423m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2425m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2427m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2428m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2430m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2432m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2433m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2435m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2437m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2438m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2440m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2442m 928 0 0 0 0 0 786s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2443m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2445m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2447m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2448m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2450m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2452m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2453m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2455m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2457m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2458m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2460m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2462m 928 0 0 0 0 0 787s 273s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2463m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2465m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2467m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2468m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2470m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2472m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2473m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2475m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2477m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2478m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2480m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2482m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2483m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2485m 928 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2487m 927 1 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2488m 926 1 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2490m 926 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2492m 926 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2493m 927 1 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2495m 927 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2497m 927 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2498m 927 0 0 0 0 0 787s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2500m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2502m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2503m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2505m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2507m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2508m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2510m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2512m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2513m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2515m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2517m 927 0 0 0 0 0 788s 272s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2518m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2520m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2522m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2523m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2525m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2527m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2528m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2530m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2532m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2533m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2535m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2537m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2538m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2540m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2542m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2543m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2545m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2547m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2548m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2550m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2552m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2553m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2555m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2557m 927 0 0 0 0 0 788s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2558m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2560m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2562m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2563m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2565m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2567m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2568m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2570m 927 0 0 0 0 0 789s 271s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2572m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2573m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2575m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2577m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2578m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2580m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2582m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2583m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2585m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2587m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2588m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2590m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2592m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2593m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2595m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2597m 927 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2598m 926 1 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2600m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2602m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2603m 926 1 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2605m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2607m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2608m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2610m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2612m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2613m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2615m 926 0 0 0 0 0 789s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2617m 926 0 0 0 0 0 790s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2618m 926 0 0 0 0 0 790s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2620m 926 0 0 0 0 0 790s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2622m 926 0 0 0 0 0 790s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2623m 926 0 0 0 0 0 790s 270s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2625m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2627m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2628m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2630m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2632m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2633m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2635m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2637m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2638m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2640m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2642m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2643m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2645m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2647m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2648m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2650m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2652m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2653m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2655m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2657m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2658m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2660m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2662m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2663m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2665m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2667m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2668m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2670m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2672m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2673m 926 0 0 0 0 0 790s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2675m 926 0 0 0 0 0 791s 269s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2677m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2678m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2680m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2682m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2683m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2685m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2687m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2688m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2690m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2692m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2693m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2695m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2697m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2698m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2700m 926 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2702m 925 1 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2703m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2705m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2707m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2708m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2710m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2712m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2713m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2715m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2717m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2718m 925 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2720m 924 1 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2722m 924 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2723m 924 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2725m 924 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2727m 924 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2728m 924 0 0 0 0 0 791s 268s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2730m 924 0 0 0 0 0 791s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2732m 924 0 0 0 0 0 791s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2733m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2735m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2737m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2738m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2740m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2742m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2743m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2745m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2747m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2748m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2750m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2752m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2753m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2755m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2757m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2758m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2760m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2762m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2763m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2765m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2767m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2768m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2770m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2772m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2773m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2775m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2777m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2778m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2780m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2782m 924 0 0 0 0 0 792s 267s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2783m 924 0 0 0 0 0 792s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2785m 924 0 0 0 0 0 792s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2787m 924 0 0 0 0 0 792s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2788m 924 0 0 0 0 0 792s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2790m 924 0 0 0 0 0 792s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2792m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2793m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2795m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2797m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2798m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2800m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2802m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2803m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2805m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2807m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2808m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2810m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2812m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2813m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2815m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2817m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2818m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2820m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2822m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2823m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2825m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2827m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2828m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2830m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2832m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2833m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2835m 924 0 0 0 0 0 793s 266s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2837m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2838m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2840m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2842m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2843m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2845m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2847m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2848m 924 0 0 0 0 0 793s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2850m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2852m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2853m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2855m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2857m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2858m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2860m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2862m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2863m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2865m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2867m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2868m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2870m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2872m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2873m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2875m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2877m 924 1 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2878m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 15 2880m 924 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 0s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 100s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 200s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 300s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 400s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 500s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 600s 1033 0 0 0 0 0 794s 265s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 700s 1033 0 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 800s 1033 0 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 900s 1033 0 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1000s 1033 0 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1100s 1033 0 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1200s 1032 1 0 0 0 0 794s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1300s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1400s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1500s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1600s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1700s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1800s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1900s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2000s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2100s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2200s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2300s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2400s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2500s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2600s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2700s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2800s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2900s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3000s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3100s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3200s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3300s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3400s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3500s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3600s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3700s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3800s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 3900s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4000s 1032 0 0 0 0 0 795s 264s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4100s 1032 0 0 0 0 0 795s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4200s 1032 0 0 0 0 0 795s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4300s 1031 1 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4400s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4500s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4600s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4700s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4800s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 4900s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5000s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5100s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5200s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5300s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5400s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5500s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5600s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5700s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5800s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 5900s 1031 1 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6000s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6100s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6200s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6300s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6400s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6500s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6600s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6700s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6800s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 6900s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7000s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7100s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7200s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7300s 1031 0 0 0 0 0 796s 263s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7400s 1031 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7500s 1031 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7600s 1031 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7700s 1031 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7800s 1030 1 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 7900s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8000s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8100s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8200s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8300s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8400s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8500s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8600s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8700s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8800s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 8900s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9000s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9100s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9200s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9300s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9400s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9500s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9600s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9700s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9800s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 9900s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10000s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10100s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10200s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10300s 1030 0 0 0 0 0 797s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10400s 1030 0 0 0 0 0 798s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10500s 1030 1 0 0 0 0 798s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10600s 1030 0 0 0 0 0 798s 262s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10700s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10800s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 10900s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11000s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11100s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11200s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11300s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11400s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11500s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11600s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11700s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11800s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 11900s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12000s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12100s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12200s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12300s 1030 1 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12400s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12500s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12600s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12700s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12800s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 12900s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13000s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13100s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13200s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13300s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13400s 1030 0 0 0 0 0 798s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13500s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13600s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13700s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13800s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 13900s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14000s 1030 0 0 0 0 0 799s 261s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14100s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14200s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14300s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14400s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14500s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14600s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14700s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14800s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 14900s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15000s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15100s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15200s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15300s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15400s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15500s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15600s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15700s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15800s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 15900s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16000s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16100s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16200s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16300s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16400s 1030 0 0 0 0 0 799s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16500s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16600s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16700s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16800s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 16900s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17000s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17100s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17200s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17300s 1030 0 0 0 0 0 800s 260s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17400s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17500s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17600s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17700s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17800s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 17900s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18000s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18100s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18200s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18300s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18400s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18500s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18600s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18700s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18800s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 18900s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19000s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19100s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19200s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19300s 1030 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19400s 1029 1 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19500s 1029 0 0 0 0 0 800s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19600s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19700s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19800s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 19900s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20000s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20100s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20200s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20300s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20400s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20500s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20600s 1029 0 0 0 0 0 801s 259s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20700s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20800s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 20900s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21000s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21100s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21200s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21300s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21400s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21500s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21600s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21700s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21800s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 21900s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22000s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22100s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22200s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22300s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22400s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22500s 1029 0 0 0 0 0 801s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22600s 1030 1 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22700s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22800s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 22900s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23000s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23100s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23200s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23300s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23400s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23500s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23600s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23700s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23800s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 23900s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24000s 1030 0 0 0 0 0 802s 258s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24100s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24200s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24300s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24400s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24500s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24600s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24700s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24800s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 24900s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25000s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25100s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25200s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25300s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25400s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25500s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25600s 1030 0 0 0 0 0 802s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25700s 1030 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25800s 1030 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 25900s 1030 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26000s 1029 1 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26100s 1029 1 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26200s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26300s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26400s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26500s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26600s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26700s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26800s 1029 1 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 26900s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27000s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27100s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27200s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27300s 1029 0 0 0 0 0 803s 257s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27400s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27500s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27600s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27700s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27800s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 27900s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28000s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28100s 1029 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28200s 1028 1 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28300s 1028 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28400s 1028 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28500s 1028 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28600s 1028 0 0 0 0 0 803s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28700s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28800s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 28900s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29000s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29100s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29200s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29300s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29400s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29500s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29600s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29700s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29800s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 29900s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30000s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30100s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30200s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30300s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30400s 1028 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30500s 1027 1 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30600s 1027 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30700s 1027 0 0 0 0 0 804s 256s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30800s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 30900s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31000s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31100s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31200s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31300s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31400s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31500s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31600s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31700s 1027 0 0 0 0 0 804s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31800s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 31900s 1027 1 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32000s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32100s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32200s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32300s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32400s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32500s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32600s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32700s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32800s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 32900s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33000s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33100s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33200s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33300s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33400s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33500s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33600s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33700s 1027 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33800s 1026 1 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 33900s 1026 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34000s 1026 0 0 0 0 0 805s 255s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34100s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34200s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34300s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34400s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34500s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34600s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34700s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34800s 1026 0 0 0 0 0 805s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 34900s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35000s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35100s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35200s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35300s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35400s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35500s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35600s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35700s 1026 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35800s 1025 1 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 35900s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36000s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36100s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36200s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36300s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36400s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36500s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36600s 1025 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36700s 1024 1 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36800s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 36900s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37000s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37100s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37200s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37300s 1024 0 0 0 0 0 806s 254s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37400s 1024 0 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37500s 1024 0 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37600s 1024 0 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37700s 1024 0 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37800s 1024 1 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 37900s 1024 0 0 0 0 0 806s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38000s 1024 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38100s 1024 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38200s 1024 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38300s 1023 1 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38400s 1023 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38500s 1023 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38600s 1023 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38700s 1023 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38800s 1023 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 38900s 1022 1 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39000s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39100s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39200s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39300s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39400s 1022 1 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39500s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39600s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39700s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39800s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 39900s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40000s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40100s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40200s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40300s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40400s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40500s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40600s 1022 0 0 0 0 0 807s 253s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40700s 1022 0 0 0 0 0 807s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40800s 1022 0 0 0 0 0 807s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 40900s 1022 0 0 0 0 0 807s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41000s 1021 1 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41100s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41200s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41300s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41400s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41500s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41600s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41700s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41800s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 41900s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42000s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42100s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42200s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42300s 1021 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42400s 1020 1 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42500s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42600s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42700s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42800s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 42900s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43000s 1020 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43100s 1019 1 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43200s 1019 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43300s 1019 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43400s 1019 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43500s 1019 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43600s 1019 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43700s 1018 1 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43800s 1018 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 43900s 1018 0 0 0 0 0 808s 252s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44000s 1018 0 0 0 0 0 808s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44100s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44200s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44300s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44400s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44500s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44600s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44700s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44800s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 44900s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45000s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45100s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45200s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45300s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45400s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45500s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45600s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45700s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45800s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 45900s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46000s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46100s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46200s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46300s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46400s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46500s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46600s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46700s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46800s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 46900s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47000s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47100s 1018 0 0 0 0 0 809s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47200s 1018 0 0 0 0 0 810s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47300s 1018 0 0 0 0 0 810s 251s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47400s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47500s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47600s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47700s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47800s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 47900s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48000s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48100s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48200s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48300s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48400s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48500s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48600s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48700s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48800s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 48900s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49000s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49100s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49200s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49300s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49400s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49500s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49600s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49700s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49800s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 49900s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50000s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50100s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50200s 1018 0 0 0 0 0 810s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50300s 1018 0 0 0 0 0 811s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50400s 1018 0 0 0 0 0 811s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50500s 1018 0 0 0 0 0 811s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50600s 1018 0 0 0 0 0 811s 250s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50700s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50800s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 50900s 1018 1 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51000s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51100s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51200s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51300s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51400s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51500s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51600s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51700s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51800s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 51900s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52000s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52100s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52200s 1018 1 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52300s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52400s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52500s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52600s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52700s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52800s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 52900s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53000s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53100s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53200s 1018 0 0 0 0 0 811s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53300s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53400s 1018 1 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53500s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53600s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53700s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53800s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 53900s 1018 0 0 0 0 0 812s 249s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54000s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54100s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54200s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54300s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54400s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54500s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54600s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54700s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54800s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 54900s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55000s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55100s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55200s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55300s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55400s 1018 1 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55500s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55600s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55700s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55800s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 55900s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56000s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56100s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56200s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56300s 1018 0 0 0 0 0 812s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56400s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56500s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56600s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56700s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56800s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 56900s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57000s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57100s 1018 1 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57200s 1018 0 0 0 0 0 813s 248s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57300s 1018 1 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57400s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57500s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57600s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57700s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57800s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 57900s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58000s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58100s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58200s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58300s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58400s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58500s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58600s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58700s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58800s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 58900s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59000s 1018 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59100s 1017 1 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59200s 1017 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59300s 1017 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59400s 1017 0 0 0 0 0 813s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59500s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59600s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59700s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59800s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 59900s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60000s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60100s 1017 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60200s 1016 1 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60300s 1016 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60400s 1016 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60500s 1016 0 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60600s 1016 1 0 0 0 0 814s 247s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60700s 1016 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60800s 1015 1 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 60900s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61000s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61100s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61200s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61300s 1015 1 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61400s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61500s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61600s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61700s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61800s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 61900s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62000s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62100s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62200s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62300s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62400s 1015 0 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62500s 1015 1 0 0 0 0 814s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62600s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62700s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62800s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 62900s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63000s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63100s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63200s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63300s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63400s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63500s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63600s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63700s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63800s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 63900s 1015 0 0 0 0 0 815s 246s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64000s 1015 1 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64100s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64200s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64300s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64400s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64500s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64600s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64700s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64800s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 64900s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65000s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65100s 1015 1 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65200s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65300s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65400s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65500s 1015 0 0 0 0 0 815s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65600s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65700s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65800s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 65900s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66000s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66100s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66200s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66300s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66400s 1015 1 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66500s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66600s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66700s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66800s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 66900s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67000s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67100s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67200s 1015 0 0 0 0 0 816s 245s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67300s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67400s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67500s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67600s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67700s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67800s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 67900s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68000s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68100s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68200s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68300s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68400s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68500s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68600s 1015 0 0 0 0 0 816s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68700s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68800s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 68900s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69000s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69100s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69200s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69300s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69400s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69500s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69600s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69700s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69800s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 69900s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70000s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70100s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70200s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70300s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70400s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70500s 1015 0 0 0 0 0 817s 244s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70600s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70700s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70800s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 70900s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71000s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71100s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71200s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71300s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71400s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71500s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71600s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71700s 1015 0 0 0 0 0 817s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71800s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 71900s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72000s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72100s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72200s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72300s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72400s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72500s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72600s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72700s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72800s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 72900s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73000s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73100s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73200s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73300s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73400s 1015 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73500s 1014 1 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73600s 1014 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73700s 1014 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73800s 1014 0 0 0 0 0 818s 243s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 73900s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74000s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74100s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74200s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74300s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74400s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74500s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74600s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74700s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74800s 1014 0 0 0 0 0 818s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 74900s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75000s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75100s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75200s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75300s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75400s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75500s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75600s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75700s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75800s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 75900s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76000s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76100s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76200s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76300s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76400s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76500s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76600s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76700s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76800s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 76900s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77000s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77100s 1014 0 0 0 0 0 819s 242s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77200s 1014 0 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77300s 1014 0 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77400s 1014 0 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77500s 1014 0 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77600s 1013 1 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77700s 1013 0 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77800s 1013 1 0 0 0 0 819s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 77900s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78000s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78100s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78200s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78300s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78400s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78500s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78600s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78700s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78800s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 78900s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79000s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79100s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79200s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79300s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79400s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79500s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79600s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79700s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79800s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 79900s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80000s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80100s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80200s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80300s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80400s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80500s 1013 0 0 0 0 0 820s 241s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80600s 1013 0 0 0 0 0 820s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80700s 1013 0 0 0 0 0 820s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80800s 1013 0 0 0 0 0 820s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 80900s 1013 0 0 0 0 0 820s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81000s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81100s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81200s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81300s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81400s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81500s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81600s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81700s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81800s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 81900s 1013 1 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82000s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82100s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82200s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82300s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82400s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82500s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82600s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82700s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82800s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 82900s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83000s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83100s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83200s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83300s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83400s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83500s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83600s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83700s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83800s 1013 0 0 0 0 0 821s 240s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 83900s 1013 0 0 0 0 0 821s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84000s 1013 0 0 0 0 0 821s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84100s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84200s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84300s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84400s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84500s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84600s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84700s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84800s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 84900s 1013 1 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85000s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85100s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85200s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85300s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85400s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85500s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85600s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85700s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85800s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 85900s 1013 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86000s 1012 1 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86100s 1012 1 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86200s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86300s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86400s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86500s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86600s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86700s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86800s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 86900s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87000s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87100s 1012 0 0 0 0 0 822s 239s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87200s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87300s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87400s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87500s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87600s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87700s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87800s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 87900s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88000s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88100s 1012 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88200s 1013 1 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88300s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88400s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88500s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88600s 1013 1 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88700s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88800s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 88900s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89000s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89100s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89200s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89300s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89400s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89500s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89600s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89700s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89800s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 89900s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90000s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90100s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90200s 1013 0 0 0 0 0 823s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90300s 1013 0 0 0 0 0 824s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90400s 1013 0 0 0 0 0 824s 238s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90500s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90600s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90700s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90800s 1013 1 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 90900s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91000s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91100s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91200s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91300s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91400s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91500s 1013 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91600s 1012 1 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91700s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91800s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 91900s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92000s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92100s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92200s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92300s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92400s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92500s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92600s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92700s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92800s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 92900s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93000s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93100s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93200s 1012 0 0 0 0 0 824s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93300s 1012 0 0 0 0 0 825s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93400s 1012 0 0 0 0 0 825s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93500s 1012 0 0 0 0 0 825s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93600s 1012 0 0 0 0 0 825s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93700s 1012 0 0 0 0 0 825s 237s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93800s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 93900s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94000s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94100s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94200s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94300s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94400s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94500s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94600s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94700s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94800s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 94900s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95000s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95100s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95200s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95300s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95400s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95500s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95600s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95700s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95800s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 95900s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96000s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96100s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96200s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96300s 1012 0 0 0 0 0 825s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96400s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96500s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96600s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96700s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96800s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 96900s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97000s 1012 0 0 0 0 0 826s 236s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97100s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97200s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97300s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97400s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97500s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97600s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97700s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97800s 1012 1 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 97900s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98000s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98100s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98200s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98300s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98400s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98500s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98600s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98700s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98800s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 98900s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99000s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99100s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99200s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99300s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99400s 1012 0 0 0 0 0 826s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99500s 1012 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99600s 1012 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99700s 1011 1 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99800s 1011 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 99900s 1011 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1667m 1010 1 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1668m 1010 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1670m 1010 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1672m 1010 0 0 0 0 0 827s 235s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1673m 1010 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1675m 1011 1 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1677m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1678m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1680m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1682m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1683m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1685m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1687m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1688m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1690m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1692m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1693m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1695m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1697m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1698m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1700m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1702m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1703m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1705m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1707m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1708m 1011 0 0 0 0 0 827s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1710m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1712m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1713m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1715m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1717m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1718m 1011 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1720m 1010 1 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1722m 1010 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1723m 1010 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1725m 1010 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1727m 1010 0 0 0 0 0 828s 234s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1728m 1010 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1730m 1009 1 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1732m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1733m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1735m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1737m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1738m 1008 1 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1740m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1742m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1743m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1745m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1747m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1748m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1750m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1752m 1008 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1753m 1009 1 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1755m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1757m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1758m 1009 1 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1760m 1009 0 0 0 0 0 828s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1762m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1763m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1765m 1009 1 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1767m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1768m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1770m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1772m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1773m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1775m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1777m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1778m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1780m 1009 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1782m 1008 1 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1783m 1008 0 0 0 0 0 829s 233s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1785m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1787m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1788m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1790m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1792m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1793m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1795m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1797m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1798m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1800m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1802m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1803m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1805m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1807m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1808m 1008 1 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1810m 1008 0 0 0 0 0 829s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1812m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1813m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1815m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1817m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1818m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1820m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1822m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1823m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1825m 1008 1 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1827m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1828m 1008 1 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1830m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1832m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1833m 1008 1 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1835m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1837m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1838m 1008 0 0 0 0 0 830s 232s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1840m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1842m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1843m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1845m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1847m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1848m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1850m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1852m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1853m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1855m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1857m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1858m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1860m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1862m 1008 0 0 0 0 0 830s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1863m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1865m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1867m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1868m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1870m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1872m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1873m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1875m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1877m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1878m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1880m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1882m 1008 1 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1883m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1885m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1887m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1888m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1890m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1892m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1893m 1008 0 0 0 0 0 831s 231s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1895m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1897m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1898m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1900m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1902m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1903m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1905m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1907m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1908m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1910m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1912m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1913m 1008 0 0 0 0 0 831s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1915m 1008 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1917m 1008 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1918m 1008 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1920m 1008 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1922m 1008 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1923m 1007 1 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1925m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1927m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1928m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1930m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1932m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1933m 1007 2 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1935m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1937m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1938m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1940m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1942m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1943m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1945m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1947m 1007 0 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1948m 1006 1 0 0 0 0 832s 230s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1950m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1952m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1953m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1955m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1957m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1958m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1960m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1962m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1963m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1965m 1006 0 0 0 0 0 832s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1967m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1968m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1970m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1972m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1973m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1975m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1977m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1978m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1980m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1982m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1983m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1985m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1987m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1988m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1990m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1992m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1993m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1995m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1997m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 1998m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2000m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2002m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2003m 1006 0 0 0 0 0 833s 229s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2005m 1006 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2007m 1006 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2008m 1006 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2010m 1006 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2012m 1006 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2013m 1005 1 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2015m 1005 1 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2017m 1005 0 0 0 0 0 833s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2018m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2020m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2022m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2023m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2025m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2027m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2028m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2030m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2032m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2033m 1005 1 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2035m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2037m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2038m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2040m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2042m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2043m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2045m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2047m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2048m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2050m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2052m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2053m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2055m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2057m 1005 1 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2058m 1005 0 0 0 0 0 834s 228s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2060m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2062m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2063m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2065m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2067m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2068m 1005 0 0 0 0 0 834s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2070m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2072m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2073m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2075m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2077m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2078m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2080m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2082m 1005 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2083m 1006 1 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2085m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2087m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2088m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2090m 1006 1 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2092m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2093m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2095m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2097m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2098m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2100m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2102m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2103m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2105m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2107m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2108m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2110m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2112m 1006 1 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2113m 1006 0 0 0 0 0 835s 227s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2115m 1006 0 0 0 0 0 835s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2117m 1006 0 0 0 0 0 835s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2118m 1006 0 0 0 0 0 835s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2120m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2122m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2123m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2125m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2127m 1006 1 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2128m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2130m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2132m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2133m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2135m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2137m 1006 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2138m 1005 1 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2140m 1005 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2142m 1005 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2143m 1005 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2145m 1005 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2147m 1004 1 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2148m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2150m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2152m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2153m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2155m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2157m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2158m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2160m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2162m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2163m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2165m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2167m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2168m 1004 0 0 0 0 0 836s 226s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2170m 1004 0 0 0 0 0 836s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2172m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2173m 1003 1 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2175m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2177m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2178m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2180m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2182m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2183m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2185m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2187m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2188m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2190m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2192m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2193m 1003 1 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2195m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2197m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2198m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2200m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2202m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2203m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2205m 1003 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2207m 1004 1 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2208m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2210m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2212m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2213m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2215m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2217m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2218m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2220m 1004 0 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2222m 1004 1 0 0 0 0 837s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2223m 1003 1 0 0 0 0 838s 225s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2225m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2227m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2228m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2230m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2232m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2233m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2235m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2237m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2238m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2240m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2242m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2243m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2245m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2247m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2248m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2250m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2252m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2253m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2255m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2257m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2258m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2260m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2262m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2263m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2265m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2267m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2268m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2270m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2272m 1003 0 0 0 0 0 838s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2273m 1003 0 0 0 0 0 839s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2275m 1003 0 0 0 0 0 839s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2277m 1003 0 0 0 0 0 839s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2278m 1003 0 0 0 0 0 839s 224s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2280m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2282m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2283m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2285m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2287m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2288m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2290m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2292m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2293m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2295m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2297m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2298m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2300m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2302m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2303m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2305m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2307m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2308m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2310m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2312m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2313m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2315m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2317m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2318m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2320m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2322m 1003 0 0 0 0 0 839s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2323m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2325m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2327m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2328m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2330m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2332m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2333m 1003 0 0 0 0 0 840s 223s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2335m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2337m 1003 1 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2338m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2340m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2342m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2343m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2345m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2347m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2348m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2350m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2352m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2353m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2355m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2357m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2358m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2360m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2362m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2363m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2365m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2367m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2368m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2370m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2372m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2373m 1003 0 0 0 0 0 840s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2375m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2377m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2378m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2380m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2382m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2383m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2385m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2387m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2388m 1003 0 0 0 0 0 841s 222s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2390m 1003 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2392m 1002 1 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2393m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2395m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2397m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2398m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2400m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2402m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2403m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2405m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2407m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2408m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2410m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2412m 1002 1 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2413m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2415m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2417m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2418m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2420m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2422m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2423m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2425m 1002 0 0 0 0 0 841s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2427m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2428m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2430m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2432m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2433m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2435m 1002 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2437m 1001 1 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2438m 1001 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2440m 1001 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2442m 1001 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2443m 1001 0 0 0 0 0 842s 221s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2445m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2447m 1001 1 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2448m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2450m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2452m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2453m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2455m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2457m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2458m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2460m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2462m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2463m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2465m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2467m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2468m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2470m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2472m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2473m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2475m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2477m 1001 0 0 0 0 0 842s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2478m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2480m 1001 1 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2482m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2483m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2485m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2487m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2488m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2490m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2492m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2493m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2495m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2497m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2498m 1001 0 0 0 0 0 843s 220s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2500m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2502m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2503m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2505m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2507m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2508m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2510m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2512m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2513m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2515m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2517m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2518m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2520m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2522m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2523m 1001 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2525m 1000 1 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2527m 1000 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2528m 1000 0 0 0 0 0 843s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2530m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2532m 1000 1 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2533m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2535m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2537m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2538m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2540m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2542m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2543m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2545m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2547m 1000 1 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2548m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2550m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2552m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2553m 1000 0 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2555m 1000 1 0 0 0 0 844s 219s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2557m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2558m 1000 1 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2560m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2562m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2563m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2565m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2567m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2568m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2570m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2572m 1000 0 0 0 0 0 844s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2573m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2575m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2577m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2578m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2580m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2582m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2583m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2585m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2587m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2588m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2590m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2592m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2593m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2595m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2597m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2598m 1000 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2600m 999 1 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2602m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2603m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2605m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2607m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2608m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2610m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2612m 999 0 0 0 0 0 845s 218s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2613m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2615m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2617m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2618m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2620m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2622m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2623m 999 0 0 0 0 0 845s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2625m 999 1 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2627m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2628m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2630m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2632m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2633m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2635m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2637m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2638m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2640m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2642m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2643m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2645m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2647m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2648m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2650m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2652m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2653m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2655m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2657m 999 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2658m 998 2 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2660m 998 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2662m 998 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2663m 998 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2665m 998 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2667m 998 0 0 0 0 0 846s 217s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2668m 998 0 0 0 0 0 846s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2670m 998 0 0 0 0 0 846s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2672m 998 0 0 0 0 0 846s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2673m 998 0 0 0 0 0 846s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2675m 998 0 0 0 0 0 846s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2677m 998 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2678m 998 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2680m 998 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2682m 998 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2683m 997 1 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2685m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2687m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2688m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2690m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2692m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2693m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2695m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2697m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2698m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2700m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2702m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2703m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2705m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2707m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2708m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2710m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2712m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2713m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2715m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2717m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2718m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2720m 997 0 0 0 0 0 847s 216s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2722m 997 0 0 0 0 0 847s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2723m 997 0 0 0 0 0 847s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2725m 997 0 0 0 0 0 847s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2727m 997 0 0 0 0 0 847s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2728m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2730m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2732m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2733m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2735m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2737m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2738m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2740m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2742m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2743m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2745m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2747m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2748m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2750m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2752m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2753m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2755m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2757m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2758m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2760m 997 1 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2762m 997 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2763m 996 1 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2765m 996 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2767m 996 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2768m 996 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2770m 996 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2772m 996 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2773m 995 1 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2775m 995 0 0 0 0 0 848s 215s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2777m 995 0 0 0 0 0 848s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2778m 995 0 0 0 0 0 848s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2780m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2782m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2783m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2785m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2787m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2788m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2790m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2792m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2793m 995 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2795m 994 1 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2797m 994 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2798m 994 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2800m 993 1 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2802m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2803m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2805m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2807m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2808m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2810m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2812m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2813m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2815m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2817m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2818m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2820m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2822m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2823m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2825m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2827m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2828m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2830m 993 0 0 0 0 0 849s 214s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2832m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2833m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2835m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2837m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2838m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2840m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2842m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2843m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2845m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2847m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2848m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2850m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2852m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2853m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2855m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2857m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2858m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2860m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2862m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2863m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2865m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2867m 993 1 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2868m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2870m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2872m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2873m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2875m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2877m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2878m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 16 2880m 993 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 0s 1015 0 0 0 0 0 850s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 100s 1015 0 0 0 0 0 851s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 200s 1015 0 0 0 0 0 851s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 300s 1015 0 0 0 0 0 851s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 400s 1015 0 0 0 0 0 851s 213s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 500s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 600s 1016 1 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 700s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 800s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 900s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1000s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1100s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1200s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1300s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1400s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1500s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1600s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1700s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1800s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1900s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2000s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2100s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2200s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2300s 1016 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2400s 1015 2 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2500s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2600s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2700s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2800s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2900s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3000s 1015 0 0 0 0 0 851s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3100s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3200s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3300s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3400s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3500s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3600s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3700s 1015 0 0 0 0 0 852s 212s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3800s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 3900s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4000s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4100s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4200s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4300s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4400s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4500s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4600s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4700s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4800s 1015 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 4900s 1014 1 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5000s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5100s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5200s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5300s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5400s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5500s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5600s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5700s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5800s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 5900s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6000s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6100s 1014 0 0 0 0 0 852s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6200s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6300s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6400s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6500s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6600s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6700s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6800s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 6900s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7000s 1014 0 0 0 0 0 853s 211s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7100s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7200s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7300s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7400s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7500s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7600s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7700s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7800s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 7900s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8000s 1014 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8100s 1015 1 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8200s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8300s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8400s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8500s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8600s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8700s 1015 0 0 0 0 0 853s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8800s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 8900s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9000s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9100s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9200s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9300s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9400s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9500s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9600s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9700s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9800s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 9900s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10000s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10100s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10200s 1015 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10300s 1014 1 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10400s 1014 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10500s 1014 0 0 0 0 0 854s 210s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10600s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10700s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10800s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 10900s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11000s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11100s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11200s 1014 0 0 0 0 0 854s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11300s 1014 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11400s 1014 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11500s 1013 1 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11600s 1012 1 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11700s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11800s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 11900s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12000s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12100s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12200s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12300s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12400s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12500s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12600s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12700s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12800s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 12900s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13000s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13100s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13200s 1012 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13300s 1011 1 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13400s 1011 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13500s 1011 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13600s 1011 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13700s 1011 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13800s 1011 0 0 0 0 0 855s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 13900s 1011 0 0 0 0 0 856s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14000s 1011 0 0 0 0 0 856s 209s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14100s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14200s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14300s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14400s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14500s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14600s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14700s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14800s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 14900s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15000s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15100s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15200s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15300s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15400s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15500s 1011 1 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15600s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15700s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15800s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 15900s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16000s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16100s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16200s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16300s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16400s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16500s 1011 0 0 0 0 0 856s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16600s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16700s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16800s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 16900s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17000s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17100s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17200s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17300s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17400s 1011 0 0 0 0 0 857s 208s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17500s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17600s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17700s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17800s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 17900s 1011 1 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18000s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18100s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18200s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18300s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18400s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18500s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18600s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18700s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18800s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 18900s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19000s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19100s 1011 0 0 0 0 0 857s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19200s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19300s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19400s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19500s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19600s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19700s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19800s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 19900s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20000s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20100s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20200s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20300s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20400s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20500s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20600s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20700s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20800s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 20900s 1011 0 0 0 0 0 858s 207s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21000s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21100s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21200s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21300s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21400s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21500s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21600s 1011 0 0 0 0 0 858s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21700s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21800s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 21900s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22000s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22100s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22200s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22300s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22400s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22500s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22600s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22700s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22800s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 22900s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23000s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23100s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23200s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23300s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23400s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23500s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23600s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23700s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23800s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 23900s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24000s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24100s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24200s 1011 0 0 0 0 0 859s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24300s 1011 0 0 0 0 0 860s 206s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24400s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24500s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24600s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24700s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24800s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 24900s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25000s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25100s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25200s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25300s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25400s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25500s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25600s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25700s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25800s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 25900s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26000s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26100s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26200s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26300s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26400s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26500s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26600s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26700s 1011 0 0 0 0 0 860s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26800s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 26900s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27000s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27100s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27200s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27300s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27400s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27500s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27600s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27700s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27800s 1011 0 0 0 0 0 861s 205s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 27900s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28000s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28100s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28200s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28300s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28400s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28500s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28600s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28700s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28800s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 28900s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29000s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29100s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29200s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29300s 1011 0 0 0 0 0 861s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29400s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29500s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29600s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29700s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29800s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 29900s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30000s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30100s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30200s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30300s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30400s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30500s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30600s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30700s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30800s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 30900s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31000s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31100s 1011 1 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31200s 1011 0 0 0 0 0 862s 204s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31300s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31400s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31500s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31600s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31700s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31800s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 31900s 1011 0 0 0 0 0 862s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32000s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32100s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32200s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32300s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32400s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32500s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32600s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32700s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32800s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 32900s 1011 1 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33000s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33100s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33200s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33300s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33400s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33500s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33600s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33700s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33800s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 33900s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34000s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34100s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34200s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34300s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34400s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34500s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34600s 1011 0 0 0 0 0 863s 203s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34700s 1011 0 0 0 0 0 863s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34800s 1011 0 0 0 0 0 863s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 34900s 1011 0 0 0 0 0 863s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35000s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35100s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35200s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35300s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35400s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35500s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35600s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35700s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35800s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 35900s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36000s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36100s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36200s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36300s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36400s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36500s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36600s 1011 1 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36700s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36800s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 36900s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37000s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37100s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37200s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37300s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37400s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37500s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37600s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37700s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37800s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 37900s 1011 0 0 0 0 0 864s 202s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38000s 1011 0 0 0 0 0 864s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38100s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38200s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38300s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38400s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38500s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38600s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38700s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38800s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 38900s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39000s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39100s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39200s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39300s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39400s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39500s 1011 1 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39600s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39700s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39800s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 39900s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40000s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40100s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40200s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40300s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40400s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40500s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40600s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40700s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40800s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 40900s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41000s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41100s 1011 0 0 0 0 0 865s 201s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41200s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41300s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41400s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41500s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41600s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41700s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41800s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 41900s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42000s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42100s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42200s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42300s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42400s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42500s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42600s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42700s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42800s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 42900s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43000s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43100s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43200s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43300s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43400s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43500s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43600s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43700s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43800s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 43900s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44000s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44100s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44200s 1011 0 0 0 0 0 866s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44300s 1011 0 0 0 0 0 867s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44400s 1011 0 0 0 0 0 867s 200s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44500s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44600s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44700s 1011 2 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44800s 1011 1 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 44900s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45000s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45100s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45200s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45300s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45400s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45500s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45600s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45700s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45800s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 45900s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46000s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46100s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46200s 1011 1 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46300s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46400s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46500s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46600s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46700s 1011 0 0 0 0 0 867s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46800s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 46900s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47000s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47100s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47200s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47300s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47400s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47500s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47600s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47700s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47800s 1011 0 0 0 0 0 868s 199s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 47900s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48000s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48100s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48200s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48300s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48400s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48500s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48600s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48700s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48800s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 48900s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49000s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49100s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49200s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49300s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49400s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49500s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49600s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49700s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49800s 1011 0 0 0 0 0 868s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 49900s 1012 1 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50000s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50100s 1012 1 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50200s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50300s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50400s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50500s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50600s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50700s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50800s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 50900s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51000s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51100s 1012 0 0 0 0 0 869s 198s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51200s 1012 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51300s 1012 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51400s 1011 1 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51500s 1011 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51600s 1011 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51700s 1010 1 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51800s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 51900s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52000s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52100s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52200s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52300s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52400s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52500s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52600s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52700s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52800s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 52900s 1010 0 0 0 0 0 869s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53000s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53100s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53200s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53300s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53400s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53500s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53600s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53700s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53800s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 53900s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54000s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54100s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54200s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54300s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54400s 1010 0 0 0 0 0 870s 197s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54500s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54600s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54700s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54800s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 54900s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55000s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55100s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55200s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55300s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55400s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55500s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55600s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55700s 1010 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55800s 1009 2 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 55900s 1009 0 0 0 0 0 870s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56000s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56100s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56200s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56300s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56400s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56500s 1009 1 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56600s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56700s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56800s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 56900s 1009 1 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57000s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57100s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57200s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57300s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57400s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57500s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57600s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57700s 1009 0 0 0 0 0 871s 196s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57800s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 57900s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58000s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58100s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58200s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58300s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58400s 1009 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58500s 1010 1 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58600s 1010 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58700s 1010 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58800s 1010 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 58900s 1010 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59000s 1010 0 0 0 0 0 871s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59100s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59200s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59300s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59400s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59500s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59600s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59700s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59800s 1010 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 59900s 1009 1 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60000s 1009 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60100s 1009 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60200s 1009 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60300s 1009 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60400s 1009 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60500s 1008 1 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60600s 1008 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60700s 1008 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60800s 1008 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 60900s 1008 0 0 0 0 0 872s 195s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61000s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61100s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61200s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61300s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61400s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61500s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61600s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61700s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61800s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 61900s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62000s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62100s 1008 0 0 0 0 0 872s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62200s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62300s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62400s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62500s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62600s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62700s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62800s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 62900s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63000s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63100s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63200s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63300s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63400s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63500s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63600s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63700s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63800s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 63900s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64000s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64100s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64200s 1008 0 0 0 0 0 873s 194s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64300s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64400s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64500s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64600s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64700s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64800s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 64900s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65000s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65100s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65200s 1008 0 0 0 0 0 873s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65300s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65400s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65500s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65600s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65700s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65800s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 65900s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66000s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66100s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66200s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66300s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66400s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66500s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66600s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66700s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66800s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 66900s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67000s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67100s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67200s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67300s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67400s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67500s 1008 0 0 0 0 0 874s 193s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67600s 1008 0 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67700s 1008 0 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67800s 1008 0 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 67900s 1008 0 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68000s 1008 0 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68100s 1007 1 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68200s 1006 1 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68300s 1005 1 0 0 0 0 874s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68400s 1005 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68500s 1005 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68600s 1004 1 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68700s 1004 1 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68800s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 68900s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69000s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69100s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69200s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69300s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69400s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69500s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69600s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69700s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69800s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 69900s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70000s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70100s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70200s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70300s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70400s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70500s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70600s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70700s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70800s 1004 0 0 0 0 0 875s 192s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 70900s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71000s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71100s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71200s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71300s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71400s 1004 0 0 0 0 0 875s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71500s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71600s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71700s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71800s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 71900s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72000s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72100s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72200s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72300s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72400s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72500s 1004 1 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72600s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72700s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72800s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 72900s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73000s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73100s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73200s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73300s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73400s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73500s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73600s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73700s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73800s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 73900s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74000s 1004 0 0 0 0 0 876s 191s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74100s 1004 0 0 0 0 0 876s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74200s 1004 0 0 0 0 0 876s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74300s 1004 0 0 0 0 0 876s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74400s 1004 0 0 0 0 0 876s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74500s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74600s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74700s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74800s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 74900s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75000s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75100s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75200s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75300s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75400s 1004 1 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75500s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75600s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75700s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75800s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 75900s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76000s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76100s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76200s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76300s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76400s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76500s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76600s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76700s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76800s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 76900s 1004 0 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77000s 1003 2 0 0 0 0 877s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77100s 1003 1 0 0 0 0 878s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77200s 1003 0 0 0 0 0 878s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77300s 1003 0 0 0 0 0 878s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77400s 1003 0 0 0 0 0 878s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77500s 1003 1 0 0 0 0 878s 190s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77600s 1003 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77700s 1003 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77800s 1003 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 77900s 1002 1 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78000s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78100s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78200s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78300s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78400s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78500s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78600s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78700s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78800s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 78900s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79000s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79100s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79200s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79300s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79400s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79500s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79600s 1002 0 0 0 0 0 878s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79700s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79800s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 79900s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80000s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80100s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80200s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80300s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80400s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80500s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80600s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80700s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80800s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 80900s 1002 0 0 0 0 0 879s 189s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81000s 1002 1 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81100s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81200s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81300s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81400s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81500s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81600s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81700s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81800s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 81900s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82000s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82100s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82200s 1002 0 0 0 0 0 879s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82300s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82400s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82500s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82600s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82700s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82800s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 82900s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83000s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83100s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83200s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83300s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83400s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83500s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83600s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83700s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83800s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 83900s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84000s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84100s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84200s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84300s 1002 0 0 0 0 0 880s 188s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84400s 1002 0 0 0 0 0 880s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84500s 1002 0 0 0 0 0 880s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84600s 1002 0 0 0 0 0 880s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84700s 1002 0 0 0 0 0 880s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84800s 1002 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 84900s 1002 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85000s 1001 2 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85100s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85200s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85300s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85400s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85500s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85600s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85700s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85800s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 85900s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86000s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86100s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86200s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86300s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86400s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86500s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86600s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86700s 1001 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86800s 1000 1 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 86900s 999 1 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87000s 999 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87100s 999 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87200s 999 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87300s 999 0 0 0 0 0 881s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87400s 999 1 0 0 0 0 882s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87500s 999 0 0 0 0 0 882s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87600s 999 0 0 0 0 0 882s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87700s 999 0 0 0 0 0 882s 187s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87800s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 87900s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88000s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88100s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88200s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88300s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88400s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88500s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88600s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88700s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88800s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 88900s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89000s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89100s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89200s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89300s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89400s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89500s 999 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89600s 998 1 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89700s 998 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89800s 998 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 89900s 998 0 0 0 0 0 882s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90000s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90100s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90200s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90300s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90400s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90500s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90600s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90700s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90800s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 90900s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91000s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91100s 998 0 0 0 0 0 883s 186s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91200s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91300s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91400s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91500s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91600s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91700s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91800s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 91900s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92000s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92100s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92200s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92300s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92400s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92500s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92600s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92700s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92800s 998 0 0 0 0 0 883s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 92900s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93000s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93100s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93200s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93300s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93400s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93500s 998 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93600s 997 1 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93700s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93800s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 93900s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94000s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94100s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94200s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94300s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94400s 997 0 0 0 0 0 884s 185s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94500s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94600s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94700s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94800s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 94900s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95000s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95100s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95200s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95300s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95400s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95500s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95600s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95700s 997 0 0 0 0 0 884s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95800s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 95900s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96000s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96100s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96200s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96300s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96400s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96500s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96600s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96700s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96800s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 96900s 997 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97000s 996 1 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97100s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97200s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97300s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97400s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97500s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97600s 996 1 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97700s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97800s 996 0 0 0 0 0 885s 184s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 97900s 996 0 0 0 0 0 885s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98000s 996 0 0 0 0 0 885s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98100s 996 0 0 0 0 0 885s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98200s 996 0 0 0 0 0 885s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98300s 996 0 0 0 0 0 885s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98400s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98500s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98600s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98700s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98800s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 98900s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99000s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99100s 996 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99200s 995 1 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99300s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99400s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99500s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99600s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99700s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99800s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 99900s 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1667m 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1668m 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1670m 995 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1672m 994 1 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1673m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1675m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1677m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1678m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1680m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1682m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1683m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1685m 994 0 0 0 0 0 886s 183s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1687m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1688m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1690m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1692m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1693m 994 1 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1695m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1697m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1698m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1700m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1702m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1703m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1705m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1707m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1708m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1710m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1712m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1713m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1715m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1717m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1718m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1720m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1722m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1723m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1725m 994 1 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1727m 994 0 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1728m 994 1 0 0 0 0 887s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1730m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1732m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1733m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1735m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1737m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1738m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1740m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1742m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1743m 994 0 0 0 0 0 888s 182s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1745m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1747m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1748m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1750m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1752m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1753m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1755m 994 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1757m 993 1 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1758m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1760m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1762m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1763m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1765m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1767m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1768m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1770m 993 0 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1772m 993 1 0 0 0 0 888s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1773m 993 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1775m 992 1 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1777m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1778m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1780m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1782m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1783m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1785m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1787m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1788m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1790m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1792m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1793m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1795m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1797m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1798m 992 0 0 0 0 0 889s 181s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1800m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1802m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1803m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1805m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1807m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1808m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1810m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1812m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1813m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1815m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1817m 992 0 0 0 0 0 889s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1818m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1820m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1822m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1823m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1825m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1827m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1828m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1830m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1832m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1833m 992 1 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1835m 992 1 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1837m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1838m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1840m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1842m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1843m 992 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1845m 991 1 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1847m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1848m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1850m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1852m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1853m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1855m 991 0 0 0 0 0 890s 180s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1857m 991 0 0 0 0 0 890s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1858m 991 0 0 0 0 0 890s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1860m 991 0 0 0 0 0 890s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1862m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1863m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1865m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1867m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1868m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1870m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1872m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1873m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1875m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1877m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1878m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1880m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1882m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1883m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1885m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1887m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1888m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1890m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1892m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1893m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1895m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1897m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1898m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1900m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1902m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1903m 991 0 0 0 0 0 891s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1905m 991 0 0 0 0 0 892s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1907m 991 0 0 0 0 0 892s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1908m 991 0 0 0 0 0 892s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1910m 991 0 0 0 0 0 892s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1912m 991 0 0 0 0 0 892s 179s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1913m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1915m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1917m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1918m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1920m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1922m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1923m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1925m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1927m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1928m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1930m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1932m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1933m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1935m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1937m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1938m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1940m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1942m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1943m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1945m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1947m 991 0 0 0 0 0 892s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1948m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1950m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1952m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1953m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1955m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1957m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1958m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1960m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1962m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1963m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1965m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1967m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1968m 991 0 0 0 0 0 893s 178s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1970m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1972m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1973m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1975m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1977m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1978m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1980m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1982m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1983m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1985m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1987m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1988m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1990m 991 0 0 0 0 0 893s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1992m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1993m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1995m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1997m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 1998m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2000m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2002m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2003m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2005m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2007m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2008m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2010m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2012m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2013m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2015m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2017m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2018m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2020m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2022m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2023m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2025m 991 0 0 0 0 0 894s 177s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2027m 991 0 0 0 0 0 894s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2028m 991 0 0 0 0 0 894s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2030m 991 0 0 0 0 0 894s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2032m 991 0 0 0 0 0 894s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2033m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2035m 991 1 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2037m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2038m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2040m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2042m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2043m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2045m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2047m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2048m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2050m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2052m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2053m 991 1 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2055m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2057m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2058m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2060m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2062m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2063m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2065m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2067m 991 1 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2068m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2070m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2072m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2073m 991 0 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2075m 990 1 0 0 0 0 895s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2077m 990 0 0 0 0 0 896s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2078m 990 0 0 0 0 0 896s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2080m 990 0 0 0 0 0 896s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2082m 990 0 0 0 0 0 896s 176s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2083m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2085m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2087m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2088m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2090m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2092m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2093m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2095m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2097m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2098m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2100m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2102m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2103m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2105m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2107m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2108m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2110m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2112m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2113m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2115m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2117m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2118m 990 0 0 0 0 0 896s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2120m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2122m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2123m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2125m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2127m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2128m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2130m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2132m 990 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2133m 989 1 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2135m 989 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2137m 989 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2138m 989 0 0 0 0 0 897s 175s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2140m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2142m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2143m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2145m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2147m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2148m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2150m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2152m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2153m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2155m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2157m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2158m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2160m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2162m 989 0 0 0 0 0 897s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2163m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2165m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2167m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2168m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2170m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2172m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2173m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2175m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2177m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2178m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2180m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2182m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2183m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2185m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2187m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2188m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2190m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2192m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2193m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2195m 989 0 0 0 0 0 898s 174s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2197m 989 0 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2198m 989 0 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2200m 989 0 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2202m 989 0 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2203m 989 0 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2205m 988 1 0 0 0 0 898s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2207m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2208m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2210m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2212m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2213m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2215m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2217m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2218m 988 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2220m 988 1 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2222m 987 1 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2223m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2225m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2227m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2228m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2230m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2232m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2233m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2235m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2237m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2238m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2240m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2242m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2243m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2245m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2247m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2248m 987 0 0 0 0 0 899s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2250m 987 0 0 0 0 0 900s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2252m 987 0 0 0 0 0 900s 173s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2253m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2255m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2257m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2258m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2260m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2262m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2263m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2265m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2267m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2268m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2270m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2272m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2273m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2275m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2277m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2278m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2280m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2282m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2283m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2285m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2287m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2288m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2290m 987 0 0 0 0 0 900s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2292m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2293m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2295m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2297m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2298m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2300m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2302m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2303m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2305m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2307m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2308m 987 0 0 0 0 0 901s 172s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2310m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2312m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2313m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2315m 987 1 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2317m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2318m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2320m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2322m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2323m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2325m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2327m 987 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2328m 986 1 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2330m 986 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2332m 986 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2333m 986 0 0 0 0 0 901s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2335m 986 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2337m 986 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2338m 986 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2340m 986 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2342m 985 1 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2343m 985 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2345m 985 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2347m 985 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2348m 985 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2350m 984 1 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2352m 984 1 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2353m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2355m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2357m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2358m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2360m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2362m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2363m 984 0 0 0 0 0 902s 171s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2365m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2367m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2368m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2370m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2372m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2373m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2375m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2377m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2378m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2380m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2382m 984 0 0 0 0 0 902s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2383m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2385m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2387m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2388m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2390m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2392m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2393m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2395m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2397m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2398m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2400m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2402m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2403m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2405m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2407m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2408m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2410m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2412m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2413m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2415m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2417m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2418m 984 0 0 0 0 0 903s 170s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2420m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2422m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2423m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2425m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2427m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2428m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2430m 984 0 0 0 0 0 903s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2432m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2433m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2435m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2437m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2438m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2440m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2442m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2443m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2445m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2447m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2448m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2450m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2452m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2453m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2455m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2457m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2458m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2460m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2462m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2463m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2465m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2467m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2468m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2470m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2472m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2473m 984 0 0 0 0 0 904s 169s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2475m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2477m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2478m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2480m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2482m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2483m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2485m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2487m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2488m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2490m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2492m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2493m 984 1 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2495m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2497m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2498m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2500m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2502m 984 1 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2503m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2505m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2507m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2508m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2510m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2512m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2513m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2515m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2517m 984 0 0 0 0 0 905s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2518m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2520m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2522m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2523m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2525m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2527m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2528m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2530m 984 0 0 0 0 0 906s 168s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2532m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2533m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2535m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2537m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2538m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2540m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2542m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2543m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2545m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2547m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2548m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2550m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2552m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2553m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2555m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2557m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2558m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2560m 984 0 0 0 0 0 906s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2562m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2563m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2565m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2567m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2568m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2570m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2572m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2573m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2575m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2577m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2578m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2580m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2582m 984 1 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2583m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2585m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2587m 984 0 0 0 0 0 907s 167s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2588m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2590m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2592m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2593m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2595m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2597m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2598m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2600m 984 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2602m 985 2 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2603m 985 0 0 0 0 0 907s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2605m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2607m 985 1 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2608m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2610m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2612m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2613m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2615m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2617m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2618m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2620m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2622m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2623m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2625m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2627m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2628m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2630m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2632m 985 1 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2633m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2635m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2637m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2638m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2640m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2642m 985 0 0 0 0 0 908s 166s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2643m 985 0 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2645m 985 0 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2647m 985 0 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2648m 984 1 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2650m 984 0 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2652m 984 0 0 0 0 0 908s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2653m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2655m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2657m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2658m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2660m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2662m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2663m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2665m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2667m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2668m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2670m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2672m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2673m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2675m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2677m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2678m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2680m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2682m 984 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2683m 985 2 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2685m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2687m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2688m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2690m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2692m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2693m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2695m 985 0 0 0 0 0 909s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2697m 985 0 0 0 0 0 910s 165s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2698m 985 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2700m 985 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2702m 984 1 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2703m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2705m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2707m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2708m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2710m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2712m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2713m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2715m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2717m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2718m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2720m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2722m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2723m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2725m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2727m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2728m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2730m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2732m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2733m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2735m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2737m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2738m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2740m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2742m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2743m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2745m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2747m 984 0 0 0 0 0 910s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2748m 984 0 0 0 0 0 911s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2750m 984 0 0 0 0 0 911s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2752m 984 0 0 0 0 0 911s 164s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2753m 984 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2755m 984 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2757m 984 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2758m 984 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2760m 984 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2762m 983 1 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2763m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2765m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2767m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2768m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2770m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2772m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2773m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2775m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2777m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2778m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2780m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2782m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2783m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2785m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2787m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2788m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2790m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2792m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2793m 983 0 0 0 0 0 911s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2795m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2797m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2798m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2800m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2802m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2803m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2805m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2807m 983 0 0 0 0 0 912s 163s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2808m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2810m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2812m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2813m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2815m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2817m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2818m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2820m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2822m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2823m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2825m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2827m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2828m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2830m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2832m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2833m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2835m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2837m 983 0 0 0 0 0 912s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2838m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2840m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2842m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2843m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2845m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2847m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2848m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2850m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2852m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2853m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2855m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2857m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2858m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2860m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2862m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2863m 983 0 0 0 0 0 913s 162s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2865m 982 1 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2867m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2868m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2870m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2872m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2873m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2875m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2877m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2878m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 17 2880m 982 0 0 0 0 0 913s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 0s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 100s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 200s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 300s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 400s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 500s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 600s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 700s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 800s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 900s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1000s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1100s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1200s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1300s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1400s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1500s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1600s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1700s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1800s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1900s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2000s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2100s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2200s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2300s 1000 0 0 0 0 0 914s 161s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2400s 1000 0 0 0 0 0 914s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2500s 1000 0 0 0 0 0 914s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2600s 1000 0 0 0 0 0 914s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2700s 1000 0 0 0 0 0 914s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2800s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2900s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3000s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3100s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3200s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3300s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3400s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3500s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3600s 1000 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3700s 999 1 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3800s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 3900s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4000s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4100s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4200s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4300s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4400s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4500s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4600s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4700s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4800s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 4900s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5000s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5100s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5200s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5300s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5400s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5500s 999 0 0 0 0 0 915s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5600s 999 0 0 0 0 0 916s 160s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5700s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5800s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 5900s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6000s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6100s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6200s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6300s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6400s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6500s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6600s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6700s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6800s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 6900s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7000s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7100s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7200s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7300s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7400s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7500s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7600s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7700s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7800s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 7900s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8000s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8100s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8200s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8300s 999 0 0 0 0 0 916s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8400s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8500s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8600s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8700s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8800s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 8900s 999 0 0 0 0 0 917s 159s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9000s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9100s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9200s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9300s 999 1 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9400s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9500s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9600s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9700s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9800s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 9900s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10000s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10100s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10200s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10300s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10400s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10500s 999 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10600s 998 1 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10700s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10800s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 10900s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11000s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11100s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11200s 998 0 0 0 0 0 917s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11300s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11400s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11500s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11600s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11700s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11800s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 11900s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12000s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12100s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12200s 998 0 0 0 0 0 918s 158s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12300s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12400s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12500s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12600s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12700s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12800s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 12900s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13000s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13100s 998 1 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13200s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13300s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13400s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13500s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13600s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13700s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13800s 998 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 13900s 997 1 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14000s 997 0 0 0 0 0 918s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14100s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14200s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14300s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14400s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14500s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14600s 997 1 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14700s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14800s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 14900s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15000s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15100s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15200s 997 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15300s 998 1 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15400s 998 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15500s 998 0 0 0 0 0 919s 157s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15600s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15700s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15800s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 15900s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16000s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16100s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16200s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16300s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16400s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16500s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16600s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16700s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16800s 998 0 0 0 0 0 919s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 16900s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17000s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17100s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17200s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17300s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17400s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17500s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17600s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17700s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17800s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 17900s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18000s 998 1 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18100s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18200s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18300s 998 1 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18400s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18500s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18600s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18700s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18800s 998 0 0 0 0 0 920s 156s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 18900s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19000s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19100s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19200s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19300s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19400s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19500s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19600s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19700s 998 1 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19800s 998 0 0 0 0 0 920s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 19900s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20000s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20100s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20200s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20300s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20400s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20500s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20600s 997 1 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20700s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20800s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 20900s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21000s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21100s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21200s 997 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21300s 998 1 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21400s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21500s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21600s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21700s 998 1 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21800s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 21900s 998 0 0 0 0 0 921s 155s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22000s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22100s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22200s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22300s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22400s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22500s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22600s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22700s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22800s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 22900s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23000s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23100s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23200s 998 0 0 0 0 0 921s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23300s 998 1 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23400s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23500s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23600s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23700s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23800s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 23900s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24000s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24100s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24200s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24300s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24400s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24500s 998 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24600s 997 1 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24700s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24800s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 24900s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25000s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25100s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25200s 997 0 0 0 0 0 922s 154s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25300s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25400s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25500s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25600s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25700s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25800s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 25900s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26000s 997 0 0 0 0 0 922s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26100s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26200s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26300s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26400s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26500s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26600s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26700s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26800s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 26900s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27000s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27100s 997 1 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27200s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27300s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27400s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27500s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27600s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27700s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27800s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 27900s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28000s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28100s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28200s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28300s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28400s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28500s 997 0 0 0 0 0 923s 153s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28600s 997 0 0 0 0 0 923s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28700s 997 0 0 0 0 0 923s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28800s 997 0 0 0 0 0 923s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 28900s 997 0 0 0 0 0 923s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29000s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29100s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29200s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29300s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29400s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29500s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29600s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29700s 997 1 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29800s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 29900s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30000s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30100s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30200s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30300s 997 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30400s 996 1 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30500s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30600s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30700s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30800s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 30900s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31000s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31100s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31200s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31300s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31400s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31500s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31600s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31700s 996 0 0 0 0 0 924s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31800s 996 0 0 0 0 0 925s 152s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 31900s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32000s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32100s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32200s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32300s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32400s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32500s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32600s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32700s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32800s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 32900s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33000s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33100s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33200s 996 1 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33300s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33400s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33500s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33600s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33700s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33800s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 33900s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34000s 996 1 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34100s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34200s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34300s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34400s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34500s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34600s 996 0 0 0 0 0 925s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34700s 996 0 0 0 0 0 926s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34800s 996 0 0 0 0 0 926s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 34900s 996 0 0 0 0 0 926s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35000s 996 0 0 0 0 0 926s 151s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35100s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35200s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35300s 996 1 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35400s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35500s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35600s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35700s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35800s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 35900s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36000s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36100s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36200s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36300s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36400s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36500s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36600s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36700s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36800s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 36900s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37000s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37100s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37200s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37300s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37400s 996 0 0 0 0 0 926s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37500s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37600s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37700s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37800s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 37900s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38000s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38100s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38200s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38300s 996 0 0 0 0 0 927s 150s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38400s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38500s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38600s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38700s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38800s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 38900s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39000s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39100s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39200s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39300s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39400s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39500s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39600s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39700s 996 1 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39800s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 39900s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40000s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40100s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40200s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40300s 996 1 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40400s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40500s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40600s 996 0 0 0 0 0 927s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40700s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40800s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 40900s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41000s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41100s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41200s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41300s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41400s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41500s 996 0 0 0 0 0 928s 149s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41600s 996 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41700s 996 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41800s 996 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 41900s 996 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42000s 995 1 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42100s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42200s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42300s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42400s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42500s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42600s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42700s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42800s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 42900s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43000s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43100s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43200s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43300s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43400s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43500s 995 0 0 0 0 0 928s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43600s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43700s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43800s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 43900s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44000s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44100s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44200s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44300s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44400s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44500s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44600s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44700s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44800s 995 0 0 0 0 0 929s 148s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 44900s 995 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45000s 995 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45100s 995 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45200s 994 1 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45300s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45400s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45500s 994 1 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45600s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45700s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45800s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 45900s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46000s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46100s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46200s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46300s 994 0 0 0 0 0 929s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46400s 994 1 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46500s 993 1 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46600s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46700s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46800s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 46900s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47000s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47100s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47200s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47300s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47400s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47500s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47600s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47700s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47800s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 47900s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48000s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48100s 993 0 0 0 0 0 930s 147s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48200s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48300s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48400s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48500s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48600s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48700s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48800s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 48900s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49000s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49100s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49200s 993 0 0 0 0 0 930s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49300s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49400s 993 1 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49500s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49600s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49700s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49800s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 49900s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50000s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50100s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50200s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50300s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50400s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50500s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50600s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50700s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50800s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 50900s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51000s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51100s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51200s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51300s 993 0 0 0 0 0 931s 146s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51400s 994 1 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51500s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51600s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51700s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51800s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 51900s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52000s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52100s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52200s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52300s 994 0 0 0 0 0 931s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52400s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52500s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52600s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52700s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52800s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 52900s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53000s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53100s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53200s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53300s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53400s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53500s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53600s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53700s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53800s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 53900s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54000s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54100s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54200s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54300s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54400s 994 1 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54500s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54600s 994 0 0 0 0 0 932s 145s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54700s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54800s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 54900s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55000s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55100s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55200s 994 0 0 0 0 0 932s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55300s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55400s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55500s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55600s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55700s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55800s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 55900s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56000s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56100s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56200s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56300s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56400s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56500s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56600s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56700s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56800s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 56900s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57000s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57100s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57200s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57300s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57400s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57500s 994 1 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57600s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57700s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57800s 994 0 0 0 0 0 933s 144s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 57900s 994 0 0 0 0 0 933s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58000s 994 0 0 0 0 0 933s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58100s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58200s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58300s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58400s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58500s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58600s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58700s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58800s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 58900s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59000s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59100s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59200s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59300s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59400s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59500s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59600s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59700s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59800s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 59900s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60000s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60100s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60200s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60300s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60400s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60500s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60600s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60700s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60800s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 60900s 994 0 0 0 0 0 934s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61000s 994 0 0 0 0 0 935s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61100s 994 0 0 0 0 0 935s 143s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61200s 994 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61300s 994 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61400s 994 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61500s 994 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61600s 993 1 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61700s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61800s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 61900s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62000s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62100s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62200s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62300s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62400s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62500s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62600s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62700s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62800s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 62900s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63000s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63100s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63200s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63300s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63400s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63500s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63600s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63700s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63800s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 63900s 993 0 0 0 0 0 935s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64000s 993 0 0 0 0 0 936s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64100s 993 0 0 0 0 0 936s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64200s 993 0 0 0 0 0 936s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64300s 993 0 0 0 0 0 936s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64400s 992 1 0 0 0 0 936s 142s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64500s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64600s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64700s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64800s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 64900s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65000s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65100s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65200s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65300s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65400s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65500s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65600s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65700s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65800s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 65900s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66000s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66100s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66200s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66300s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66400s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66500s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66600s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66700s 992 0 0 0 0 0 936s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66800s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 66900s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67000s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67100s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67200s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67300s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67400s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67500s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67600s 992 0 0 0 0 0 937s 141s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67700s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67800s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 67900s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68000s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68100s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68200s 992 1 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68300s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68400s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68500s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68600s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68700s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68800s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 68900s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69000s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69100s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69200s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69300s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69400s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69500s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69600s 992 0 0 0 0 0 937s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69700s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69800s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 69900s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70000s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70100s 992 1 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70200s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70300s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70400s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70500s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70600s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70700s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70800s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 70900s 992 0 0 0 0 0 938s 140s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71000s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71100s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71200s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71300s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71400s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71500s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71600s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71700s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71800s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 71900s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72000s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72100s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72200s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72300s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72400s 992 0 0 0 0 0 938s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72500s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72600s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72700s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72800s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 72900s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73000s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73100s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73200s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73300s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73400s 992 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73500s 991 1 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73600s 991 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73700s 991 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73800s 991 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 73900s 989 2 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74000s 989 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74100s 989 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74200s 989 0 0 0 0 0 939s 139s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74300s 988 1 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74400s 988 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74500s 988 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74600s 988 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74700s 987 1 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74800s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 74900s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75000s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75100s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75200s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75300s 987 0 0 0 0 0 939s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75400s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75500s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75600s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75700s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75800s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 75900s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76000s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76100s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76200s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76300s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76400s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76500s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76600s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76700s 987 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76800s 986 1 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 76900s 986 1 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77000s 986 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77100s 986 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77200s 986 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77300s 986 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77400s 986 0 0 0 0 0 940s 138s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77500s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77600s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77700s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77800s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 77900s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78000s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78100s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78200s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78300s 986 0 0 0 0 0 940s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78400s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78500s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78600s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78700s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78800s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 78900s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79000s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79100s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79200s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79300s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79400s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79500s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79600s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79700s 986 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79800s 985 1 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 79900s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80000s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80100s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80200s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80300s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80400s 985 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80500s 984 2 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80600s 984 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80700s 984 0 0 0 0 0 941s 137s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80800s 984 0 0 0 0 0 941s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 80900s 984 0 0 0 0 0 941s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81000s 984 0 0 0 0 0 941s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81100s 984 0 0 0 0 0 941s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81200s 984 0 0 0 0 0 941s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81300s 983 1 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81400s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81500s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81600s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81700s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81800s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 81900s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82000s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82100s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82200s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82300s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82400s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82500s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82600s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82700s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82800s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 82900s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83000s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83100s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83200s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83300s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83400s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83500s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83600s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83700s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83800s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 83900s 983 0 0 0 0 0 942s 136s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84000s 983 0 0 0 0 0 942s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84100s 983 0 0 0 0 0 942s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84200s 983 0 0 0 0 0 942s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84300s 983 0 0 0 0 0 942s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84400s 983 0 0 0 0 0 942s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84500s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84600s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84700s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84800s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 84900s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85000s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85100s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85200s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85300s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85400s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85500s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85600s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85700s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85800s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 85900s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86000s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86100s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86200s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86300s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86400s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86500s 983 1 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86600s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86700s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86800s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 86900s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87000s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87100s 983 0 0 0 0 0 943s 135s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87200s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87300s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87400s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87500s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87600s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87700s 983 0 0 0 0 0 943s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87800s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 87900s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88000s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88100s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88200s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88300s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88400s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88500s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88600s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88700s 983 1 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88800s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 88900s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89000s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89100s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89200s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89300s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89400s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89500s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89600s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89700s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89800s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 89900s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90000s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90100s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90200s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90300s 983 0 0 0 0 0 944s 134s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90400s 983 0 0 0 0 0 944s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90500s 983 0 0 0 0 0 944s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90600s 983 0 0 0 0 0 944s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90700s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90800s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 90900s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91000s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91100s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91200s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91300s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91400s 983 1 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91500s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91600s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91700s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91800s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 91900s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92000s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92100s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92200s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92300s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92400s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92500s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92600s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92700s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92800s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 92900s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93000s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93100s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93200s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93300s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93400s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93500s 983 0 0 0 0 0 945s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93600s 983 0 0 0 0 0 946s 133s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93700s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93800s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 93900s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94000s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94100s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94200s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94300s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94400s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94500s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94600s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94700s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94800s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 94900s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95000s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95100s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95200s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95300s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95400s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95500s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95600s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95700s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95800s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 95900s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96000s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96100s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96200s 983 1 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96300s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96400s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96500s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96600s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96700s 983 0 0 0 0 0 946s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96800s 983 0 0 0 0 0 947s 132s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 96900s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97000s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97100s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97200s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97300s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97400s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97500s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97600s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97700s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97800s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 97900s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98000s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98100s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98200s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98300s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98400s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98500s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98600s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98700s 983 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98800s 982 1 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 98900s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99000s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99100s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99200s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99300s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99400s 982 1 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99500s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99600s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99700s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99800s 982 2 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 99900s 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1667m 982 0 0 0 0 0 947s 131s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1668m 982 0 0 0 0 0 947s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1670m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1672m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1673m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1675m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1677m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1678m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1680m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1682m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1683m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1685m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1687m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1688m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1690m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1692m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1693m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1695m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1697m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1698m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1700m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1702m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1703m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1705m 982 1 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1707m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1708m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1710m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1712m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1713m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1715m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1717m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1718m 982 0 0 0 0 0 948s 130s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1720m 982 0 0 0 0 0 948s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1722m 982 0 0 0 0 0 948s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1723m 982 0 0 0 0 0 948s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1725m 982 0 0 0 0 0 948s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1727m 982 0 0 0 0 0 948s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1728m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1730m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1732m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1733m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1735m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1737m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1738m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1740m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1742m 982 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1743m 983 1 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1745m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1747m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1748m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1750m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1752m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1753m 983 1 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1755m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1757m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1758m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1760m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1762m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1763m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1765m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1767m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1768m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1770m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1772m 983 0 0 0 0 0 949s 129s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1773m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1775m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1777m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1778m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1780m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1782m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1783m 983 0 0 0 0 0 949s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1785m 983 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1787m 983 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1788m 983 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1790m 983 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1792m 983 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1793m 982 1 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1795m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1797m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1798m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1800m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1802m 982 1 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1803m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1805m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1807m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1808m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1810m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1812m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1813m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1815m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1817m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1818m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1820m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1822m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1823m 982 1 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1825m 982 0 0 0 0 0 950s 128s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1827m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1828m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1830m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1832m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1833m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1835m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1837m 982 0 0 0 0 0 950s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1838m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1840m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1842m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1843m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1845m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1847m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1848m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1850m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1852m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1853m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1855m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1857m 982 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1858m 981 1 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1860m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1862m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1863m 981 1 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1865m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1867m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1868m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1870m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1872m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1873m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1875m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1877m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1878m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1880m 981 0 0 0 0 0 951s 127s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1882m 981 0 0 0 0 0 951s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1883m 981 0 0 0 0 0 951s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1885m 981 0 0 0 0 0 951s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1887m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1888m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1890m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1892m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1893m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1895m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1897m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1898m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1900m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1902m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1903m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1905m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1907m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1908m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1910m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1912m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1913m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1915m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1917m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1918m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1920m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1922m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1923m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1925m 981 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1927m 980 1 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1928m 980 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1930m 980 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1932m 980 0 0 0 0 0 952s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1933m 980 0 0 0 0 0 953s 126s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1935m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1937m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1938m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1940m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1942m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1943m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1945m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1947m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1948m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1950m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1952m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1953m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1955m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1957m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1958m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1960m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1962m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1963m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1965m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1967m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1968m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1970m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1972m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1973m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1975m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1977m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1978m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1980m 980 0 0 0 0 0 953s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1982m 980 0 0 0 0 0 954s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1983m 980 0 0 0 0 0 954s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1985m 980 0 0 0 0 0 954s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1987m 980 0 0 0 0 0 954s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1988m 980 0 0 0 0 0 954s 125s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1990m 980 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1992m 980 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1993m 980 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1995m 979 1 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1997m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 1998m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2000m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2002m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2003m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2005m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2007m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2008m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2010m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2012m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2013m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2015m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2017m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2018m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2020m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2022m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2023m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2025m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2027m 979 0 0 0 0 0 954s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2028m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2030m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2032m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2033m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2035m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2037m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2038m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2040m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2042m 979 0 0 0 0 0 955s 124s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2043m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2045m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2047m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2048m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2050m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2052m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2053m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2055m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2057m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2058m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2060m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2062m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2063m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2065m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2067m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2068m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2070m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2072m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2073m 979 0 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2075m 979 1 0 0 0 0 955s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2077m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2078m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2080m 979 1 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2082m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2083m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2085m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2087m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2088m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2090m 979 1 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2092m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2093m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2095m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2097m 979 0 0 0 0 0 956s 123s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2098m 979 1 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2100m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2102m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2103m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2105m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2107m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2108m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2110m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2112m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2113m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2115m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2117m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2118m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2120m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2122m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2123m 979 0 0 0 0 0 956s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2125m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2127m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2128m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2130m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2132m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2133m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2135m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2137m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2138m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2140m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2142m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2143m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2145m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2147m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2148m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2150m 979 0 0 0 0 0 957s 122s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2152m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2153m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2155m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2157m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2158m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2160m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2162m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2163m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2165m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2167m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2168m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2170m 979 0 0 0 0 0 957s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2172m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2173m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2175m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2177m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2178m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2180m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2182m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2183m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2185m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2187m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2188m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2190m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2192m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2193m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2195m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2197m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2198m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2200m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2202m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2203m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2205m 979 0 0 0 0 0 958s 121s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2207m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2208m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2210m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2212m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2213m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2215m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2217m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2218m 979 0 0 0 0 0 958s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2220m 979 1 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2222m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2223m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2225m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2227m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2228m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2230m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2232m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2233m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2235m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2237m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2238m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2240m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2242m 979 2 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2243m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2245m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2247m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2248m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2250m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2252m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2253m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2255m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2257m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2258m 979 0 0 0 0 0 959s 120s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2260m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2262m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2263m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2265m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2267m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2268m 979 0 0 0 0 0 959s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2270m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2272m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2273m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2275m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2277m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2278m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2280m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2282m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2283m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2285m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2287m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2288m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2290m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2292m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2293m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2295m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2297m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2298m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2300m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2302m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2303m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2305m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2307m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2308m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2310m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2312m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2313m 979 0 0 0 0 0 960s 119s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2315m 979 0 0 0 0 0 960s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2317m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2318m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2320m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2322m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2323m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2325m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2327m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2328m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2330m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2332m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2333m 979 1 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2335m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2337m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2338m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2340m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2342m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2343m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2345m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2347m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2348m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2350m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2352m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2353m 978 1 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2355m 978 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2357m 978 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2358m 978 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2360m 979 1 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2362m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2363m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2365m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2367m 979 0 0 0 0 0 961s 118s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2368m 979 0 0 0 0 0 961s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2370m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2372m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2373m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2375m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2377m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2378m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2380m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2382m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2383m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2385m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2387m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2388m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2390m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2392m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2393m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2395m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2397m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2398m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2400m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2402m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2403m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2405m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2407m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2408m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2410m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2412m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2413m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2415m 979 0 0 0 0 0 962s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2417m 979 0 0 0 0 0 963s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2418m 979 0 0 0 0 0 963s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2420m 979 0 0 0 0 0 963s 117s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2422m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2423m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2425m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2427m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2428m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2430m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2432m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2433m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2435m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2437m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2438m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2440m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2442m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2443m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2445m 979 1 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2447m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2448m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2450m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2452m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2453m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2455m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2457m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2458m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2460m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2462m 979 0 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2463m 979 1 0 0 0 0 963s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2465m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2467m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2468m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2470m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2472m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2473m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2475m 979 0 0 0 0 0 964s 116s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2477m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2478m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2480m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2482m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2483m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2485m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2487m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2488m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2490m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2492m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2493m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2495m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2497m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2498m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2500m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2502m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2503m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2505m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2507m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2508m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2510m 979 0 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2512m 978 1 0 0 0 0 964s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2513m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2515m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2517m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2518m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2520m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2522m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2523m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2525m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2527m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2528m 978 0 0 0 0 0 965s 115s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2530m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2532m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2533m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2535m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2537m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2538m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2540m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2542m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2543m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2545m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2547m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2548m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2550m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2552m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2553m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2555m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2557m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2558m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2560m 978 0 0 0 0 0 965s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2562m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2563m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2565m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2567m 978 2 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2568m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2570m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2572m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2573m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2575m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2577m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2578m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2580m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2582m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2583m 978 0 0 0 0 0 966s 114s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2585m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2587m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2588m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2590m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2592m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2593m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2595m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2597m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2598m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2600m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2602m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2603m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2605m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2607m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2608m 978 0 0 0 0 0 966s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2610m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2612m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2613m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2615m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2617m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2618m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2620m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2622m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2623m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2625m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2627m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2628m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2630m 978 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2632m 977 1 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2633m 977 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2635m 977 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2637m 977 0 0 0 0 0 967s 113s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2638m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2640m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2642m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2643m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2645m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2647m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2648m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2650m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2652m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2653m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2655m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2657m 977 0 0 0 0 0 967s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2658m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2660m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2662m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2663m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2665m 977 1 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2667m 977 1 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2668m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2670m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2672m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2673m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2675m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2677m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2678m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2680m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2682m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2683m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2685m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2687m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2688m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2690m 977 0 0 0 0 0 968s 112s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2692m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2693m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2695m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2697m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2698m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2700m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2702m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2703m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2705m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2707m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2708m 977 0 0 0 0 0 968s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2710m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2712m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2713m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2715m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2717m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2718m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2720m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2722m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2723m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2725m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2727m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2728m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2730m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2732m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2733m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2735m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2737m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2738m 977 1 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2740m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2742m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2743m 977 0 0 0 0 0 969s 111s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2745m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2747m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2748m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2750m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2752m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2753m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2755m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2757m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2758m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2760m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2762m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2763m 977 0 0 0 0 0 969s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2765m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2767m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2768m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2770m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2772m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2773m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2775m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2777m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2778m 977 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2780m 976 1 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2782m 976 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2783m 976 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2785m 976 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2787m 976 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2788m 976 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2790m 975 1 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2792m 975 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2793m 975 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2795m 975 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2797m 975 0 0 0 0 0 970s 110s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2798m 975 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2800m 975 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2802m 975 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2803m 975 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2805m 975 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2807m 974 1 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2808m 974 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2810m 974 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2812m 974 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2813m 974 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2815m 974 0 0 0 0 0 970s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2817m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2818m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2820m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2822m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2823m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2825m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2827m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2828m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2830m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2832m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2833m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2835m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2837m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2838m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2840m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2842m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2843m 974 1 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2845m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2847m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2848m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2850m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2852m 974 0 0 0 0 0 971s 109s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2853m 974 0 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2855m 973 1 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2857m 973 1 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2858m 973 0 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2860m 973 0 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2862m 973 0 0 0 0 0 971s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2863m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2865m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2867m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2868m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2870m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2872m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2873m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2875m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2877m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2878m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 18 2880m 973 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 0s 1038 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 100s 1038 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 200s 1038 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 300s 1039 1 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 400s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 500s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 600s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 700s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 800s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 900s 1039 1 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1000s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1100s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1200s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1300s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1400s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1500s 1039 0 0 0 0 0 972s 108s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1600s 1039 0 0 0 0 0 972s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1700s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1800s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1900s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2000s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2100s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2200s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2300s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2400s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2500s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2600s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2700s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2800s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2900s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3000s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3100s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3200s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3300s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3400s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3500s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3600s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3700s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3800s 1039 1 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 3900s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4000s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4100s 1039 1 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4200s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4300s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4400s 1039 0 0 0 0 0 973s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4500s 1039 0 0 0 0 0 974s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4600s 1039 0 0 0 0 0 974s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4700s 1039 0 0 0 0 0 974s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4800s 1039 0 0 0 0 0 974s 107s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 4900s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5000s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5100s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5200s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5300s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5400s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5500s 1039 1 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5600s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5700s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5800s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 5900s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6000s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6100s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6200s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6300s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6400s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6500s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6600s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6700s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6800s 1039 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 6900s 1038 1 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7000s 1038 1 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7100s 1038 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7200s 1038 0 0 0 0 0 974s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7300s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7400s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7500s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7600s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7700s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7800s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 7900s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8000s 1038 0 0 0 0 0 975s 106s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8100s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8200s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8300s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8400s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8500s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8600s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8700s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8800s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 8900s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9000s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9100s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9200s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9300s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9400s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9500s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9600s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9700s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9800s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 9900s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10000s 1038 0 0 0 0 0 975s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10100s 1038 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10200s 1037 1 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10300s 1037 1 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10400s 1037 1 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10500s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10600s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10700s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10800s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 10900s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11000s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11100s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11200s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11300s 1037 0 0 0 0 0 976s 105s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11400s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11500s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11600s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11700s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11800s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 11900s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12000s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12100s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12200s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12300s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12400s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12500s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12600s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12700s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12800s 1037 0 0 0 0 0 976s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 12900s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13000s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13100s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13200s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13300s 1037 1 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13400s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13500s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13600s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13700s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13800s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 13900s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14000s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14100s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14200s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14300s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14400s 1037 0 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14500s 1038 1 0 0 0 0 977s 104s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14600s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14700s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14800s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 14900s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15000s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15100s 1038 2 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15200s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15300s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15400s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15500s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15600s 1038 0 0 0 0 0 977s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15700s 1038 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15800s 1038 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 15900s 1038 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16000s 1037 1 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16100s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16200s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16300s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16400s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16500s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16600s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16700s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16800s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 16900s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17000s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17100s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17200s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17300s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17400s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17500s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17600s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17700s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17800s 1037 0 0 0 0 0 978s 103s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 17900s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18000s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18100s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18200s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18300s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18400s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18500s 1037 0 0 0 0 0 978s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18600s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18700s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18800s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 18900s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19000s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19100s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19200s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19300s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19400s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19500s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19600s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19700s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19800s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 19900s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20000s 1037 1 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20100s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20200s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20300s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20400s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20500s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20600s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20700s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20800s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 20900s 1037 0 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21000s 1037 1 0 0 0 0 979s 102s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21100s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21200s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21300s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21400s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21500s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21600s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21700s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21800s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 21900s 1037 0 0 0 0 0 979s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22000s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22100s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22200s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22300s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22400s 1037 1 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22500s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22600s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22700s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22800s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 22900s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23000s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23100s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23200s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23300s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23400s 1037 1 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23500s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23600s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23700s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23800s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 23900s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24000s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24100s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24200s 1037 0 0 0 0 0 980s 101s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24300s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24400s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24500s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24600s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24700s 1037 1 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24800s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 24900s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25000s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25100s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25200s 1037 0 0 0 0 0 980s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25300s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25400s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25500s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25600s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25700s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25800s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 25900s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26000s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26100s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26200s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26300s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26400s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26500s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26600s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26700s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26800s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 26900s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27000s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27100s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27200s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27300s 1037 0 0 0 0 0 981s 100s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27400s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27500s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27600s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27700s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27800s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 27900s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28000s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28100s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28200s 1037 1 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28300s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28400s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28500s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28600s 1037 0 0 0 0 0 981s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28700s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28800s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 28900s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29000s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29100s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29200s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29300s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29400s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29500s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29600s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29700s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29800s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 29900s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30000s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30100s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30200s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30300s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30400s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30500s 1037 0 0 0 0 0 982s 99s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30600s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30700s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30800s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 30900s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31000s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31100s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31200s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31300s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31400s 1037 1 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31500s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31600s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31700s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31800s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 31900s 1037 0 0 0 0 0 982s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32000s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32100s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32200s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32300s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32400s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32500s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32600s 1037 1 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32700s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32800s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 32900s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33000s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33100s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33200s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33300s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33400s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33500s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33600s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33700s 1037 0 0 0 0 0 983s 98s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33800s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 33900s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34000s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34100s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34200s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34300s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34400s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34500s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34600s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34700s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34800s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 34900s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35000s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35100s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35200s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35300s 1037 0 0 0 0 0 983s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35400s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35500s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35600s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35700s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35800s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 35900s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36000s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36100s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36200s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36300s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36400s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36500s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36600s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36700s 1037 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36800s 1036 1 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 36900s 1036 0 0 0 0 0 984s 97s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37000s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37100s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37200s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37300s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37400s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37500s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37600s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37700s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37800s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 37900s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38000s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38100s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38200s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38300s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38400s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38500s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38600s 1036 0 0 0 0 0 984s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38700s 1036 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38800s 1036 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 38900s 1036 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39000s 1035 1 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39100s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39200s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39300s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39400s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39500s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39600s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39700s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39800s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 39900s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40000s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40100s 1035 0 0 0 0 0 985s 96s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40200s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40300s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40400s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40500s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40600s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40700s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40800s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 40900s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41000s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41100s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41200s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41300s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41400s 1035 0 0 0 0 0 985s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41500s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41600s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41700s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41800s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 41900s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42000s 1035 1 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42100s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42200s 1035 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42300s 1034 1 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42400s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42500s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42600s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42700s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42800s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 42900s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43000s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43100s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43200s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43300s 1034 0 0 0 0 0 986s 95s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43400s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43500s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43600s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43700s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43800s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 43900s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44000s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44100s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44200s 1034 0 0 0 0 0 986s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44300s 1034 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44400s 1034 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44500s 1034 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44600s 1033 1 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44700s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44800s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 44900s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45000s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45100s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45200s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45300s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45400s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45500s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45600s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45700s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45800s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 45900s 1033 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46000s 1032 1 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46100s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46200s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46300s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46400s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46500s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46600s 1032 0 0 0 0 0 987s 94s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46700s 1032 0 0 0 0 0 987s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46800s 1032 0 0 0 0 0 987s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 46900s 1031 1 0 0 0 0 987s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47000s 1031 0 0 0 0 0 987s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47100s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47200s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47300s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47400s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47500s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47600s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47700s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47800s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 47900s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48000s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48100s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48200s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48300s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48400s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48500s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48600s 1030 1 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48700s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48800s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 48900s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49000s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49100s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49200s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49300s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49400s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49500s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49600s 1030 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49700s 1031 1 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49800s 1031 0 0 0 0 0 988s 93s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 49900s 1031 0 0 0 0 0 988s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50000s 1031 0 0 0 0 0 988s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50100s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50200s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50300s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50400s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50500s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50600s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50700s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50800s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 50900s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51000s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51100s 1031 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51200s 1030 1 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51300s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51400s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51500s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51600s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51700s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51800s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 51900s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52000s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52100s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52200s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52300s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52400s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52500s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52600s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52700s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52800s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 52900s 1030 0 0 0 0 0 989s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53000s 1030 0 0 0 0 0 990s 92s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53100s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53200s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53300s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53400s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53500s 1030 1 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53600s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53700s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53800s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 53900s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54000s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54100s 1030 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54200s 1031 1 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54300s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54400s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54500s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54600s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54700s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54800s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 54900s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55000s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55100s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55200s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55300s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55400s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55500s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55600s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55700s 1031 0 0 0 0 0 990s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55800s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 55900s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56000s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56100s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56200s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56300s 1031 0 0 0 0 0 991s 91s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56400s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56500s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56600s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56700s 1031 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56800s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 56900s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57000s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57100s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57200s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57300s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57400s 1031 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57500s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57600s 1031 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57700s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57800s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 57900s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58000s 1031 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58100s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58200s 1031 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58300s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58400s 1031 0 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58500s 1032 1 0 0 0 0 991s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58600s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58700s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58800s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 58900s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59000s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59100s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59200s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59300s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59400s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59500s 1032 0 0 0 0 0 992s 90s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59600s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59700s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59800s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 59900s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60000s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60100s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60200s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60300s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60400s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60500s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60600s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60700s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60800s 1032 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 60900s 1033 1 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61000s 1033 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61100s 1033 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61200s 1033 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61300s 1033 0 0 0 0 0 992s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61400s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61500s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61600s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61700s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61800s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 61900s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62000s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62100s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62200s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62300s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62400s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62500s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62600s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62700s 1033 0 0 0 0 0 993s 89s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62800s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 62900s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63000s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63100s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63200s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63300s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63400s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63500s 1033 1 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63600s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63700s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63800s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 63900s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64000s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64100s 1033 0 0 0 0 0 993s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64200s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64300s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64400s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64500s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64600s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64700s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64800s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 64900s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65000s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65100s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65200s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65300s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65400s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65500s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65600s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65700s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65800s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 65900s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66000s 1033 0 0 0 0 0 994s 88s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66100s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66200s 1033 1 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66300s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66400s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66500s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66600s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66700s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66800s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 66900s 1033 0 0 0 0 0 994s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67000s 1033 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67100s 1033 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67200s 1033 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67300s 1033 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67400s 1033 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67500s 1034 1 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67600s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67700s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67800s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 67900s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68000s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68100s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68200s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68300s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68400s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68500s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68600s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68700s 1034 1 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68800s 1034 1 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 68900s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69000s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69100s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69200s 1034 0 0 0 0 0 995s 87s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69300s 1034 0 0 0 0 0 995s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69400s 1034 0 0 0 0 0 995s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69500s 1034 0 0 0 0 0 995s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69600s 1034 0 0 0 0 0 995s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69700s 1034 2 0 0 0 0 995s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69800s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 69900s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70000s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70100s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70200s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70300s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70400s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70500s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70600s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70700s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70800s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 70900s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71000s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71100s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71200s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71300s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71400s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71500s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71600s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71700s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71800s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 71900s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72000s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72100s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72200s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72300s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72400s 1034 0 0 0 0 0 996s 86s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72500s 1034 0 0 0 0 0 996s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72600s 1034 1 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72700s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72800s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 72900s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73000s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73100s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73200s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73300s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73400s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73500s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73600s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73700s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73800s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 73900s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74000s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74100s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74200s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74300s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74400s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74500s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74600s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74700s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74800s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 74900s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75000s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75100s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75200s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75300s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75400s 1034 0 0 0 0 0 997s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75500s 1034 0 0 0 0 0 998s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75600s 1033 1 0 0 0 0 998s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75700s 1033 0 0 0 0 0 998s 85s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75800s 1033 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 75900s 1032 1 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76000s 1032 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76100s 1032 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76200s 1032 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76300s 1032 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76400s 1031 2 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76500s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76600s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76700s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76800s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 76900s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77000s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77100s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77200s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77300s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77400s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77500s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77600s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77700s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77800s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 77900s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78000s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78100s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78200s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78300s 1031 0 0 0 0 0 998s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78400s 1031 0 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78500s 1031 0 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78600s 1031 0 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78700s 1031 0 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78800s 1030 1 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 78900s 1030 0 0 0 0 0 999s 84s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79000s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79100s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79200s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79300s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79400s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79500s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79600s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79700s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79800s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 79900s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80000s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80100s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80200s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80300s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80400s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80500s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80600s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80700s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80800s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 80900s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81000s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81100s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81200s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81300s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81400s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81500s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81600s 1030 0 0 0 0 0 999s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81700s 1030 0 0 0 0 0 1000s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81800s 1030 0 0 0 0 0 1000s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 81900s 1030 0 0 0 0 0 1000s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82000s 1030 0 0 0 0 0 1000s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82100s 1030 0 0 0 0 0 1000s 83s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82200s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82300s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82400s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82500s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82600s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82700s 1030 1 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82800s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 82900s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83000s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83100s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83200s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83300s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83400s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83500s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83600s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83700s 1030 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83800s 1029 1 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 83900s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84000s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84100s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84200s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84300s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84400s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84500s 1029 0 0 0 0 0 1000s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84600s 1029 1 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84700s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84800s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 84900s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85000s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85100s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85200s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85300s 1029 0 0 0 0 0 1001s 82s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85400s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85500s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85600s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85700s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85800s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 85900s 1029 1 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86000s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86100s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86200s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86300s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86400s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86500s 1029 1 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86600s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86700s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86800s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 86900s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87000s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87100s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87200s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87300s 1029 0 0 0 0 0 1001s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87400s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87500s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87600s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87700s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87800s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 87900s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88000s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88100s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88200s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88300s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88400s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88500s 1029 0 0 0 0 0 1002s 81s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88600s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88700s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88800s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 88900s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89000s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89100s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89200s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89300s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89400s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89500s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89600s 1029 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89700s 1028 1 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89800s 1028 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 89900s 1028 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90000s 1028 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90100s 1028 0 0 0 0 0 1002s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90200s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90300s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90400s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90500s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90600s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90700s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90800s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 90900s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91000s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91100s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91200s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91300s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91400s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91500s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91600s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91700s 1028 0 0 0 0 0 1003s 80s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91800s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 91900s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92000s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92100s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92200s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92300s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92400s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92500s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92600s 1028 1 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92700s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92800s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 92900s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93000s 1028 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93100s 1027 1 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93200s 1027 0 0 0 0 0 1003s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93300s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93400s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93500s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93600s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93700s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93800s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 93900s 1027 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94000s 1026 1 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94100s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94200s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94300s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94400s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94500s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94600s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94700s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94800s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 94900s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95000s 1026 0 0 0 0 0 1004s 79s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95100s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95200s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95300s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95400s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95500s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95600s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95700s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95800s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 95900s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96000s 1026 0 0 0 0 0 1004s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96100s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96200s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96300s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96400s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96500s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96600s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96700s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96800s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 96900s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97000s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97100s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97200s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97300s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97400s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97500s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97600s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97700s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97800s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 97900s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98000s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98100s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98200s 1026 0 0 0 0 0 1005s 78s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98300s 1026 0 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98400s 1026 0 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98500s 1026 1 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98600s 1026 0 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98700s 1026 0 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98800s 1026 0 0 0 0 0 1005s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 98900s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99000s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99100s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99200s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99300s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99400s 1026 1 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99500s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99600s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99700s 1026 1 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99800s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 99900s 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1667m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1668m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1670m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1672m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1673m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1675m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1677m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1678m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1680m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1682m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1683m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1685m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1687m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1688m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1690m 1026 0 0 0 0 0 1006s 77s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1692m 1026 0 0 0 0 0 1006s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1693m 1026 0 0 0 0 0 1006s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1695m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1697m 1026 1 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1698m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1700m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1702m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1703m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1705m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1707m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1708m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1710m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1712m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1713m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1715m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1717m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1718m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1720m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1722m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1723m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1725m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1727m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1728m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1730m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1732m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1733m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1735m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1737m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1738m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1740m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1742m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1743m 1026 0 0 0 0 0 1007s 76s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1745m 1026 0 0 0 0 0 1007s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1747m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1748m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1750m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1752m 1026 1 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1753m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1755m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1757m 1026 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1758m 1025 1 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1760m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1762m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1763m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1765m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1767m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1768m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1770m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1772m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1773m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1775m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1777m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1778m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1780m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1782m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1783m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1785m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1787m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1788m 1025 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1790m 1024 1 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1792m 1024 0 0 0 0 0 1008s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1793m 1024 0 0 0 0 0 1009s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1795m 1024 0 0 0 0 0 1009s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1797m 1024 0 0 0 0 0 1009s 75s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1798m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1800m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1802m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1803m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1805m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1807m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1808m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1810m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1812m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1813m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1815m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1817m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1818m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1820m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1822m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1823m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1825m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1827m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1828m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1830m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1832m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1833m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1835m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1837m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1838m 1024 0 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1840m 1023 1 0 0 0 0 1009s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1842m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1843m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1845m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1847m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1848m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1850m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1852m 1023 0 0 0 0 0 1010s 74s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1853m 1023 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1855m 1022 1 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1857m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1858m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1860m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1862m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1863m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1865m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1867m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1868m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1870m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1872m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1873m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1875m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1877m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1878m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1880m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1882m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1883m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1885m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1887m 1022 0 0 0 0 0 1010s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1888m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1890m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1892m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1893m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1895m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1897m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1898m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1900m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1902m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1903m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1905m 1022 0 0 0 0 0 1011s 73s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1907m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1908m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1910m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1912m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1913m 1022 1 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1915m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1917m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1918m 1022 1 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1920m 1022 1 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1922m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1923m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1925m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1927m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1928m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1930m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1932m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1933m 1022 0 0 0 0 0 1011s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1935m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1937m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1938m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1940m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1942m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1943m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1945m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1947m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1948m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1950m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1952m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1953m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1955m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1957m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1958m 1022 0 0 0 0 0 1012s 72s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1960m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1962m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1963m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1965m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1967m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1968m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1970m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1972m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1973m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1975m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1977m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1978m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1980m 1022 0 0 0 0 0 1012s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1982m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1983m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1985m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1987m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1988m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1990m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1992m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1993m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1995m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1997m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 1998m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2000m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2002m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2003m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2005m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2007m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2008m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2010m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2012m 1022 0 0 0 0 0 1013s 71s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2013m 1022 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2015m 1022 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2017m 1022 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2018m 1022 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2020m 1021 1 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2022m 1021 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2023m 1021 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2025m 1021 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2027m 1021 0 0 0 0 0 1013s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2028m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2030m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2032m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2033m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2035m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2037m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2038m 1021 1 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2040m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2042m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2043m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2045m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2047m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2048m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2050m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2052m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2053m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2055m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2057m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2058m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2060m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2062m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2063m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2065m 1021 0 0 0 0 0 1014s 70s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2067m 1021 0 0 0 0 0 1014s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2068m 1021 0 0 0 0 0 1014s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2070m 1021 0 0 0 0 0 1014s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2072m 1021 0 0 0 0 0 1014s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2073m 1021 0 0 0 0 0 1014s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2075m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2077m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2078m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2080m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2082m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2083m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2085m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2087m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2088m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2090m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2092m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2093m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2095m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2097m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2098m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2100m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2102m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2103m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2105m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2107m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2108m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2110m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2112m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2113m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2115m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2117m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2118m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2120m 1021 0 0 0 0 0 1015s 69s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2122m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2123m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2125m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2127m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2128m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2130m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2132m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2133m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2135m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2137m 1021 1 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2138m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2140m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2142m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2143m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2145m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2147m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2148m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2150m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2152m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2153m 1021 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2155m 1020 1 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2157m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2158m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2160m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2162m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2163m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2165m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2167m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2168m 1020 0 0 0 0 0 1016s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2170m 1020 0 0 0 0 0 1017s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2172m 1020 0 0 0 0 0 1017s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2173m 1020 0 0 0 0 0 1017s 68s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2175m 1020 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2177m 1019 1 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2178m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2180m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2182m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2183m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2185m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2187m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2188m 1019 1 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2190m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2192m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2193m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2195m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2197m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2198m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2200m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2202m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2203m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2205m 1019 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2207m 1018 1 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2208m 1018 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2210m 1018 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2212m 1018 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2213m 1018 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2215m 1018 0 0 0 0 0 1017s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2217m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2218m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2220m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2222m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2223m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2225m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2227m 1018 0 0 0 0 0 1018s 67s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2228m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2230m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2232m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2233m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2235m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2237m 1018 1 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2238m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2240m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2242m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2243m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2245m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2247m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2248m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2250m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2252m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2253m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2255m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2257m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2258m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2260m 1018 0 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2262m 1018 1 0 0 0 0 1018s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2263m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2265m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2267m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2268m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2270m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2272m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2273m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2275m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2277m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2278m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2280m 1018 0 0 0 0 0 1019s 66s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2282m 1017 1 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2283m 1017 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2285m 1017 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2287m 1016 1 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2288m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2290m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2292m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2293m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2295m 1016 1 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2297m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2298m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2300m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2302m 1016 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2303m 1015 1 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2305m 1015 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2307m 1015 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2308m 1014 1 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2310m 1014 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2312m 1014 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2313m 1014 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2315m 1014 0 0 0 0 0 1019s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2317m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2318m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2320m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2322m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2323m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2325m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2327m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2328m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2330m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2332m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2333m 1014 0 0 0 0 0 1020s 65s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2335m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2337m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2338m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2340m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2342m 1014 1 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2343m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2345m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2347m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2348m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2350m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2352m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2353m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2355m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2357m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2358m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2360m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2362m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2363m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2365m 1014 0 0 0 0 0 1020s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2367m 1014 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2368m 1014 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2370m 1014 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2372m 1014 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2373m 1013 1 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2375m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2377m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2378m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2380m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2382m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2383m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2385m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2387m 1013 0 0 0 0 0 1021s 64s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2388m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2390m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2392m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2393m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2395m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2397m 1013 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2398m 1012 1 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2400m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2402m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2403m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2405m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2407m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2408m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2410m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2412m 1012 0 0 0 0 0 1021s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2413m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2415m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2417m 1012 1 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2418m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2420m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2422m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2423m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2425m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2427m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2428m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2430m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2432m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2433m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2435m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2437m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2438m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2440m 1012 0 0 0 0 0 1022s 63s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2442m 1011 1 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2443m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2445m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2447m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2448m 1011 1 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2450m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2452m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2453m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2455m 1011 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2457m 1010 1 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2458m 1010 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2460m 1010 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2462m 1010 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2463m 1010 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2465m 1010 1 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2467m 1010 0 0 0 0 0 1022s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2468m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2470m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2472m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2473m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2475m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2477m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2478m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2480m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2482m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2483m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2485m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2487m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2488m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2490m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2492m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2493m 1010 0 0 0 0 0 1023s 62s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2495m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2497m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2498m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2500m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2502m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2503m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2505m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2507m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2508m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2510m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2512m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2513m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2515m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2517m 1010 0 0 0 0 0 1023s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2518m 1010 1 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2520m 1010 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2522m 1010 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2523m 1009 1 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2525m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2527m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2528m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2530m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2532m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2533m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2535m 1009 1 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2537m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2538m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2540m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2542m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2543m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2545m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2547m 1009 0 0 0 0 0 1024s 61s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2548m 1008 1 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2550m 1008 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2552m 1008 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2553m 1008 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2555m 1008 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2557m 1008 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2558m 1009 1 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2560m 1009 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2562m 1009 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2563m 1009 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2565m 1009 0 0 0 0 0 1024s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2567m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2568m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2570m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2572m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2573m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2575m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2577m 1009 1 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2578m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2580m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2582m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2583m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2585m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2587m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2588m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2590m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2592m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2593m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2595m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2597m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2598m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2600m 1009 0 0 0 0 0 1025s 60s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2602m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2603m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2605m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2607m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2608m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2610m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2612m 1009 0 0 0 0 0 1025s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2613m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2615m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2617m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2618m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2620m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2622m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2623m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2625m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2627m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2628m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2630m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2632m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2633m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2635m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2637m 1009 1 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2638m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2640m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2642m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2643m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2645m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2647m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2648m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2650m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2652m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2653m 1009 0 0 0 0 0 1026s 59s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2655m 1009 0 0 0 0 0 1026s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2657m 1009 0 0 0 0 0 1026s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2658m 1009 0 0 0 0 0 1026s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2660m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2662m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2663m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2665m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2667m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2668m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2670m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2672m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2673m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2675m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2677m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2678m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2680m 1009 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2682m 1008 1 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2683m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2685m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2687m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2688m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2690m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2692m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2693m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2695m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2697m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2698m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2700m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2702m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2703m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2705m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2707m 1008 0 0 0 0 0 1027s 58s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2708m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2710m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2712m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2713m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2715m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2717m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2718m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2720m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2722m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2723m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2725m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2727m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2728m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2730m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2732m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2733m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2735m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2737m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2738m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2740m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2742m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2743m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2745m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2747m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2748m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2750m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2752m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2753m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2755m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2757m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2758m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2760m 1008 0 0 0 0 0 1028s 57s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2762m 1008 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2763m 1008 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2765m 1008 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2767m 1008 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2768m 1008 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2770m 1007 1 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2772m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2773m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2775m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2777m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2778m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2780m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2782m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2783m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2785m 1007 1 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2787m 1007 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2788m 1007 1 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2790m 1006 1 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2792m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2793m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2795m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2797m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2798m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2800m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2802m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2803m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2805m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2807m 1006 0 0 0 0 0 1029s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2808m 1006 0 0 0 0 0 1030s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2810m 1006 0 0 0 0 0 1030s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2812m 1006 0 0 0 0 0 1030s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2813m 1006 0 0 0 0 0 1030s 56s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2815m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2817m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2818m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2820m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2822m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2823m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2825m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2827m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2828m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2830m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2832m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2833m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2835m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2837m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2838m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2840m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2842m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2843m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2845m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2847m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2848m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2850m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2852m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2853m 1006 0 0 0 0 0 1030s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2855m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2857m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2858m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2860m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2862m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2863m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2865m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2867m 1006 0 0 0 0 0 1031s 55s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2868m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2870m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2872m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2873m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2875m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2877m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2878m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 19 2880m 1006 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 0s 1020 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 100s 1020 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 200s 1020 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 300s 1020 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 400s 1020 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 500s 1019 1 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 600s 1019 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 700s 1019 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 800s 1019 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 900s 1019 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1000s 1019 0 0 0 0 0 1031s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1100s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1200s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1300s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1400s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1500s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1600s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1700s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1800s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1900s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2000s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2100s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2200s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2300s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2400s 1019 0 0 0 0 0 1032s 54s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2500s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2600s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2700s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2800s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2900s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3000s 1019 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3100s 1018 1 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3200s 1018 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3300s 1018 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3400s 1018 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3500s 1018 0 0 0 0 0 1032s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3600s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3700s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3800s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 3900s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4000s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4100s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4200s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4300s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4400s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4500s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4600s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4700s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4800s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 4900s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5000s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5100s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5200s 1018 1 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5300s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5400s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5500s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5600s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5700s 1018 0 0 0 0 0 1033s 53s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5800s 1018 1 0 0 0 0 1033s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 5900s 1018 0 0 0 0 0 1033s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6000s 1018 0 0 0 0 0 1033s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6100s 1018 0 0 0 0 0 1033s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6200s 1018 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6300s 1018 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6400s 1018 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6500s 1018 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6600s 1017 1 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6700s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6800s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 6900s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7000s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7100s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7200s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7300s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7400s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7500s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7600s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7700s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7800s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 7900s 1017 1 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8000s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8100s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8200s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8300s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8400s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8500s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8600s 1017 0 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8700s 1016 1 0 0 0 0 1034s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8800s 1016 0 0 0 0 0 1035s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 8900s 1016 0 0 0 0 0 1035s 52s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9000s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9100s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9200s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9300s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9400s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9500s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9600s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9700s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9800s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 9900s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10000s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10100s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10200s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10300s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10400s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10500s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10600s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10700s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10800s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 10900s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11000s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11100s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11200s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11300s 1016 0 0 0 0 0 1035s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11400s 1016 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11500s 1016 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11600s 1016 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11700s 1016 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11800s 1015 1 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 11900s 1015 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12000s 1015 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12100s 1015 0 0 0 0 0 1036s 51s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12200s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12300s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12400s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12500s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12600s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12700s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12800s 1015 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 12900s 1014 1 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13000s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13100s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13200s 1014 1 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13300s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13400s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13500s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13600s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13700s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13800s 1014 0 0 0 0 0 1036s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 13900s 1014 1 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14000s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14100s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14200s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14300s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14400s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14500s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14600s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14700s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14800s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 14900s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15000s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15100s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15200s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15300s 1014 0 0 0 0 0 1037s 50s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15400s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15500s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15600s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15700s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15800s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 15900s 1014 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16000s 1013 1 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16100s 1013 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16200s 1013 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16300s 1013 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16400s 1013 0 0 0 0 0 1037s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16500s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16600s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16700s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16800s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 16900s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17000s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17100s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17200s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17300s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17400s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17500s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17600s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17700s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17800s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 17900s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18000s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18100s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18200s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18300s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18400s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18500s 1013 0 0 0 0 0 1038s 49s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18600s 1013 0 0 0 0 0 1038s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18700s 1013 0 0 0 0 0 1038s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18800s 1013 0 0 0 0 0 1038s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 18900s 1013 0 0 0 0 0 1038s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19000s 1013 0 0 0 0 0 1038s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19100s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19200s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19300s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19400s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19500s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19600s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19700s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19800s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 19900s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20000s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20100s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20200s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20300s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20400s 1013 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20500s 1012 1 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20600s 1012 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20700s 1011 1 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20800s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 20900s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21000s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21100s 1011 1 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21200s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21300s 1011 1 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21400s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21500s 1011 0 0 0 0 0 1039s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21600s 1011 0 0 0 0 0 1040s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21700s 1011 0 0 0 0 0 1040s 48s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21800s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 21900s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22000s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22100s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22200s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22300s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22400s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22500s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22600s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22700s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22800s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 22900s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23000s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23100s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23200s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23300s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23400s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23500s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23600s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23700s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23800s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 23900s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24000s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24100s 1011 0 0 0 0 0 1040s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24200s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24300s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24400s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24500s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24600s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24700s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24800s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 24900s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25000s 1011 0 0 0 0 0 1041s 47s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25100s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25200s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25300s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25400s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25500s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25600s 1011 1 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25700s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25800s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 25900s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26000s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26100s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26200s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26300s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26400s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26500s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26600s 1011 0 0 0 0 0 1041s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26700s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26800s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 26900s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27000s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27100s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27200s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27300s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27400s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27500s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27600s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27700s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27800s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 27900s 1011 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28000s 1010 1 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28100s 1010 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28200s 1010 0 0 0 0 0 1042s 46s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28300s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28400s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28500s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28600s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28700s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28800s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 28900s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29000s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29100s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29200s 1010 0 0 0 0 0 1042s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29300s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29400s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29500s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29600s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29700s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29800s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 29900s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30000s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30100s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30200s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30300s 1010 1 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30400s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30500s 1010 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30600s 1009 1 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30700s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30800s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 30900s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31000s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31100s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31200s 1009 1 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31300s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31400s 1009 0 0 0 0 0 1043s 45s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31500s 1008 1 0 0 0 0 1043s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31600s 1008 0 0 0 0 0 1043s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31700s 1008 0 0 0 0 0 1043s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31800s 1008 0 0 0 0 0 1043s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 31900s 1008 1 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32000s 1008 2 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32100s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32200s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32300s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32400s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32500s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32600s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32700s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32800s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 32900s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33000s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33100s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33200s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33300s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33400s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33500s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33600s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33700s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33800s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 33900s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34000s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34100s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34200s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34300s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34400s 1008 0 0 0 0 0 1044s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34500s 1008 0 0 0 0 0 1045s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34600s 1008 0 0 0 0 0 1045s 44s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34700s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34800s 1009 1 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 34900s 1008 1 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35000s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35100s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35200s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35300s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35400s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35500s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35600s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35700s 1008 1 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35800s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 35900s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36000s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36100s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36200s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36300s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36400s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36500s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36600s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36700s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36800s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 36900s 1008 0 0 0 0 0 1045s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37000s 1008 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37100s 1008 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37200s 1008 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37300s 1008 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37400s 1009 1 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37500s 1009 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37600s 1009 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37700s 1009 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37800s 1009 0 0 0 0 0 1046s 43s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 37900s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38000s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38100s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38200s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38300s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38400s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38500s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38600s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38700s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38800s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 38900s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39000s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39100s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39200s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39300s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39400s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39500s 1009 0 0 0 0 0 1046s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39600s 1009 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39700s 1009 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39800s 1009 1 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 39900s 1009 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40000s 1009 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40100s 1009 1 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40200s 1010 1 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40300s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40400s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40500s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40600s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40700s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40800s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 40900s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41000s 1010 0 0 0 0 0 1047s 42s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41100s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41200s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41300s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41400s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41500s 1010 1 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41600s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41700s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41800s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 41900s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42000s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42100s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42200s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42300s 1010 0 0 0 0 0 1047s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42400s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42500s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42600s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42700s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42800s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 42900s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43000s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43100s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43200s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43300s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43400s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43500s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43600s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43700s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43800s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 43900s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44000s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44100s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44200s 1010 0 0 0 0 0 1048s 41s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44300s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44400s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44500s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44600s 1010 1 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44700s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44800s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 44900s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45000s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45100s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45200s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45300s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45400s 1010 0 0 0 0 0 1048s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45500s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45600s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45700s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45800s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 45900s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46000s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46100s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46200s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46300s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46400s 1010 1 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46500s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46600s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46700s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46800s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 46900s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47000s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47100s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47200s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47300s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47400s 1010 0 0 0 0 0 1049s 40s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47500s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47600s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47700s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47800s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 47900s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48000s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48100s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48200s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48300s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48400s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48500s 1010 0 0 0 0 0 1049s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48600s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48700s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48800s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 48900s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49000s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49100s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49200s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49300s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49400s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49500s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49600s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49700s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49800s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 49900s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50000s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50100s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50200s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50300s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50400s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50500s 1010 0 0 0 0 0 1050s 39s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50600s 1010 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50700s 1010 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50800s 1011 1 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 50900s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51000s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51100s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51200s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51300s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51400s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51500s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51600s 1011 0 0 0 0 0 1050s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51700s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51800s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 51900s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52000s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52100s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52200s 1011 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52300s 1010 1 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52400s 1010 1 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52500s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52600s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52700s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52800s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 52900s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53000s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53100s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53200s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53300s 1010 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53400s 1009 1 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53500s 1009 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53600s 1009 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53700s 1009 0 0 0 0 0 1051s 38s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53800s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 53900s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54000s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54100s 1009 1 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54200s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54300s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54400s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54500s 1009 0 0 0 0 0 1051s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54600s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54700s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54800s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 54900s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55000s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55100s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55200s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55300s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55400s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55500s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55600s 1009 1 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55700s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55800s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 55900s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56000s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56100s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56200s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56300s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56400s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56500s 1009 1 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56600s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56700s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56800s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 56900s 1009 0 0 0 0 0 1052s 37s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57000s 1009 0 0 0 0 0 1052s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57100s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57200s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57300s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57400s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57500s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57600s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57700s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57800s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 57900s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58000s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58100s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58200s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58300s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58400s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58500s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58600s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58700s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58800s 1009 1 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 58900s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59000s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59100s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59200s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59300s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59400s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59500s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59600s 1009 0 0 0 0 0 1053s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59700s 1009 0 0 0 0 0 1054s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59800s 1009 0 0 0 0 0 1054s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 59900s 1009 0 0 0 0 0 1054s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60000s 1009 0 0 0 0 0 1054s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60100s 1009 0 0 0 0 0 1054s 36s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60200s 1009 1 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60300s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60400s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60500s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60600s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60700s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60800s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 60900s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61000s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61100s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61200s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61300s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61400s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61500s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61600s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61700s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61800s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 61900s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62000s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62100s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62200s 1009 0 0 0 0 0 1054s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62300s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62400s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62500s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62600s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62700s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62800s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 62900s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63000s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63100s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63200s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63300s 1009 0 0 0 0 0 1055s 35s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63400s 1010 1 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63500s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63600s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63700s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63800s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 63900s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64000s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64100s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64200s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64300s 1010 1 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64400s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64500s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64600s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64700s 1010 0 0 0 0 0 1055s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64800s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 64900s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65000s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65100s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65200s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65300s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65400s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65500s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65600s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65700s 1010 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65800s 1011 1 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 65900s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66000s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66100s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66200s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66300s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66400s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66500s 1011 0 0 0 0 0 1056s 34s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66600s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66700s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66800s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 66900s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67000s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67100s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67200s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67300s 1011 0 0 0 0 0 1056s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67400s 1011 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67500s 1011 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67600s 1011 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67700s 1011 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67800s 1010 1 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 67900s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68000s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68100s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68200s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68300s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68400s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68500s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68600s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68700s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68800s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 68900s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69000s 1010 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69100s 1009 1 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69200s 1009 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69300s 1009 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69400s 1009 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69500s 1009 1 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69600s 1009 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69700s 1009 0 0 0 0 0 1057s 33s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69800s 1009 0 0 0 0 0 1057s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 69900s 1009 0 0 0 0 0 1057s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70000s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70100s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70200s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70300s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70400s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70500s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70600s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70700s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70800s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 70900s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71000s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71100s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71200s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71300s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71400s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71500s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71600s 1009 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71700s 1008 1 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71800s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 71900s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72000s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72100s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72200s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72300s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72400s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72500s 1008 0 0 0 0 0 1058s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72600s 1008 0 0 0 0 0 1059s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72700s 1008 0 0 0 0 0 1059s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72800s 1008 0 0 0 0 0 1059s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 72900s 1008 0 0 0 0 0 1059s 32s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73000s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73100s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73200s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73300s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73400s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73500s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73600s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73700s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73800s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 73900s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74000s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74100s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74200s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74300s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74400s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74500s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74600s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74700s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74800s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 74900s 1008 1 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75000s 1008 0 0 0 0 0 1059s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75100s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75200s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75300s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75400s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75500s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75600s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75700s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75800s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 75900s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76000s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76100s 1008 0 0 0 0 0 1060s 31s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76200s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76300s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76400s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76500s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76600s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76700s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76800s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 76900s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77000s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77100s 1008 1 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77200s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77300s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77400s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77500s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77600s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77700s 1008 0 0 0 0 0 1060s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77800s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 77900s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78000s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78100s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78200s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78300s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78400s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78500s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78600s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78700s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78800s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 78900s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79000s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79100s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79200s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79300s 1008 0 0 0 0 0 1061s 30s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79400s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79500s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79600s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79700s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79800s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 79900s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80000s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80100s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80200s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80300s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80400s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80500s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80600s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80700s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80800s 1008 0 0 0 0 0 1061s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 80900s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81000s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81100s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81200s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81300s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81400s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81500s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81600s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81700s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81800s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 81900s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82000s 1008 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82100s 1009 1 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82200s 1009 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82300s 1009 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82400s 1009 0 0 0 0 0 1062s 29s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82500s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82600s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82700s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82800s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 82900s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83000s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83100s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83200s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83300s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83400s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83500s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83600s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83700s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83800s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 83900s 1009 0 0 0 0 0 1062s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84000s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84100s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84200s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84300s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84400s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84500s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84600s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84700s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84800s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 84900s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85000s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85100s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85200s 1009 1 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85300s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85400s 1009 0 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85500s 1008 1 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85600s 1008 1 0 0 0 0 1063s 28s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85700s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85800s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 85900s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86000s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86100s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86200s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86300s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86400s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86500s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86600s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86700s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86800s 1008 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 86900s 1007 1 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87000s 1007 0 0 0 0 0 1063s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87100s 1007 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87200s 1006 1 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87300s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87400s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87500s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87600s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87700s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87800s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 87900s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88000s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88100s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88200s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88300s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88400s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88500s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88600s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88700s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88800s 1006 0 0 0 0 0 1064s 27s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 88900s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89000s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89100s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89200s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89300s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89400s 1006 1 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89500s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89600s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89700s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89800s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 89900s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90000s 1006 0 0 0 0 0 1064s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90100s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90200s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90300s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90400s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90500s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90600s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90700s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90800s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 90900s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91000s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91100s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91200s 1006 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91300s 1005 1 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91400s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91500s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91600s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91700s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91800s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 91900s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92000s 1005 0 0 0 0 0 1065s 26s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92100s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92200s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92300s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92400s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92500s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92600s 1005 0 0 0 0 0 1065s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92700s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92800s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 92900s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93000s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93100s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93200s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93300s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93400s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93500s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93600s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93700s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93800s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 93900s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94000s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94100s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94200s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94300s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94400s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94500s 1005 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94600s 1004 1 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94700s 1004 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94800s 1004 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 94900s 1004 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95000s 1004 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95100s 1004 0 0 0 0 0 1066s 25s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95200s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95300s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95400s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95500s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95600s 1004 1 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95700s 1004 1 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95800s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 95900s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96000s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96100s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96200s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96300s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96400s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96500s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96600s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96700s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96800s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 96900s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97000s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97100s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97200s 1004 1 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97300s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97400s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97500s 1004 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97600s 1003 1 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97700s 1003 0 0 0 0 0 1067s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97800s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 97900s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98000s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98100s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98200s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98300s 1003 0 0 0 0 0 1068s 24s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98400s 1003 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98500s 1003 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98600s 1002 1 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98700s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98800s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 98900s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99000s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99100s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99200s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99300s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99400s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99500s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99600s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99700s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99800s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 99900s 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1667m 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1668m 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1670m 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1672m 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1673m 1002 0 0 0 0 0 1068s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1675m 1002 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1677m 1001 1 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1678m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1680m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1682m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1683m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1685m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1687m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1688m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1690m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1692m 1001 0 0 0 0 0 1069s 23s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1693m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1695m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1697m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1698m 1001 1 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1700m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1702m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1703m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1705m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1707m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1708m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1710m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1712m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1713m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1715m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1717m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1718m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1720m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1722m 1001 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1723m 1000 1 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1725m 1000 0 0 0 0 0 1069s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1727m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1728m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1730m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1732m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1733m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1735m 1000 1 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1737m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1738m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1740m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1742m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1743m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1745m 1000 0 0 0 0 0 1070s 22s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1747m 1000 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1748m 999 1 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1750m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1752m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1753m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1755m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1757m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1758m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1760m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1762m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1763m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1765m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1767m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1768m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1770m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1772m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1773m 999 0 0 0 0 0 1070s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1775m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1777m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1778m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1780m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1782m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1783m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1785m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1787m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1788m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1790m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1792m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1793m 999 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1795m 998 1 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1797m 998 0 0 0 0 0 1071s 21s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1798m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1800m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1802m 998 1 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1803m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1805m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1807m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1808m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1810m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1812m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1813m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1815m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1817m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1818m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1820m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1822m 998 0 0 0 0 0 1071s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1823m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1825m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1827m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1828m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1830m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1832m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1833m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1835m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1837m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1838m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1840m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1842m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1843m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1845m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1847m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1848m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1850m 998 0 0 0 0 0 1072s 20s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1852m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1853m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1855m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1857m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1858m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1860m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1862m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1863m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1865m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1867m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1868m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1870m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1872m 998 0 0 0 0 0 1072s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1873m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1875m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1877m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1878m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1880m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1882m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1883m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1885m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1887m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1888m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1890m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1892m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1893m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1895m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1897m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1898m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1900m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1902m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1903m 998 0 0 0 0 0 1073s 19s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1905m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1907m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1908m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1910m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1912m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1913m 998 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1915m 997 1 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1917m 997 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1918m 997 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1920m 997 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1922m 997 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1923m 997 0 0 0 0 0 1073s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1925m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1927m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1928m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1930m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1932m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1933m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1935m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1937m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1938m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1940m 997 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1942m 996 1 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1943m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1945m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1947m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1948m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1950m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1952m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1953m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1955m 996 0 0 0 0 0 1074s 18s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1957m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1958m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1960m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1962m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1963m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1965m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1967m 996 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1968m 995 1 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1970m 995 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1972m 995 0 0 0 0 0 1074s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1973m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1975m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1977m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1978m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1980m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1982m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1983m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1985m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1987m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1988m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1990m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1992m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1993m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1995m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1997m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 1998m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2000m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2002m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2003m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2005m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2007m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2008m 995 0 0 0 0 0 1075s 17s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2010m 995 0 0 0 0 0 1075s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2012m 995 0 0 0 0 0 1075s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2013m 995 0 0 0 0 0 1075s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2015m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2017m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2018m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2020m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2022m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2023m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2025m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2027m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2028m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2030m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2032m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2033m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2035m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2037m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2038m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2040m 995 1 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2042m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2043m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2045m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2047m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2048m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2050m 995 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2052m 994 1 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2053m 994 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2055m 994 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2057m 994 0 0 0 0 0 1076s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2058m 994 0 0 0 0 0 1077s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2060m 994 0 0 0 0 0 1077s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2062m 994 0 0 0 0 0 1077s 16s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2063m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2065m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2067m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2068m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2070m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2072m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2073m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2075m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2077m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2078m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2080m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2082m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2083m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2085m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2087m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2088m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2090m 994 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2092m 993 1 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2093m 993 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2095m 993 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2097m 993 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2098m 993 0 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2100m 992 1 0 0 0 0 1077s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2102m 992 1 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2103m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2105m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2107m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2108m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2110m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2112m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2113m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2115m 992 0 0 0 0 0 1078s 15s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2117m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2118m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2120m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2122m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2123m 992 1 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2125m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2127m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2128m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2130m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2132m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2133m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2135m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2137m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2138m 992 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2140m 991 1 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2142m 991 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2143m 991 0 0 0 0 0 1078s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2145m 991 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2147m 990 1 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2148m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2150m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2152m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2153m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2155m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2157m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2158m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2160m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2162m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2163m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2165m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2167m 990 0 0 0 0 0 1079s 14s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2168m 990 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2170m 990 1 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2172m 990 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2173m 990 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2175m 990 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2177m 990 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2178m 991 1 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2180m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2182m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2183m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2185m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2187m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2188m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2190m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2192m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2193m 991 0 0 0 0 0 1079s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2195m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2197m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2198m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2200m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2202m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2203m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2205m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2207m 991 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2208m 992 2 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2210m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2212m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2213m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2215m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2217m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2218m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2220m 992 0 0 0 0 0 1080s 13s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2222m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2223m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2225m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2227m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2228m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2230m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2232m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2233m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2235m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2237m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2238m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2240m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2242m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2243m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2245m 992 0 0 0 0 0 1080s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2247m 992 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2248m 992 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2250m 992 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2252m 992 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2253m 992 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2255m 991 1 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2257m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2258m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2260m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2262m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2263m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2265m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2267m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2268m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2270m 991 1 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2272m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2273m 991 0 0 0 0 0 1081s 12s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2275m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2277m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2278m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2280m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2282m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2283m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2285m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2287m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2288m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2290m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2292m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2293m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2295m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2297m 991 0 0 0 0 0 1081s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2298m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2300m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2302m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2303m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2305m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2307m 991 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2308m 990 1 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2310m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2312m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2313m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2315m 990 1 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2317m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2318m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2320m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2322m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2323m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2325m 990 0 0 0 0 0 1082s 11s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2327m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2328m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2330m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2332m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2333m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2335m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2337m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2338m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2340m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2342m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2343m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2345m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2347m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2348m 990 0 0 0 0 0 1082s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2350m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2352m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2353m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2355m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2357m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2358m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2360m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2362m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2363m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2365m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2367m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2368m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2370m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2372m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2373m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2375m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2377m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2378m 990 0 0 0 0 0 1083s 10s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2380m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2382m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2383m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2385m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2387m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2388m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2390m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2392m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2393m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2395m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2397m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2398m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2400m 990 0 0 0 0 0 1083s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2402m 990 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2403m 990 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2405m 990 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2407m 990 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2408m 990 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2410m 991 1 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2412m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2413m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2415m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2417m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2418m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2420m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2422m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2423m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2425m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2427m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2428m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2430m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2432m 991 0 0 0 0 0 1084s 9s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2433m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2435m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2437m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2438m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2440m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2442m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2443m 991 1 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2445m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2447m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2448m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2450m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2452m 991 0 0 0 0 0 1084s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2453m 991 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2455m 991 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2457m 990 1 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2458m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2460m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2462m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2463m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2465m 990 1 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2467m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2468m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2470m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2472m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2473m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2475m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2477m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2478m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2480m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2482m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2483m 990 0 0 0 0 0 1085s 8s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2485m 990 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2487m 990 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2488m 990 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2490m 989 1 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2492m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2493m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2495m 989 1 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2497m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2498m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2500m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2502m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2503m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2505m 989 0 0 0 0 0 1085s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2507m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2508m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2510m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2512m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2513m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2515m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2517m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2518m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2520m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2522m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2523m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2525m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2527m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2528m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2530m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2532m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2533m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2535m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2537m 989 0 0 0 0 0 1086s 7s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2538m 989 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2540m 988 1 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2542m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2543m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2545m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2547m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2548m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2550m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2552m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2553m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2555m 988 0 0 0 0 0 1086s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2557m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2558m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2560m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2562m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2563m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2565m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2567m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2568m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2570m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2572m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2573m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2575m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2577m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2578m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2580m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2582m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2583m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2585m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2587m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2588m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2590m 988 0 0 0 0 0 1087s 6s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2592m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2593m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2595m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2597m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2598m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2600m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2602m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2603m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2605m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2607m 988 0 0 0 0 0 1087s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2608m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2610m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2612m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2613m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2615m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2617m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2618m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2620m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2622m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2623m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2625m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2627m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2628m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2630m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2632m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2633m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2635m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2637m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2638m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2640m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2642m 988 0 0 0 0 0 1088s 5s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2643m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2645m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2647m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2648m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2650m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2652m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2653m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2655m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2657m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2658m 988 0 0 0 0 0 1088s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2660m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2662m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2663m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2665m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2667m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2668m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2670m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2672m 988 1 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2673m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2675m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2677m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2678m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2680m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2682m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2683m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2685m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2687m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2688m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2690m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2692m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2693m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2695m 988 0 0 0 0 0 1089s 4s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2697m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2698m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2700m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2702m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2703m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2705m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2707m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2708m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2710m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2712m 988 0 0 0 0 0 1089s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2713m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2715m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2717m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2718m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2720m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2722m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2723m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2725m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2727m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2728m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2730m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2732m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2733m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2735m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2737m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2738m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2740m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2742m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2743m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2745m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2747m 988 0 0 0 0 0 1090s 3s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2748m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2750m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2752m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2753m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2755m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2757m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2758m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2760m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2762m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2763m 988 0 0 0 0 0 1090s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2765m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2767m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2768m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2770m 988 1 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2772m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2773m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2775m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2777m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2778m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2780m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2782m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2783m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2785m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2787m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2788m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2790m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2792m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2793m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2795m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2797m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2798m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2800m 988 0 0 0 0 0 1091s 2s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2802m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2803m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2805m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2807m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2808m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2810m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2812m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2813m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2815m 988 0 0 0 0 0 1091s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2817m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2818m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2820m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2822m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2823m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2825m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2827m 988 1 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2828m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2830m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2832m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2833m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2835m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2837m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2838m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2840m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2842m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2843m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2845m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2847m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2848m 988 1 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2850m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2852m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2853m 988 0 0 0 0 0 1092s 1s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2855m 988 0 0 0 0 0 1092s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2857m 988 0 0 0 0 0 1092s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2858m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2860m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2862m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2863m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2865m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2867m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2868m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2870m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2872m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2873m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2875m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2877m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2878m 988 0 0 0 0 0 1093s 0s +repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem + 20 2880m 988 0 0 0 0 0 1093s 0s +#for i in out/freezing_part_*.nc; do ../../build/extract_aero_particles $i; done; diff --git a/scenarios/7_freezing/out_sese_default1/run_part.spec b/scenarios/7_freezing/out_sese_default1/run_part.spec new file mode 100644 index 000000000..9427d4423 --- /dev/null +++ b/scenarios/7_freezing/out_sese_default1/run_part.spec @@ -0,0 +1,57 @@ +run_type particle # particle-resolved run +output_prefix output/sese_default1/freezing_part # prefix of output files +n_repeat 3 # number of Monte Carlo repeats +n_part 1000 # total number of particles +restart no # whether to restart from saved state (yes/no) + +t_max 172800 # total simulation time (s) +del_t 5 # timestep (s) +t_output 100 # output interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 0.999 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation yes # whether to do coagulation (yes/no) +coag_kernel brown +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_freezing yes # whether to do freezing (yes/no) +do_freezing_CNT yes +#abifm_m 28.13797 +#abifm_c -2.92414 +abifm_m 22.62 +abifm_c -1.35 + +#do_freezing_CNT no +#freezing_rate -.01123456789 + +rand_init 0 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +do_select_weighting no # whether to select weighting explicitly (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/scenarios/7_freezing/output b/scenarios/7_freezing/output new file mode 120000 index 000000000..63142cf94 --- /dev/null +++ b/scenarios/7_freezing/output @@ -0,0 +1 @@ +/data/keeling/a/wenhant2/modeldata/partmc_tests \ No newline at end of file diff --git a/scenarios/7_freezing/plot.gnuplot b/scenarios/7_freezing/plot.gnuplot new file mode 100644 index 000000000..bfd023276 --- /dev/null +++ b/scenarios/7_freezing/plot.gnuplot @@ -0,0 +1,13 @@ +array files = ['01', '02', '03', '04', '05', '06', '07'] +a=system("ls -1 *.txt | cut -d_ -f4") +array SUM[|files|] +do for [i=1:|files|] { + stats 'freezing_part_0001_000000'.files[i].'_aero_particles.txt' using 6 nooutput + SUM[i] = STATS_sum +} +set style fill solid +set boxwidth 0.5 +set xlabel 'output step' +set ylabel '# frozen' +set yrange [0:] +plot SUM using 1:2:xticlabels(files[column(0)+1]) with boxes \ No newline at end of file diff --git a/scenarios/7_freezing/plot_freezing.py b/scenarios/7_freezing/plot_freezing.py new file mode 100755 index 000000000..b1219d178 --- /dev/null +++ b/scenarios/7_freezing/plot_freezing.py @@ -0,0 +1,141 @@ +#!/usr/bin/env python +import os +import glob +import netCDF4 as nc +import numpy as np +import matplotlib.pyplot as plt +from pdb import set_trace + + +log_show = False +draw_relhum = False +#draw_ice_type = "num_conc" +draw_ice_type = "mix" +#OutDir = "out_base" +#OutDir = "out_coag" +#OutDir = "out_cold" +#OutDir = "out_poster" +#OutDir = "out_case1" +OutDir = "output/evaporation_base" + +fontsize_label = 15 +assert draw_ice_type in ["num_conc", "mix"] +t_max = 26 +t_output = 1 +nFile = int(t_max / t_output) + 1 + +temperature_data = [] +pressure_data = [] +relhum_data = [] +freezing_data = [] +P_frozen_data = [] +num_conc_data = [] +freezing_total = [] +freezing_total2 = [] +freezing_mass_data = [] +freezing_mass_data2 = [] + +#t_list = list(range(1, 864 *2)) +id_file_list = np.array(list(range(1, nFile + 1))) +t_list = (id_file_list - 1) * t_output +isFirst = True +for id_file in id_file_list: + fileName = OutDir + "/freezing_part_0001_" + str(id_file).zfill(8) + ".nc" + ncf = nc.Dataset(fileName) + part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) + p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) + num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) + particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) + temperature = float(ncf.variables["temperature"][0].filled(np.nan)) + relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) + pressure = float(ncf.variables["pressure"][0].filled(np.nan)) + + freezing_data.append(part_frozen) + P_frozen_data.append(p_frozen) + num_conc_data.append(num_conc) + freezing_total.append(int(np.sum(p_frozen * num_conc))) + freezing_total2.append(int(np.sum(part_frozen * num_conc))) + freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) + freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) + + temperature_data.append(temperature) + relhum_data.append(relhum * 100) + pressure_data.append(pressure) + + +""" +freezing_data = np.array(freezing_data) +P_frozen_data = np.array(P_frozen_data) +num_conc_data = np.array(num_conc_data) +freezing_total = np.array(freezing_total) +freezing_total2 = np.array(freezing_total2) +""" +temperature_data = np.array(temperature_data) +relhum_data = np.array(relhum_data) +pressure_data = np.array(pressure_data) +freezing_mass_data = np.array(freezing_mass_data) +freezing_mass_data2 = np.array(freezing_mass_data2) + +air_density_data = pressure / (286 * temperature_data) +mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) +mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) + +f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) +f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) +P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) +P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) + +#freezing_data = np.array(freezing_data) +#set_trace() +#freezing_total = freezing_data.sum(axis = 1) + +#fig = plt.figure(figsize = (12, 10)) +fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize = (12, 10), sharex = True) +#ax1 = fig.add_subplot(3, 1, 1) +ax1.plot(t_list, temperature_data, color = "red") +ax1.plot(t_list, np.full((len(t_list)), 273.15), color = "red" if draw_relhum else "blue", linestyle = "dashed") +#ax1.set_xlabel("time (s)") +ax1.set_ylabel("Temperature (K)", color = "red" if draw_relhum else "black", fontsize = fontsize_label) +ax1.grid() +if draw_relhum: + ax1t = ax1.twinx() + ax1t.plot(t_list, relhum_data, color = "blue") + ax1t.set_ylabel("Relative humidity (%)", color = "blue", fontsize = fontsize_label) + +#ax2=fig.add_subplot(3, 1, 2) +if draw_ice_type == "num_conc": + #ax2.plot(t_list, np.log10(freezing_total) if log_show else freezing_total, label = "probability", color = "orange") + ax2.plot(t_list, np.log10(freezing_total2) if log_show else freezing_total2, label = "true false", color = "blue") + ax2.set_ylabel("frozen concentration " + ("10^* (m^-3)" if log_show else "(m^-3)"), fontsize = fontsize_label) +else: + #ax2.plot(t_list, mixing_ratio_ice * 1000, label = "probability", color = "orange") + ax2.plot(t_list, mixing_ratio_ice2 * 1000, label = "true false", color = "blue") + ax2.set_ylabel("ice mixing ratio (g/kg)", fontsize = fontsize_label) +ax2.grid() +#ax2.set_xlim([t_list[0], t_list[-1]]) +#ax2.set_xlabel("time (s)") + +ax2.legend() + +#ax3 = fig.add_subplot(3, 1, 3) +if log_show: + ax3.plot(t_list, np.log10(f_ufz_mean), color = "red") + ax3.fill_between(t_list, np.log10(f_ufz_mean - f_ufz_std), np.log10(f_ufz_mean + f_ufz_std), alpha = 0.1, color = "red", edgecolor = None) + +else: + #ax3.plot(t_list, f_ufz_mean, color = "red") + #ax3.fill_between(t_list, f_ufz_mean - f_ufz_std, f_ufz_mean + f_ufz_std, alpha = 0.1, color = "red", edgecolor = None) + ax3.plot(t_list, P_frz_mean, color = "red") + ax3.fill_between(t_list, P_frz_mean - P_frz_std, P_frz_mean + P_frz_std, alpha = 0.1, color = "red", edgecolor = None) + + ax3.set_ylim([-0.05, 1.05]) +#ax2.set_xlim([t_list[0], t_list[-1]]) +ax3.grid() +ax3.set_xlabel("time (s)", fontsize = fontsize_label) +ax3.set_ylabel("frozen ratio" + (" (10^*)" if log_show else ""), fontsize = fontsize_label) + +fig.subplots_adjust(hspace = 0.1) +fig.suptitle("Immersion freezing (partMC-ABIFM)", fontsize = 20) + +plt.show() + diff --git a/scenarios/7_freezing/plot_temp1.py b/scenarios/7_freezing/plot_temp1.py new file mode 100755 index 000000000..cae99efdf --- /dev/null +++ b/scenarios/7_freezing/plot_temp1.py @@ -0,0 +1,86 @@ +#!/usr/bin/env python +import os +import glob +import netCDF4 as nc +import numpy as np +import matplotlib.pyplot as plt +from pdb import set_trace + +sim_days = 2 +log_show = False +#draw_ice_type = "num_conc" +#OutDir = "out_base" +#OutDir = "out_coag" +#OutDir = "out_cold" +#OutDir = "out_poster" +#OutDir = "out_poster2" +OutDir = "." +fontsize_label = 15 +caseName = "out_case2" + +temperature_data = [] +pressure_data = [] +relhum_data = [] +freezing_data = [] +P_frozen_data = [] +num_conc_data = [] +freezing_total = [] +freezing_total2 = [] +freezing_mass_data = [] +freezing_mass_data2 = [] + +t_list = np.array(list(range(1, 864 *sim_days))) +isFirst = True +for t in t_list: + fileName = OutDir + "/" + caseName+ "/freezing_part_0001_" + str(t).zfill(8) + ".nc" + ncf = nc.Dataset(fileName) + part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) + p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) + num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) + particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) + temperature = float(ncf.variables["temperature"][0].filled(np.nan)) + relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) + pressure = float(ncf.variables["pressure"][0].filled(np.nan)) + + freezing_data.append(part_frozen) + P_frozen_data.append(p_frozen) + num_conc_data.append(num_conc) + freezing_total.append(int(np.sum(p_frozen * num_conc))) + freezing_total2.append(int(np.sum(part_frozen * num_conc))) + freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) + freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) + + temperature_data.append(temperature) + relhum_data.append(relhum * 100) + pressure_data.append(pressure) + + +temperature_data = np.array(temperature_data) +relhum_data = np.array(relhum_data) +pressure_data = np.array(pressure_data) +freezing_mass_data = np.array(freezing_mass_data) +freezing_mass_data2 = np.array(freezing_mass_data2) + +air_density_data = pressure / (286 * temperature_data) +mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) +mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) + +f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) +f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) +P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) +P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) + +fig = plt.figure(figsize = (12, 6)) +ax = fig.add_subplot(1, 1, 1) +ax.plot(t_list * 100 / 3600, mixing_ratio_ice * 1000, label = "Ice crystals", color = "blue") +ax.set_ylabel("Mixing ratio of ice (g/Kg)", color = "blue", fontsize = 15) +axt = ax.twinx() +axt.plot(t_list * 100 / 3600, temperature_data - 273.15, label = "temperature", color = "red") +axt.set_ylabel("Temperature (˚C)", color = "red", fontsize = 15) +axt.plot(t_list * 100 / 3600, np.full((len(t_list)), 0), linestyle = "dashed", color = "grey") +ax.set_xlabel("time (hour)", fontsize = 15) +ax.grid() +#ax.legend() +plt.show() + + diff --git a/scenarios/7_freezing/pressure.dat b/scenarios/7_freezing/pressure.dat new file mode 100644 index 000000000..c034ea450 --- /dev/null +++ b/scenarios/7_freezing/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 diff --git a/scenarios/7_freezing/pressure.dat.bck b/scenarios/7_freezing/pressure.dat.bck new file mode 100644 index 000000000..07215617a --- /dev/null +++ b/scenarios/7_freezing/pressure.dat.bck @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 +pressure 1e5 diff --git a/scenarios/7_freezing/profile.sh b/scenarios/7_freezing/profile.sh new file mode 100755 index 000000000..80ad4255d --- /dev/null +++ b/scenarios/7_freezing/profile.sh @@ -0,0 +1,2 @@ +#!/bin/bash +gprof ../../build/partmc gmon.out > analysis.txt diff --git a/scenarios/7_freezing/run_part.spec b/scenarios/7_freezing/run_part.spec new file mode 100644 index 000000000..d9eb07313 --- /dev/null +++ b/scenarios/7_freezing/run_part.spec @@ -0,0 +1,59 @@ +run_type particle # particle-resolved run +output_prefix output/chiexp_0.15/freezing_part # prefix of output files +n_repeat 10 # number of Monte Carlo repeats +n_part 1000 # total number of particles +restart no # whether to restart from saved state (yes/no) +#restart_file output/chiexp_0.15/restart.nc + +t_max 3600 # total simulation time (s) +del_t 10 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +#coag_kernel brown +do_condensation yes # whether to do condensation (yes/no) +do_init_equilibrate yes # whether to initially equilibrate water (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_freezing yes # whether to do freezing (yes/no) +do_freezing_CNT yes +do_coating no +#coating_spec OIN +#coating_ratio 1.0 + +#do_freezing_CNT no +#freezing_rate -.01123456789 + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/scenarios/7_freezing/run_scripts/freezing_run_chi.sh b/scenarios/7_freezing/run_scripts/freezing_run_chi.sh new file mode 100755 index 000000000..71f631c11 --- /dev/null +++ b/scenarios/7_freezing/run_scripts/freezing_run_chi.sh @@ -0,0 +1,72 @@ +#!/bin/bash + +set -e +set -v +cd ${0%/*} + +add_pound() { + spec_file=$1 + head=$2 + N=`grep -n "^$head" $spec_file | cut -d: -f1` + sed -i "$N s/^/#/" $spec_file +} + +sub_pound() { + spec_file=$1 + head=$2 + N=`grep -n "^#$head" $spec_file | cut -d: -f1` + sed -i "$N s/^#//" $spec_file +} + +comment_for_restart() { + spec_file=$1 + add_pound $1 gas_data + add_pound $1 gas_init + add_pound $1 aerosol_data + add_pound $1 do_fractal + add_pound $1 aerosol_init + add_pound $1 do_select_weighting + add_pound $1 weight_type + +} + +uncomment_for_restart() { + spec_file=$1 + sub_pound $1 gas_data + sub_pound $1 gas_init + sub_pound $1 aerosol_data + sub_pound $1 do_fractal + sub_pound $1 aerosol_init + sub_pound $1 do_select_weighting + sub_pound $1 weight_type + +} + +caseName=$1 +chi=$2 +t_max=$3 +frzDir=/data/nriemer/a/wenhant2/modeling/partmc/scenarios/7_freezing +cd $frzDir + +mkdir -p $frzDir/output/$caseName +cp -p $frzDir/run_part.spec $frzDir/output/$caseName +cp -p $frzDir/*.dat $frzDir/output/$caseName + +sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" $frzDir/run_part.spec + +sed -i "/t_max /ct_max 0 # total simulation time (s)" $frzDir/run_part.spec +../../build/partmc run_part.spec +$frzDir/aero_init_tools/run_setchi.py $chi $frzDir/output/${caseName}/freezing_part_0001_00000001.nc $frzDir/aero_init_comp.dat + +sed -i "/restart /crestart yes # whether to restart from saved state (yes/no)" $frzDir/run_part.spec +sub_pound $frzDir/run_part.spec restart_file +sed -i "/restart_file /crestart_file output/${caseName}/restart.nc" $frzDir/run_part.spec +sed -i "/t_max /ct_max $3 # total simulation time (s)" $frzDir/run_part.spec +comment_for_restart $frzDir/run_part.spec +sleep 3 + +../../build/partmc run_part.spec +uncomment_for_restart run_part.spec + +sed -i "/restart /crestart no # whether to restart from saved state (yes/no)" $frzDir/run_part.spec +add_pound $frzDir/run_part.spec restart_file diff --git a/scenarios/7_freezing/run_scripts/gmon.out b/scenarios/7_freezing/run_scripts/gmon.out new file mode 100644 index 0000000000000000000000000000000000000000..899d97e6277afc737ea9a03556f8bb8d1dd491e9 GIT binary patch literal 729272 zcmeIwEpJm%7{KvcV8Al53SR6a35b3GM8y~o5LGiXg^f%Qwk0#*7BCo+S_EWi`wx)#CPxK{@$p#l6TI1uEd#$mp)ZuJL3GuO6-l>*&i1N<6?0&-@SIDnTWL; zH5c>F+J|pNynC#o)OwtE)}Fl+v9@z9Vr^zGVhy?ZB+q=Ykgo~3x0M%{XDhMw{9G}5 z?Zh?h?Cj)t>vq1TxZlrDl`c%b6(-B9=2#EaLOs`I={@*onpcZ-6aE-B`@V@f6o0zTL_*Q|v`7XQtRb do@ZX)K9@dc`r-yBa;*L8HcsaFJ9dsh{s8jAoY?>X literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/run_scripts/multi_run.sh b/scenarios/7_freezing/run_scripts/multi_run.sh new file mode 100755 index 000000000..97707173a --- /dev/null +++ b/scenarios/7_freezing/run_scripts/multi_run.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +expName=chiexp +t_max=3600 +frzDir=/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/ +#mkdir -p $frzDir/output/$expName +#for chi in 0.2 0.4 0.6 0.8 +for chi in 0.001 0.01 0.05 0.1 0.15 +#for chi in 0.999 +do + caseName=${expName}_${chi} + echo $caseName + ./freezing_run_chi.sh $caseName $chi $t_max +done + diff --git a/scenarios/7_freezing/run_scripts/return_spec.sh b/scenarios/7_freezing/run_scripts/return_spec.sh new file mode 100755 index 000000000..486c27b65 --- /dev/null +++ b/scenarios/7_freezing/run_scripts/return_spec.sh @@ -0,0 +1,45 @@ +#!/bin/bash +add_pound() { + spec_file=$1 + head=$2 + N=`grep -n "^$head" $spec_file | cut -d: -f1` + sed -i "$N s/^/#/" $spec_file +} + +sub_pound() { + spec_file=$1 + head=$2 + N=`grep -n "^#$head" $spec_file | cut -d: -f1` + sed -i "$N s/^#//" $spec_file +} + +comment_for_restart() { + spec_file=$1 + add_pound $1 gas_data + add_pound $1 gas_init + add_pound $1 aerosol_data + add_pound $1 do_fractal + add_pound $1 aerosol_init + add_pound $1 do_select_weighting + add_pound $1 weight_type + +} + +uncomment_for_restart() { + spec_file=$1 + sub_pound $1 gas_data + sub_pound $1 gas_init + sub_pound $1 aerosol_data + sub_pound $1 do_fractal + sub_pound $1 aerosol_init + sub_pound $1 do_select_weighting + sub_pound $1 weight_type + +} + +frzDir=/data/nriemer/a/wenhant2/modeling/partmc/scenarios/7_freezing +cd $frzDir +uncomment_for_restart run_part.spec + +sed -i "/restart /crestart no # whether to restart from saved state (yes/no)" $frzDir/run_part.spec +add_pound $frzDir/run_part.spec restart_file diff --git a/scenarios/7_freezing/temp.dat b/scenarios/7_freezing/temp.dat new file mode 100644 index 000000000..46606ceb3 --- /dev/null +++ b/scenarios/7_freezing/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +temp 270.000 269.250 268.500 267.750 267.000 266.250 265.500 264.750 264.000 263.250 262.500 261.750 261.000 260.250 259.500 258.750 258.000 257.250 256.500 255.750 255.000 254.250 253.500 252.750 252.000 251.250 250.500 249.750 249.000 248.250 247.500 246.750 246.000 245.250 244.500 243.750 243.000 242.250 241.500 240.750 240.000 239.250 238.500 237.750 237.000 236.250 235.500 234.750 234.000 233.250 232.500 231.750 231.000 230.250 229.500 228.750 228.000 227.250 226.500 225.750 225.000 diff --git a/scenarios/7_freezing/temp.dat.bck b/scenarios/7_freezing/temp.dat.bck new file mode 100644 index 000000000..55bf326c7 --- /dev/null +++ b/scenarios/7_freezing/temp.dat.bck @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 +temp 274 diff --git a/scenarios/7_freezing/visual_tools/Bench.py b/scenarios/7_freezing/visual_tools/Bench.py new file mode 100755 index 000000000..40aede1e4 --- /dev/null +++ b/scenarios/7_freezing/visual_tools/Bench.py @@ -0,0 +1,198 @@ +#!/usr/bin/env python +# Authors: +# Wenhan TANG - 01/2021 (Original version) +# Wenhan TANG - 05/2021 (Add multicases_subplot_scheme class) +# ... +if __name__ == "__main__": + print("This script can only be imported by another python script using \"import Bench\"") + exit() + +import os +import numpy as np +import matplotlib as mpl +import matplotlib.pyplot as plt +from matplotlib.backends.backend_pdf import PdfPages +mpl.use("PDF") + +class multicases_subplot_scheme(object): + def __init__(self, Nrow_max, Ncol_max, span_dim = None, auto_reverse = True, remain_adjust = True):#, prev = "col"): + self.Nrow_max = Nrow_max + self.Ncol_max = Ncol_max + if span_dim is None: + span_dim = "row" if Nrow_max >= Ncol_max else "col" + span_dim = span_dim.lower() + assert span_dim in ["row", "col"] + self.span_dim = span_dim + self.auto_reverse = auto_reverse + self.subloc_generator = None + self.remain_adjust = remain_adjust + #prev = prev.lower() + #assert prev in ["row", "col"] + #self.prev = prev + + def layout(self, Ncase): + self.Nsub_max = self.Nrow_max * self.Ncol_max + self.Ncase = Ncase + if self.Ncase >= self.Nsub_max: + layout_Nrow = self.Nrow_max + layout_Ncol = self.Ncol_max + else: + if self.span_dim == "row": + layout_Nrow = int(Ncase / self.Ncol_max) + (0 if np.mod(Ncase, self.Ncol_max) == 0 else 1) + layout_Ncol = self.Ncol_max + else: + layout_Nrow = self.Nrow_max + layout_Ncol = int(Ncase / self.Nrow_max) + (0 if np.mod(Ncase, self.Nrow_max) == 0 else 1) + if self.auto_reverse and (self.Nrow_max - self.Ncol_max) * (layout_Nrow - layout_Ncol) < 0: + layout_Nrow, layout_Ncol = layout_Ncol, layout_Nrow + self.layout_Nrow = layout_Nrow + self.layout_Ncol = layout_Ncol + self.layout_Nsub = layout_Nrow * layout_Ncol + #self.Ncase = Ncase + + def subloc_gen_unlimited(self): + ic = 0 + while True: + ic += 1 + if ic > self.layout_Nsub: + # Just turn to next page + ic = 1 + isNextPage = True + else: + isNextPage = False + #isNextPage = True if ic == self.layout_Nsub else False + yield isNextPage, self.layout_Nrow, self.layout_Ncol, ic + + def subloc_gen_limited(self): + icase = 0 + ic = 0 + Ncase_orig = self.Ncase + while(icase < Ncase_orig): + ic += 1 + if ic > self.layout_Nsub: + # Just turn to next page + self.layout(Ncase_orig - icase) + ic = 1 + isNextPage = True + else: + isNextPage = False + #isNextPage = True if ic == self.layout_Nsub else False + icase += 1 + yield isNextPage, self.layout_Nrow, self.layout_Ncol, ic + + def get_subloc(self): + if self.subloc_generator is None: + self.subloc_generator = self.subloc_gen_limited() if self.remain_adjust else self.subloc_gen_unlimited() + return next(self.subloc_generator) + +class BenchPlots(object): + + def __init__(self, figsize = (8, 11), lsc = None): + + if lsc == "l": + figsize = (11, 8) + if lsc == "p": + figsize = (8, 11) + + self.figsize = figsize + self.cfig = plt.figure(figsize = self.figsize) + + def change_pageSize(self, figsize): + self.figsize = figsize + plt.close(self.cfig) + self.cfig = plt.figure(figsize = self.figsize) + + def page_reverse(self): + figsize = self.figsize[1], self.figsize[0] + self.change_pageSize(figsize = figsize) + + def close(self): + pass + + def __del__(self): + pass + + def print(self): + pass + + def clear(self): + self.cfig.clf() + + def next_page(self): + + self.print() + self.clear() + + #def vpage(self, xs, ys, xl, yl, kwargs = None): + def vpage(self, xs, ys, xl, yl, **kwargs): + #if kwargs == None: + # return self.cfig.add_axes([xs,ys,xl,yl]) + #else: + return self.cfig.add_axes([xs,ys,xl,yl], **kwargs) + + def subplot(self, nrows, ncols, index, kwargs = None): + if kwargs == None: + return self.cfig.add_subplot(nrows, ncols, index) + else: + return self.cfig.add_subplot(nrows, ncols, index, **kwargs) + + def subplots(self, nrows = 1, ncols = 1, **kwargs): + return self.cfig.subplots(nrows, ncols, **kwargs) + + def subplot2grid(self, shape, loc, rowspan = 1, colspan = 1, kwargs = None): + if kwargs == None: + return plt.subplot2grid(shape, loc, rowspan = rowspan, colspan = colspan, fig = self.cfig) + else: + return plt.subplot2grid(shape, loc, rowspan = rowspan, colspan = colspan, fig = self.cfig, **kwargs) + + +class BenchPlots_pdf(BenchPlots): + + def __init__(self, figsize = (8, 11), lsc = None, save_name = "bench"): + + BenchPlots.__init__(self, figsize, lsc) + self.pdf = PdfPages(save_name + ".pdf") + self.pdf_open = True + + def close(self): + self.pdf.close() + self.pdf_open = False + + def __del__(self): + #self.pdf.close() + if self.pdf_open: + self.close() + + def print(self): + self.pdf.savefig(self.cfig) + + +class BenchPlots_png(BenchPlots): + + def __init__(self, figsize = (8, 11), lsc = None, save_name = "bench"): + + BenchPlots.__init__(self, figsize, lsc) + self.pngdir = save_name + if not os.path.exists(self.pngdir + "__"): + os.makedirs(self.pngdir + "__") + else: + os.system("rm -f " + self.pngdir + "__/BenchPlots*.png") + self.png_drawing = True + self.pngNum = 1 + + def close(self): + pdfName = self.pngdir + ".pdf" + os.system("convert " + self.pngdir + "__/BenchPlots*.png " + pdfName) + os.system("rm -f " + self.pngdir + "__/BenchPlots*.png") + os.system("rmdir " + self.pngdir + "__") + + #def __del__(self): + # if self.png_drawing: + # self.close() + + def print(self): + plt.savefig(self.pngdir + "__/BenchPlots_" + str(self.pngNum).zfill(3) + ".png", dpi = 300) + self.pngNum += 1 + + + diff --git a/scenarios/7_freezing/visual_tools/__init__.py b/scenarios/7_freezing/visual_tools/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6cc6b2cf9f242c4bd1d3f42f21132753e56c30a GIT binary patch literal 6461 zcmbtY+ix6K8K3)(*Xy<8xVbe=w`qYcYHess%cU(*T2d&m3dAjFK^l$sjO|HwXSZj@ zNxa&KOUe^UpFq5TWJ?Iih_TeM#!8%D!dPtGOQpoiI*G%dBHY~_4x0vK0$9~(_am6VU%RST+&+*6CHg1n?m*~Z1r zUOS6hVH%}Dy0_J9ce5aE?M9ubvDxzQ<R>q#8SJ7tO zarKHa6H{3a?16n?9U9D)eb-1Yzi<2!V===XIG~O)K;3~0>L~*ZIgQ-b-Fvy+>bC2a zcCn7;%Jow2H_!ph@1ulXDY@4N>G-_|_64&ubsF-?@WC`TR(96i4e6XRyEZj(R3}Ey|xN$E^ zcEcolW#g8JJ>3YCu)Uwg>Bg(UwvM7c!S~}D4Nla=0oH}RR2I>VBBUh*9f;If`brl zGf`aU+5Z57ylpVnhw~}6Nce+YMoiDb-{q9~CP{Sq_DA}ZfFV!7g#S;1~ z$$1j^u0laXOY{n=xmSGaIh4~YAXUhavh>Ze^&+STdIeIYY^!F!cDihf54E_h(T_Gy z>9&y4H$i@3DD#220Ap148^!}uBxKxiG~Cn!nxK_f%7JV}y1*LJ-*!HP1O3RUyA4g? zHZ|4nM%~sIkxzDp2JSbv;#OXc(?)bZqdO}0O0y_7yf!hiU@vLMoft0fE9e%5wtnuI z7B_D?mWQ-zS^w^@pT6mNADe-Iiamy)he`nfVBi+%Yv5s^K(7y=rhsI)bwKjmz&L>V z49p7#;{d?{NR9yH06>m5>6gSXoPkvUReUe4P~k-BhOh~0n>Xrip%8-IC89D`4RjH} zrYrtcKh1JkG%@Jvct>C6XaRD9=IRsxLoBajSjw@)(h*f6o>hxw$MUUJbLC(Cmp&7w z!%xm2N(G}Hh`V?R1>z|F{0vH_t`N6FBZ0vl*oSl>Mn;t26mA(uW&_)-V3s&cO_kTr zfaFdBg*h?{n>n`2@=k;>BhL92#-?=fW%B}^-3zDhV=}33H#RrxJ{@QhcA_B2%LvC^ zwby335(FQ?+ZH|g3^@|PkgbBjt1L};8pE%tS)7n^M?QG+m;E(=sd7eoXm&F{+T%5( zGy@sO;LD#m1}~{9VzIB5)e7Euddwj9nDML8B6Fi3%S`VerLTa%I_Tm(SOH?TvQe(UQHTS9d`&nC zYJvNRQ6AA9OL>jlWKgbSx_%KPH+%XE$dAmtv>orHaX*5Oe3?CVubt%{8uxURJ1rE3 z-elO_#&KzaKOLvYsfj`XJ(Sz0vRi9r|LkOk^8+5Wcf7mLqe3^xUBKR9&9rvxNOV@2 zQ#-O6n)(g}CewNyBzIfwE<(kZ*suX|WEC1LBW797ms>al>_kBiZt)g&uP|P8nJyoU zUz%e4*w7gZoZto=Kh3{%o%lL8Dt1Qa zPe~q_hrF?ju!0FuyP9?jC(k*MQ3az=-^G}e-@++jdQs^-eNmnw;iwHRiTuRUUqiqC zI?24H7wEJ_pZ76D)Wf$bW`Au8)$x!PWAW%m7tZ>3ktAAi=hRpp*#^#zvu(!4!2P57 z38IEbb%cW-DiwtHqqOb~4;=T?rnQfBzm2?|dw1@IdM7=u&F)<)>d&|yVY=+hz$BeB z9FjXGkqsp_$WsUglIklUhAPz)umKGP#)YslvtlXgFqJWa)Zg+O1DV6i-Ez zyvyoIASA3F*+YYSA0z9fxpsBTnkJ{6iM@OWvwzFA_^>1P;`vU+)ogDe&HT8{Ye*@z zZ)_jsQ|*Ixu{diN$<7qpr(4BOvB0cV$oqzs*|(hoJcrRyp2sycy`0$x-lT3CNf|A8 z=49J>gYPdQ1wN*xlyHO~P5 zLQtz9RXhT$;=hLcxFIGx^9_*}K%)@_#A8)mis*^_A1^d`pW4>%B@0*adE)fLA7Av=CV@)I@` z_l0H&j-`RS>2WxyvwuZOc~j$^cMWOQ7XXO)zF_QBd47`^I#iU5k7>?B^8oMQhrobp zL9Kmc@et_nLC<>w-fZY-OO1YYW{bgNs(v5dH`$3_GO-K3Aot=T!g+Et(l;?gHk;dN zrZrVKcl+CMyFJ(8(aQgZBo6OI$o#}6#m@B)Fb1*vd1S}qrr5Ux%6X>!L(KRy7a)>i z+KZL4W^4Uy@i|V-9jI_7^1;DuuhZMtPqDe&2{WGE+VNJ??)2LEnMniQX4wU`mRz>q ze0HjTD{S3~5|yqG3la|rVbk8jyR+Bbx*fGLc{3=?i|$5Pn^K3dlgj-!i?@rnf&4JC ayLc%yeapu!xPpJ#T(MT(TX}2kss93ty)tb8 literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27a8aefc3444d9cf32cbb8a73a840bbcd84ac662 GIT binary patch literal 179 zcmd1j<>g`kf-f6iCWGk5AOaaM0yz#qT+9L_QW%06G#UL?G8BP?5yY=B{glL#ME$&? z%+%b}BK<`D^3=SH#JmzC{oMSN)SS$`bp3+FqLSQX{o>@*yu_l+{9=9c__U(b)GCl% tS!Qu*VorQXetu4|etdjpUS>&ryk0@&Ee;!?{?eROJCJ?FOhAH#0RZE;F5dtE literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..327652b28c32aff48858b5f1deeb6c3188142ce8 GIT binary patch literal 1613 zcmbVMO>f&q5ZzsVNKxdVN!>WDQ#S?d6hZ;ZX>v52egwG`Fbeom2xy57my+2~q`FJT zl0qGVIM)Kb=U@T7=*Q#_?6rr$$kB%YxwLO6$+hFahc3a#S#oyw&6^o!3kx-d@$7b{ z-a3r^O_S3D@7TAv%?3a*#S_-z>auc_d%#-)mZyAJj;g5Y0c*MHlB(h9DZaxR^&_le z+ph_uSFgScU9x7w$FqX_N8CmMa(2iIuDD_^#HS1vQ-Z7;Y|KYqA$}A8y({SZ2RxTq z;ViSZP)^|~cabUYr6}CL_#d2uJ}CLyM;vDz{exlMNOhvl-EzFS-w@W5N!&@Tw;!u~ zx8Yck_N>#5Q|mmEy5U=QH#WKTXqmA>_N^OcQQP{D_oeO_TZd~9r+K8G$YjFwRh;y0 zr>SHvo2ibYZls&CxgVvwGR?nf?u0t-<)$f9nG8&9ns447gBa=K@*9G8?&t zd&tKOD8@{PkvH-SukhOf!aCcU4lW5b99<>*5&-(iexsr<(~CO66@rfdtttWtNS#)N zET}g#WWUsI3fJIjYcmIIMq3+#6@H6f<5jLd!6c-#&Id6eQ7G)=dw_x+vN0P`&4>fk z&I9(GW9FQi3HYG?3NaQO{s_t4KC`KqZMs97E&@7m`^6ve92-98e~RCsLrHnUt%EX{ z2rJe%tk=)u@bS5THWSoRn00$wq{T7qzQ~4a-Ao1jL_Ufr<3W;j);E(Zl!@7bF<)_x zmxt9QubXpTHH3$LE%NnAWBMIc`4wDs z?sC0`>6u_pXI5Xw*Nd{Gm*6lx_y(+r(93vOZ}5SHl);w%EAW}-Ver56pueD#ZxN7y z`l}PGoKi`b2NEs)C19>?No}U>)J8L{!l6|e%ypd^7wCG1ICY1?e09M0@}wAz(qd-Sm6vE^M!wqsdVq_ri>suHgsvg2f8hvv@Z&T=&` zU2^r9a0(-m`?S(F4f-&OVimV&l>!Y46h#{t1)BCxfuKbT7zX&K4T7RjivVej^oP+{ z{mvyh!x`<`QqWz@<>le!x%ZxP?s>8`GGa>jd-n_f!Mra>(hun-{ioq(0YC2~8YVHh zE>&c4RVpg3N?mJc6-|zwWhxoK)VkitR;YVhtjr$7bqjll z?Zg`+6X)W&}oQRoW^so!}Uk1w6ZMT$f~tdMrDOtCg!!YZBz7^m?(Y2I_jA z8P{c&o0Ym+py7#mLFP+zT`vUMby=3qFZv^NFYu1Kgkg+PJ5JCT^91#QbH1zHwk896 z(UP@wGeIU^R|fBl1=>;IS{-N7n#6w}GiAg)3SkaUi zSp;kg!Nkg@<8@@akU;dO3IF-`{H+Y@$9r2@9#Bv}zAN}MxF5aJgIob7CV|rK{S+m;U`A716Co|t#^Q}{z$x^koR&VZOr6s4d+*)h0ot=#J;9RrH!F4H=t(za; zx^=5ljD)3Bg|L*W+_8O!&2{qPwrMwKT;~shI*Sj%kHJn zpplCh7%D9<)Y`Vc66($+*YmxKz+z!N?KPh(G^?@f)}7DeVW@d6?uU8LZnW!;Mc}YE zk3|!UQ5mmYcl}Ve+ij=GLbdKRE9Rn=EGYF#g19oZD6m;=hxf;AVa~F>R`+`lF-16r z{W7b%;#ALBzKcB=)J8KmUnW2_f}z{=+*Z>I4QBiH5}m9}o4ZXvR6U=Ub?nEfFLTn1 zq5k}uf70dAW(8?Rk_C%t`6x!+koYcKK6-hc5Y9Kb>ogobZ_i(Jnk#nGKQw=~%H6i_ z&D%}8e%W)q`A4iCx1V;J)s+|OEj+&9dTVyw@>{LCH&4u%YhMlx%W|8pZ&?M*;hjOF zE4o~i$HlLpY?Dp7AnRyHMNfINfaf}3rc#m(!035VF_Z%CbcOB=WmKL7JP{e8U*?jD zsw7p(AMv`UW%l4Eklu)-pCn$!Da>|dA^p%4kbZ;Y`G&k$R`_;|<`ZbpznA(usUcED z&2IF<(Q4hXn^wY#BY=5CdQEJpAZxce+fqt!Zg6;&lwk5leNvD@ArhiM!4k17s3T=o zx`4&_GL$4#A}KLClu$xykXcsy=W%DL^LWXwlYCt+MaQA!HcS4B zQ%Y97zjSfMt*(?Vy7f98(rW91!*Tc$BJ99o%6gv&VfKQ}g*cfhdDIA9sJYGM)-aXE zY{noLJu*E7gdXj85^^vjcebZVG&J@$qtT-gCmKP4uYxw-pfr?SX0fy78O~dLXXykK8*A?KOUrJP zl{y*`mS?c6kK`i>@kkod#N+z_;ALtapyokphNNmzXoF?mYV=5U3d1}D%^vvxjt+$X z-Zar}e_^povY-6r(dnIozr+pfB3Ti#eNvai3Zx)WgP6@GeTI7wKp_$|kHL1p9tZMu z1+Yw4@4}t}qQ;OcL42~>nd@>lBYIi%FvEH#pq_!AE_%7Z2y)w{t{G$kvnX{Hrgc@8 zVY(~BvMNMuA=F|;4CgX|f&AIUP=D#P$)&i**q|9`5E-MPiH=%azfSv`h@i^&ol-F?+HH56@Ru_3KJk@kzGfAwkDK z)XfKGke`)S4VGobHMv^|vUJaKkU(6E5~OhiG7Gt+d&sAN28AMg&+ce28jLVVDn^Y3 zW01x?Y{glYhtw9>$Q?-S=wdhy0k9hGCGwFX1|9$@D@Gzn;fU?Aa)12GDSwk_Q7NR?Ijl}+l9Msa0UPW0 zNC6x0IYyP}j7-9}fL(%*K|abh;fdg+L}x|m?0KOd)68v#c;M8K1?ZiczsAj7pPHxc zr(orAP1fdN@Qe0LhSK$J`*l`mjV{5Umz+0zY%#0Ntv2hwoucz#k zPH8g+CWtm?-uHq1u9^ zu*jI^h$E3cTEO;(_{bk6*f1OU^91d?FN1umjP+2)92Sfm;^9P^hhqNU2GTwQigUBe&b&*b>WDk-6!rU-(MheU;%1L;w-2&1-n>|B{ zVLcleuE>l9BiB_JDFxR8`ULuKwjMTHw3YJ_t5#G6N%TlGm~j{OZGCEs>h>O8uUD5N(sceLKB+I8>PTps}^ z_vJ3uixm&AmwyQ;hStbm1MGVQf1R41Dh%aD`8FdwNkg8cCbGdDw;gU9wDIX}@F@%} zkEIo9`tfawl-L(3(wET-#|7q?XNbpHI57lSZpAJ}GDz@MXy9SDdbNKue`C|P9xm({~`_PZ*DUw_*WW6QqVcDp@7Dx?Cyn=f91{=@PlLl zeKF(~V4o(4{0$5Wr-uYFQ3|&S;b=n7PZ2=AMC++i!>AGVz@gqUH7nHgsk$4t;do*m zk}3WH&`%Z@xqvKDFQ(b?Nt7QD74pwWTajAuzK!OtP5k4e{PC7@O%}0nWFin5#}Hv4 zhSdKU;^CA(1``fn4DoSJDDXoJ)qy)u+!+$;i;mB55F&Yg1RD@myPQpV{;LG7QPWd8 zkxofDXW?jqX_%cTGhmJwO8yxDbn--88gcU+;og*o@d|&0K^|q3(lMz9&wCtR_NQi`y%2T~55@W{bz z`Q9j`>N9-ThDUV()d08Y!1lN;(hw21$3R!|v4*pxl-z=UERtJ0lRhQ8lI&iyiFa^Z z<6IzR2Sw3HmPiH|%02i|2}UI>NGO~}s!Ky!O9zLuL3S012yhesZ{hiR);Cshj3E(t z4@tIHlM$;X5@{wfiSZk&CdxH7m1_c29x?K(F3l4^UC&>qxe8DW38X;k0cwN%{3hgW zB$l_sOsBFDl4r3r^>;ZSVcEsbzFuDVl_qjwZqq3Z)CBgI);y#rN}XcK_DXgs&X<)g z*!4AMt}`~6^W4>$-c_PRFDNNHDR$FBV)&#^i3$}SS5$q=fJcyq!ml}95%CWR2? zC$^x6COQiKuu}cY$kOQeMi=1qz5waoq=9D*?Az`MR9qF!dkx`pbL|7>*7u#e* zAEi14Ld{8tI@uzTrkzR)cbs4xa4;x7A)P98*E{Hlf?-mgIN6oSa0q@v#vl*(kXAyP zm9&fIX98_iCr!pul85*K@O4v^G?n!{rDUO%#(V>XN(JwU%7T!%ClNQI?0R0uvl0A8 zF%z`s3?fXFI@NQi*@$wYE((3xB0q!`iquo>^mpES=f6Mb9D`pvL%<1Yh=u$-HI$wY zGt2ds4ek)Yr$%Tf;$E1k)?1#_*HNL`urGzGz2ps~%LVEZy}Cw?n0`?G@U3|8B(Y~3 zI#fy`En^~eW00o7zaf_t?I(j}hM|Jn082=@^gIGer25jjP$D3ms1{jJ7ON_lF-7rA zq!w0@!|wGnafKLFV;t2&Ag}Ah3?d@G9|&Qbdqm=tR*fX`%jlti=XM-^iAH52kDqpq zqJL8RLp49?itKgzUc5U*A0o>cq7Rk(qGDSCl%f9(Xwt*&of@c54J3ab1-d~S3n|s{ z%ld*)!eXB58i3@WJIz1=v7SL1mY%AVTt(^pu>iUiT5mt%Swz!8{<6*imk`RyQKMb(Tj>48U9%Ig#5vk5fUMwZ5RY!ZFVphcz?+YtY$q|CMOURK|sQN=nHJnYH zhGduwXD$-{_Uix3>U1z3t6nd-!7KoWk?8g*)D;8f~W6!913gE&4BSD! z4w*n06%BfXv|R>eP{bDa_yAlAFcwnu3%KyBXl`U9JFpS6bV!rC=4}*2a~JQvjm>;W z+@V84-brV`-5%OV9O`en4gO2Cre8*b_5C9CX?^@xs2P+MZUgoWOwNB5ozC9$c^sNF zm3SODkaPx!hC=QcIt&4IfP*-LqbN)=e3T;HK{Sf^qzf>GQ4Ut05jk=y_Qm6K1LMtT zJiUW>0U2816~S2Jl;js{fA;SAKmM0e zM@J4HuX!uK@uT4QA0Ds0^Sk)_(z%7&xBu&(pIiFznT6U{i+}p;55E7+h1xmid-Ff} z;jV?+I~RZNTf6`2?c-%lXbF5i)T&i9-)^p;qI;g$t2_T~-}}c33$-oUb7${)zk9r_M!w+N zwAX8BVj}Rb6X4gVIZDltR6POMw}=dr=%mS@{nXU3{S6atn{FS4ikl=@1M*I)zej;p zW!Ta2<#h-l8G8txNCPD9Hy!C!4S^(z197o{zLJ27hBH9nBhmo9XHn50E1prMT0;nz zycgBH5kBHQWQkT05^hJ?0D&Nl%l5{Jx;LC0jAI5kL0>DTpJR5oTqq4pCX5 zfRcl7jp9vJyD|1n+tx1^;-y87To%3}pSVXMaN#zy(-fw)P<;z((WtkoT+s{byT zT$GXBg{Q}0S}NI#j$2#7M>`rkPmcl|)E7{gvY{u=^MQk*Xp^#NVKX%&jncm0XWzm5f+% zc{;M-B7EIR|=^1TQAlHnY>LoW!QZH0QY8GeRd&C^@) zR~8kM7UBv2yP{FQk^@04ht(W!NVSH&ifnK3e*)fkF90by;yV<|ZX~|~?&!Nr%6Xt@ zgX<)o8kGM~w&4kVH$jO$`iYUa&cr`$lNxSs-m)ydqKhJBg*UMRe37}xe;u9jcKW82 z%1xFPnwHgQu{C@VV}%9FI*;#9qbGb1hVs4CJVedI)O?m23g`JEHMFrPCoZz%B9+=E znBXlX6*xuC{7q`EQX?EP;q~-b&B-ovvP%4$)b!1j=#itz=}1t{(j)F0lBpPTg{+Y= zb#se(pSjhXL3^J$WzHD8jj_qRvDZ)y-7xUe4RbUn-Y=V|wXQYVm!mKv+jRUBCr>>Z vWf5SbB%VhTs%^H!=@^E3YiZR%)J2nTw5rfJ8jjvg#69}TmU#Pr8tHeM literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5c47aabdb01b32fc881af866b24a88296e0dfc12 GIT binary patch literal 1269 zcmZux&ubhv6qYoa*_rX|lDHwn#f6?)_L710Rze7ENFju!U{l(mMT}Rnt@W&CEsdSp zXfAcm{TFIOFa4K9PwmOaUUO;Rn~h-u)uOlh@#%d}?|YhdJkANUzxt2mZ!sZ%<7BgO zm^_E>cELy@X+tXd4UtSnZ;6Z)yNaqv(mgWew}2qCIoiz@!Q?q~_bC_!rzNSFOa~7X z&So-^qqnr;gO@yv_V>PR+Rn}9$bHu!HiGl7p}X(Fc<^&ZUGj?jLOu0F5YJ$R*pGa) z{vUSMmdciO`9_)J z+H_CKy}8w^&Xu*Pn+vC1`Gq*NN?ii6_)3}i@sN%3T)VTn5nbChu3TY)M57NLuP#C= zgf_YpA^{?|4W?iTeLz#1K%Y?lZysIVd!NhpUr5ng6 zo5<_Lr+#$90G0K5zXcpQaB$#w<#Y5R;}hmyv%0_3`*)%h~28u zU5FZG24TZ}Wt>_bG)fpK0u(%KTUATYtX&G!_yAN7xpvyPt~PTOc!MZrz*}u?4T2%j zaFnBv(}_jp0;_+nl13dVBP)JnwX9O~hs9P+?nYt=$f8tXbY5HB4dV}j3LL>9m%w72 zZjB3Eo5R*Vfm7?_U}N+6WN;@Xsl*qkj_7xp2{LIST$&AVai|NMmX>6-o-3heM@rtAUx55_<_h5!Hn literal 0 HcmV?d00001 diff --git a/scenarios/7_freezing/visual_tools/bar.py b/scenarios/7_freezing/visual_tools/bar.py new file mode 100755 index 000000000..5bd93a04c --- /dev/null +++ b/scenarios/7_freezing/visual_tools/bar.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +import numpy as np + +def plot_bar(hist, edges, ax, coef = 1e9, **kwargs): + min_interval = np.min(edges[1:] - edges[:-1]) + ax.bar(edges[:-1], hist / (edges[1:] - edges[:-1]) / coef, align = "edge", width = min_interval * 0.85, **kwargs) + +def bar_minmax(hist, edges, coef = 1e9): + min_interval = np.min(edges[1:] - edges[:-1]) + bar_data = hist / (edges[1:] - edges[:-1]) / coef + bar_min, bar_max = bar_data.min(), bar_data.max() + return bar_min, bar_max + +def mod_xlabel_to_log(ax_hist): + x_ticks = ax_hist.get_xticks() + x_ticks = [int(xtick) for xtick in x_ticks] + x_ticks_label = ["10$^{" + "%.1f" % (xtick) + "}$" for xtick in x_ticks] + ax_hist.set_xticks(x_ticks, x_ticks_label) + return ax_hist + +def mod_ylabel_to_log(ax_hist): + y_ticks = ax_hist.get_yticks() + y_ticks = [int(ytick) for ytick in y_ticks] + y_ticks_label = ["10$^{" + "%.1f" % (ytick) + "}$" for ytick in y_ticks] + ax_hist.set_yticks(y_ticks, y_ticks_label) + return ax_hist diff --git a/scenarios/7_freezing/visual_tools/case.py b/scenarios/7_freezing/visual_tools/case.py new file mode 100755 index 000000000..f2c5c7441 --- /dev/null +++ b/scenarios/7_freezing/visual_tools/case.py @@ -0,0 +1,494 @@ +#!/usr/bin/env python + +import numpy as np +import netCDF4 as nc +from glob import glob +import os + +from pdb import set_trace + +class PartMC_Case(object): + + def __init__(self, caseName, OutDir = "."): + + self.prefix = "freezing_part" + self.caseName = caseName + if os.path.exists(OutDir + "/" + caseName): + self.case_output = OutDir + "/" + caseName + elif os.path.exists(OutDir + "/out_" + caseName): + self.case_output = OutDir + "/out_" + caseName + else: + assert False, caseName + " couln'd be found!" + self.fileList = glob(self.case_output + "/" + self.prefix + "_*.nc") + self.fileList.sort() + self.sample_file = self.fileList[0] + self.ensemble_nameList = [] + for fileName in self.fileList: + ensemble_name = fileName.split("_")[-2] + if not(ensemble_name in self.ensemble_nameList): + self.ensemble_nameList.append(ensemble_name) + + self.N_ensemble = len(self.ensemble_nameList) + self.ensemble_fileList = {} + self.N_file_per_ensemble = None + self.default_ensemble_name = self.ensemble_nameList[0] + + for ensemble_name in self.ensemble_nameList: + fileList = glob(self.case_output + "/" + self.prefix + "_" + ensemble_name + "_*.nc") + fileList.sort() + self.ensemble_fileList[ensemble_name] = fileList + if self.N_file_per_ensemble is None: + self.N_file_per_ensemble = len(fileList) + else: + assert self.N_file_per_ensemble == len(fileList) + + self.read_check_time() + self.nTime = len(self.timeList) + self.read_dimensions() + + self.database = {} + for ensemble_name in self.ensemble_nameList: + self.database[ensemble_name] = {} + + print("PartMC case created.") + print("case name: " + self.caseName) + print("ensemble number: " + str(self.N_ensemble)) + print() + + def clean_database(self): + del(self.database) + self.database = {} + for ensemble_name in self.ensemble_nameList: + self.database[ensemble_name] = {} + + + def add_to_database(self, ensemble_name, varName, dimensions, data, info = {}): + if varName in self.database[ensemble_name][varName]: + print("Warning! " + varName + " already exists in the database, which will be covered.") + self.database[ensemble_name][varName] = (data, dimensions, info) + + def read_from_database(self, ensemble_name, varName): + assert ensemble_name in self.database, "Error! Couldn't find " + ensemble_name + " in " + self.caseName + "." + assert varName in self.database[ensemble_name], "Error! Couldn't find " + varName + " in " + self.caseName + ":" + ensemble_name + "." + data, dimensions, info = self.database[ensemble_name][varName] + return data, dimensions, info + + def compute_RH_ice(self, ensemble_name = None): + if ensemble_name is None: + ensemble_name = self.default_ensmeble_name + if "RH_ice" in self.database[ensemble_name]: + RH_ice, dimensions, info = self.database[ensemble_name]["RH_ice"] + else: + RH_water, _, _ = self.get_var("relative_humidity", ensemble_name) + temperature_tList, _, _ = self.get_var("temperature", ensemble_name) + RH_water = np.array(RH_water) + temperature_tList = np.array(temperature_tList) + es = self.compute_saturated_vapor_pressure_water(temperature_tList) + esi = self.compute_saturated_vapor_pressure_ice(temperature_tList) + ratio = es/esi + RH_ice = RH_water * ratio + dimensions = ("time",) + info = { + "units": "1", + } + self.database[ensemble_name]["RH_ice"] = (RH_ice, dimensions, info) + return RH_ice, dimensions, info + + def compute_ice_mixing_ratio(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + + if "ice_mixing_ratio" in self.database[ensemble_name]: + mixing_ratio_tList, dimensions, info = self.database[ensemble_name]["ice_mixing_ratio"] + else: + temperature_tList, _, _ = self.get_var("temperature", ensemble_name) + pressure_tList, _, _ = self.get_var("pressure", ensemble_name) + aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) + part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) + particle_mass_tList, _, _ = self.get_var("aero_particle_mass", ensemble_name) + + mixing_ratio_tList = np.full((self.nTime), np.nan) + for i_time in range(self.nTime): + particle_mass = particle_mass_tList[i_time].sum(axis = 0) + air_density = pressure_tList[i_time] / (286 * temperature_tList[i_time]) + freezing_mass = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time] * particle_mass) + mixing_ratio = freezing_mass / (air_density * 1) + #mixing_ratio *= 1000 # g/g -> g/Kg + mixing_ratio_tList[i_time] = mixing_ratio + + dimensions = ("time",) + info = { + "units": "g/g", + } + self.database[ensemble_name]["ice_mixing_ratio"] = (mixing_ratio_tList, dimensions, info) + + return mixing_ratio_tList, dimensions, info + + def compute_ice_num_conc(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + if "ice_num_conc" in self.database[ensemble_name]: + ice_num_conc_tList, dimensions, info = self.database[ensemble_name]["ice_num_conc"] + else: + part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) + aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) + + ice_num_conc_tList = np.full((self.nTime), np.nan) + for i_time in range(self.nTime): + ice_num_conc = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time]) + ice_num_conc_tList[i_time] = ice_num_conc + dimensions = ("time", ) + info = { + "units": "m^-1", + } + self.database[ensemble_name]["ice_num_conc"] = (ice_num_conc_tList, dimensions, info) + + return ice_num_conc_tList, dimensions, info + + + def compute_ice_ratio(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + + if "ice_ratio" in self.database[ensemble_name]: + ice_ratio, dimensions, info = self.database[ensemble_name]["ice_ratio"] + else: + part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) + aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) + + ice_ratio_tList = np.full((self.nTime), np.nan) + for i_time in range(self.nTime): + ice_ratio = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time]) / np.sum(aero_num_conc_tList[i_time]) + ice_ratio_tList[i_time] = ice_ratio + dimensions = ("time",) + info = { + #"units": "unitless", + "units": "1", + } + self.database[ensemble_name]["ice_ratio"] = (ice_ratio_tList, dimensions, info) + + return ice_ratio_tList, dimensions, info + + def compute_dry_diameter(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + + if "dry_diameter" in self.database[ensemble_name]: + dry_diameter_tList, dimensions, info = self.database[ensemble_name]["dry_diameter"] + else: + aero_particle_mass, dimensions, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) + aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) + aero_species_ind, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 + + #_, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) + aero_species_names = aero_species_info["names"].split(",") + + dry_diameter_tList = [] + for i_time in range(self.nTime): + + aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} + aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} + #diameter = self.aero_particle_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) + dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) + dry_diameter_tList.append(dry_diameter) + + dimensions = ("time", ) + dimensions + info = { + "units": "m", + } + self.database[ensemble_name]["dry_diameter"] = (dry_diameter_tList, dimensions, info) + return dry_diameter_tList, dimensions, info + + def compute_diameter(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + + if "diameter" in self.database[ensemble_name]: + diameter_tList, dimensions, info = self.database[ensemble_name]["diameter"] + else: + aero_particle_mass, dimensions, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) + aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) + aero_species_ind, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 + + #_, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) + aero_species_names = aero_species_info["names"].split(",") + + diameter_tList = [] + for i_time in range(self.nTime): + + aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} + aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} + diameter = self.aero_particle_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) + #dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) + diameter_tList.append(diameter) + + dimensions = ("time", ) + dimensions + info = { + "units": "m", + } + self.database[ensemble_name]["diameter"] = (diameter_tList, dimensions, info) + return diameter_tList, dimensions, info + + def compute_dwetddry(self, ensemble_name = None): + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + if "dwetddry" in self.database[ensemble_name]: + dwetddry_tList, dimensions, info = self.database[ensemble_name]["dwetddry"] + else: + dwet_tList, dimensions, _ = self.compute_diameter(ensemble_name = ensemble_name) + ddry_tList, _, _ = self.compute_dry_diameter(ensemble_name = ensemble_name) + dwetddry_tList = [] + + for i_time in range(self.nTime): + dwetddry = dwet_tList[i_time] / ddry_tList[i_time] + dwetddry_tList.append(dwetddry) + info = { + "units": "1", + } + self.database[ensemble_name]["dwetddry"] = (dwetddry_tList, dimensions, info) + return dwetddry_tList, dimensions, info + + def compute_droplets_ratio(self, droplets_threshold = 1.4, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + if "droplets_ratio" in self.database[ensemble_name]: + droplets_ratio_tList, dimensions, info = self.database[ensemble_name]["droplets_ratio"] + else: + dwetddry_tList, dimensions, info = self.compute_dwetddry(ensemble_name = ensemble_name) + droplets_ratio_tList = [] + for i_time in range(self.nTime): + droplets_ratio = np.sum(dwetddry_tList[i_time] >= droplets_threshold) / len(dwetddry_tList[i_time]) + droplets_ratio_tList.append(droplets_ratio) + + droplets_ratio_tList = np.array(droplets_ratio_tList) + dimensions = ("time",) + info = { + "units": "1", + } + self.database[ensemble_name]["droplets_ratio"] = droplets_ratio_tList, dimensions, info + return droplets_ratio_tList, dimensions, info + + + + + def get_var(self, varName, ensemble_name = None): + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + print("Warning! Undefine ensemble_name, using " + ensemble_name + " as a default value.") + if varName in self.database[ensemble_name]: + data_array, dimensions, info = self.database[ensemble_name][varName] + else: + print("Couldn't find \"" + varName + "\" from the database: \"" + ensemble_name + "\", search it from the files.") + data_array = [] + #shape = None + dimensions = None + info = None + for fileName in self.ensemble_fileList[ensemble_name]: + ncf = nc.Dataset(fileName) + data = ncf.variables[varName][:].filled(np.nan) + #len(data.shape) == len(ncf.dimensions + #if shape is None: + # shape = data.shape + #else: + # assert shape == data.shape + if dimensions is None: + dimensions = ncf.variables[varName].dimensions + else: + assert dimensions == ncf.variables[varName].dimensions + if info is None: + info = {} + for attr in ncf.variables[varName].ncattrs(): + info[attr] = ncf.variables[varName].getncattr(attr) + #assert len(shape) == len(dimensions) + data_array.append(data) + #data_array = np.array(data_array) + dimensions = ("time",) + dimensions + self.database[ensemble_name][varName] = (data_array, dimensions, info) + return data_array, dimensions, info + + def read_check_time(self): + self.timeList = None + for ensemble_name in self.ensemble_nameList: + timeList = [] + for fileName in self.ensemble_fileList[ensemble_name]: + ncf = nc.Dataset(fileName) + time = float(ncf.variables["time"][0].filled(np.nan)) + ncf.close() + timeList.append(time) + timeList = np.array(timeList) + if self.timeList is None: + self.timeList = timeList + else: + assert np.max(np.abs(self.timeList - timeList)) < 10e-8 + + def read_dimensions(self): + ncf = nc.Dataset(self.sample_file) + self.dimensions = {} + for dimension in ncf.dimensions: + dimension_name = ncf.dimensions[dimension].name + dimension_size = ncf.dimensions[dimension].size + self.dimensions[dimension_name] = dimension_size + ncf.close() + + + + def compute_ensemble_mean_std(self, varName, ensembles = None, getFun = None, getFun_kwargs = {}, return_info = False): + + if ensembles is None: + ensembles = self.ensemble_nameList + mean_list = [] + std_list = [] + for i_time in range(self.nTime): + combine_array = [] + shape_check = None + for ensemble_name in ensembles: + if not(varName in self.database[ensemble_name]): + if getFun is None: + self.get_var(varName, ensemble_name) + else: + getFun(ensemble_name = ensemble_name, **getFun_kwargs) + + assert varName in self.database[ensemble_name] + data = self.database[ensemble_name][varName][0][i_time] + if shape_check is None: + shape_check = data.shape + else: + assert shape_check == data.shape + combine_array.append(data) + combine_array = np.array(combine_array) + mean_value = np.nanmean(combine_array, axis = 0) + std_value = np.nanstd(combine_array, axis = 0) + mean_list.append(mean_value) + std_list.append(std_value) + mean_list = np.array(mean_list) + std_list = np.array(std_list) + if return_info: + info_dict = self.database[ensemble_name][varName][2] + return mean_list, std_list, info_dict + else: + return mean_list, std_list + + + + def vol2rad(self, vol): + return (3 * vol / 4 / np.pi) ** (1/3.0) + + def aero_particle_volume(self, aero_particle_mass, aero_density, aero_species_name2ind): + vol = 0 + for spec_name in aero_species_name2ind: + vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] + return vol + + def aero_particle_dry_volume(self, aero_particle_mass, aero_density, aero_species_name2ind): + vol = 0 + for spec_name in aero_species_name2ind: + if spec_name == "H2O": + continue + vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] + return vol + + def aero_particle_diameter(self, aero_particle_mass, aero_density, aero_species_name2ind): + vol = self.aero_particle_volume(aero_particle_mass, aero_density, aero_species_name2ind) + radius = self.vol2rad(vol) + diameter = 2 * radius + return diameter + + def aero_particle_dry_diameter(self, aero_particle_mass, aero_density, aero_species_name2ind): + vol = self.aero_particle_dry_volume(aero_particle_mass, aero_density, aero_species_name2ind) + radius = self.vol2rad(vol) + diameter = 2 * radius + return diameter + + def compute_saturated_vapor_pressure_water(self, T): + tmp = 54.842763 \ + - 6763.22 / T \ + - 4.210 * np.log(T) \ + + 0.000367 * T \ + + np.tanh( 0.0415 * (T - 218.8)) \ + * (53.878 - 1331.22 / T - 9.44523 * np.log(T) + 0.014025 * T) + es = np.exp(tmp) + return es + + def compute_saturated_vapor_pressure_ice(self, T): + tmp = 9.550426 \ + - 5723.265 / T \ + + 3.53068 * np.log(T) \ + - 0.00728332 * T + esi = np.exp(tmp) + return esi + + + def compute_histogram(self, time, ensemble_name = None, bins = 100): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + + i_time = np.where(time - self.timeList >= 0 )[0][-1] + + aero_particle_mass, _, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) + aero_particle_mass = aero_particle_mass[i_time]# (aero_species, aero_particle) + + aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) + aero_density = aero_density[i_time] #(aero_species) + + aero_num_conc, _, _ = self.get_var("aero_num_conc", ensemble_name = ensemble_name) + aero_num_conc = aero_num_conc[i_time] # (aero_particle) + + aero_particle_vol = (aero_particle_mass.T / aero_density).T + + aero_species_ind, _, _ = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 + aero_species_ind = aero_species_ind[i_time] - 1 + + _, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) + aero_species_names = aero_species_info["names"].split(",") + + aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind, aero_species_names)} + aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind, aero_species_names)} + + diameter = self.aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind) + dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind) + + part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) + part_frozen = part_frozen_tList[i_time] + + diameter *= 10**6 + dry_diameter *= 10**6 + + hists_dict = {} + + hist, bin_edges = np.histogram(np.log10(diameter), weights=aero_num_conc, bins = bins) + hists_dict["diameter_log10"] = (hist, bin_edges) + hist, bin_edges = np.histogram(np.log10(dry_diameter), weights=aero_num_conc, bins = bins) + hists_dict["dry_diameter_log10"] = (hist, bin_edges) + hist, bin_edges = np.histogram(np.log10(diameter), weights = aero_num_conc * part_frozen, bins = bins) + hists_dict["ice_diameter_log10"] = (hist, bin_edges) + hist, bin_edges = np.histogram(np.log10(dry_diameter), weights = aero_num_conc * part_frozen, bins = bins) + hists_dict["ice_dry_diameter_log10"] = (hist, bin_edges) + + hist, bin_edges = np.histogram(diameter, weights=aero_num_conc, bins = bins) + hists_dict["diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc, bins = bins) + hists_dict["dry_diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(diameter, weights=aero_num_conc * part_frozen, bins = bins) + hists_dict["ice_diameter"] = (hist, bin_edges) + hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc * part_frozen, bins = bins) + hists_dict["ice_dry_diameter"] = (hist, bin_edges) + + return hists_dict + + + + + + + + + + + diff --git a/scenarios/7_freezing/visual_tools/plots_lib.py b/scenarios/7_freezing/visual_tools/plots_lib.py new file mode 100755 index 000000000..5afb9575e --- /dev/null +++ b/scenarios/7_freezing/visual_tools/plots_lib.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python + +import numpy as np + +class TSPlots(object): + def __init__(self, data_setting = None, casesList = None, casesDict = None): + + assert not(data_setting) is None + self.data_setting = data_setting + assert not( (casesList is None) and (casesDict is None) ) + if casesDict is None: + self.casesDict = {} + for obj_case in casesList: + self.casesDict[obj_case.caseName] = obj_case + else: + self.casesDict = casesDict + + def plot(self, ax, legend = False, grid = True): + for dataName in self.data_setting: + dataName_split = dataName.strip().split(":") + if len(dataName_split) == 2: + caseName, varName = dataName_split + assert caseName in self.casesDict + ensemble_name = self.casesDict[caseName].ensemble_nameList[0] + else: + caseName, ensemble_name, varName = dataName_split + assert caseName in self.casesDict + data, dimensions, info = self.casesDict[caseName].read_from_database(ensemble_name, varName) + assert len(dimensions) == 1 and dimensions[0] == "time" + if isinstance(data, list): + data = np.array(data) + timeList = self.casesDict[caseName].timeList + plot_kwargs = self.data_setting[dataName] + ax.plot(timeList, data, **plot_kwargs) From 70e4710ae1c66efe9b3213fbf8dea3ed6449e6b2 Mon Sep 17 00:00:00 2001 From: Wenhan Tang Date: Thu, 7 Sep 2023 19:10:49 -0500 Subject: [PATCH 003/127] development of freezing process --- CMakeLists.txt | 2 + scenarios/7_freezing/freezing_run.sh | 2 +- scenarios/7_freezing/run_part.spec | 2 +- src/aero_particle.F90 | 22 +- src/aero_state.F90 | 18 ++ src/env_state.F90 | 51 +++++ src/extract_aero_particles.F90 | 6 + src/freezing.F90 | 1 + src/freezing.F90.bck.F90 | 206 +++++++++++++++++ src/freezing.F90.speedup.F90 | 318 +++++++++++++++++++++++++++ src/partmc.F90 | 34 +++ src/rand.F90 | 35 +++ src/run_part.F90 | 22 ++ test/freezing/README | 6 + test/freezing/aero_back.dat | 6 + test/freezing/aero_back_dist.dat | 1 + test/freezing/aero_data.dat | 2 + test/freezing/aero_emit.dat | 6 + test/freezing/aero_emit_dist.dat | 1 + test/freezing/aero_init_comp.dat | 2 + test/freezing/aero_init_dist.dat | 7 + test/freezing/gas_back.dat | 7 + test/freezing/gas_data.dat | 7 + test/freezing/gas_emit.dat | 7 + test/freezing/gas_init.dat | 3 + test/freezing/height.dat | 4 + test/freezing/plot.gnuplot | 13 ++ test/freezing/pressure.dat | 4 + test/freezing/run_part.spec | 48 ++++ test/freezing/temp.dat | 4 + test/freezing/test_freezing_1.sh | 13 ++ 31 files changed, 857 insertions(+), 3 deletions(-) create mode 120000 src/freezing.F90 create mode 100644 src/freezing.F90.bck.F90 create mode 100644 src/freezing.F90.speedup.F90 create mode 100644 test/freezing/README create mode 100644 test/freezing/aero_back.dat create mode 100644 test/freezing/aero_back_dist.dat create mode 100644 test/freezing/aero_data.dat create mode 100644 test/freezing/aero_emit.dat create mode 100644 test/freezing/aero_emit_dist.dat create mode 100644 test/freezing/aero_init_comp.dat create mode 100644 test/freezing/aero_init_dist.dat create mode 100644 test/freezing/gas_back.dat create mode 100644 test/freezing/gas_data.dat create mode 100644 test/freezing/gas_emit.dat create mode 100644 test/freezing/gas_init.dat create mode 100644 test/freezing/height.dat create mode 100644 test/freezing/plot.gnuplot create mode 100644 test/freezing/pressure.dat create mode 100644 test/freezing/run_part.spec create mode 100644 test/freezing/temp.dat create mode 100755 test/freezing/test_freezing_1.sh diff --git a/CMakeLists.txt b/CMakeLists.txt index 4438637c6..60cc862f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,6 +148,7 @@ if(ENABLE_MPI) endif() add_test(test_rand ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh rand) add_test(test_sedi ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh sedi) +add_test(test_freezing ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh freezing) ###################################################################### # partmc library @@ -169,6 +170,7 @@ add_library(partmclib src/aero_state.F90 src/integer_varray.F90 src/netcdf.F90 src/aero_info.F90 src/aero_info_array.F90 src/nucleate.F90 src/condense.F90 src/fractal.F90 src/chamber.F90 src/camp_interface.F90 src/photolysis.F90 src/sys.F90 + src/freezing.F90 ${SUNDIALS_SRC} ${GSL_SRC} ${C_SORT_SRC}) diff --git a/scenarios/7_freezing/freezing_run.sh b/scenarios/7_freezing/freezing_run.sh index 5790e48c3..7703a7e28 100755 --- a/scenarios/7_freezing/freezing_run.sh +++ b/scenarios/7_freezing/freezing_run.sh @@ -1,6 +1,6 @@ #!/bin/bash -caseName=chiexp_external +caseName=git_trans_t1 # exit on error set -e # turn on command echoing diff --git a/scenarios/7_freezing/run_part.spec b/scenarios/7_freezing/run_part.spec index d9eb07313..0ff35b6ad 100644 --- a/scenarios/7_freezing/run_part.spec +++ b/scenarios/7_freezing/run_part.spec @@ -1,5 +1,5 @@ run_type particle # particle-resolved run -output_prefix output/chiexp_0.15/freezing_part # prefix of output files +output_prefix output/git_trans_t1/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 41618c9a6..807f15905 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -53,6 +53,11 @@ module pmc_aero_particle real(kind=dp) :: least_create_time !> Last time a constituent was created (s). real(kind=dp) :: greatest_create_time + !> ice-phase flag + logical :: frozen + !> ice-phase probability + real(kind=dp) :: P_frozen + end type aero_particle_t !> Next unique ID number to use for a particle. @@ -88,6 +93,8 @@ subroutine aero_particle_shift(aero_particle_from, aero_particle_to) aero_particle_to%least_create_time = aero_particle_from%least_create_time aero_particle_to%greatest_create_time = & aero_particle_from%greatest_create_time + aero_particle_to%frozen = aero_particle_from%frozen + aero_particle_to%P_frozen = aero_particle_from%P_frozen end subroutine aero_particle_shift @@ -118,6 +125,8 @@ subroutine aero_particle_zero(aero_particle, aero_data) aero_particle%id = 0 aero_particle%least_create_time = 0d0 aero_particle%greatest_create_time = 0d0 + aero_particle%frozen = .FALSE. + aero_particle%P_frozen = 0d0 end subroutine aero_particle_zero @@ -884,6 +893,11 @@ subroutine aero_particle_coagulate(aero_particle_1, & aero_particle_new%greatest_create_time = & max(aero_particle_1%greatest_create_time, & aero_particle_2%greatest_create_time) + aero_particle_new%frozen = aero_particle_1%frozen .OR. & + aero_particle_2%frozen + aero_particle_new%P_frozen = 1 - (1 - aero_particle_1%P_frozen) & + * (1 - aero_particle_2%P_frozen) + end subroutine aero_particle_coagulate @@ -909,7 +923,9 @@ integer function pmc_mpi_pack_size_aero_particle(val) + pmc_mpi_pack_size_integer(val%water_hyst_leg) & + pmc_mpi_pack_size_integer(val%id) & + pmc_mpi_pack_size_real(val%least_create_time) & - + pmc_mpi_pack_size_real(val%greatest_create_time) + + pmc_mpi_pack_size_real(val%greatest_create_time) & + + pmc_mpi_pack_size_logical(val%frozen) & + + pmc_mpi_pack_size_real(val%P_frozen) end function pmc_mpi_pack_size_aero_particle @@ -943,6 +959,8 @@ subroutine pmc_mpi_pack_aero_particle(buffer, position, val) call pmc_mpi_pack_integer(buffer, position, val%id) call pmc_mpi_pack_real(buffer, position, val%least_create_time) call pmc_mpi_pack_real(buffer, position, val%greatest_create_time) + call pmc_mpi_pack_logical(buffer, position, val%frozen) + call pmc_mpi_pack_real(buffer, position, val%P_frozen) call assert(810223998, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif @@ -979,6 +997,8 @@ subroutine pmc_mpi_unpack_aero_particle(buffer, position, val) call pmc_mpi_unpack_integer(buffer, position, val%id) call pmc_mpi_unpack_real(buffer, position, val%least_create_time) call pmc_mpi_unpack_real(buffer, position, val%greatest_create_time) + call pmc_mpi_unpack_logical(buffer, position, val%frozen) + call pmc_mpi_unpack_real(buffer, position, val%P_frozen) call assert(287447241, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 77254bb94..dca699700 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2444,6 +2444,8 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & integer :: aero_water_hyst_leg(aero_state_n_part(aero_state)) real(kind=dp) :: aero_num_conc(aero_state_n_part(aero_state)) integer :: aero_id(aero_state_n_part(aero_state)) + integer :: aero_frozen(aero_state_n_part(aero_state)) + real(kind=dp) :: aero_frozen_probability(aero_state_n_part(aero_state)) real(kind=dp) :: aero_least_create_time(aero_state_n_part(aero_state)) real(kind=dp) :: aero_greatest_create_time(aero_state_n_part(aero_state)) integer :: aero_removed_id( & @@ -2572,6 +2574,8 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & = aero_state_particle_num_conc(aero_state, & aero_state%apa%particle(i_part), aero_data) aero_id(i_part) = aero_state%apa%particle(i_part)%id + aero_frozen(i_part) = aero_state%apa%particle(i_part)%frozen + aero_frozen_probability(i_part) = aero_state%apa%particle(i_part)%P_frozen aero_least_create_time(i_part) & = aero_state%apa%particle(i_part)%least_create_time aero_greatest_create_time(i_part) & @@ -2618,6 +2622,12 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & call pmc_nc_write_integer_1d(ncid, aero_id, & "aero_id", (/ dimid_aero_particle /), & long_name="unique ID number of each aerosol particle") + call pmc_nc_write_integer_1d(ncid, aero_frozen, & + "aero_frozen", (/ dimid_aero_particle /), & + long_name="flag indicating ice phase of each aerosol particle") + call pmc_nc_write_real_1d(ncid, aero_frozen_probability, & + "aero_frozen_probability", (/ dimid_aero_particle /), & + long_name="probability of freezing describing the group of real aerosols represented by each computational particle") call pmc_nc_write_real_1d(ncid, aero_least_create_time, & "aero_least_create_time", (/ dimid_aero_particle /), unit="s", & long_name="least creation time of each aerosol particle", & @@ -2809,6 +2819,8 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) integer, allocatable :: aero_water_hyst_leg(:) real(kind=dp), allocatable :: aero_num_conc(:) integer, allocatable :: aero_id(:) + integer, allocatable :: aero_frozen(:) + real(kind=dp), allocatable :: aero_frozen_probability(:) real(kind=dp), allocatable :: aero_least_create_time(:) real(kind=dp), allocatable :: aero_greatest_create_time(:) integer, allocatable :: aero_removed_id(:) @@ -2857,6 +2869,10 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) "aero_num_conc") call pmc_nc_read_integer_1d(ncid, aero_id, & "aero_id") + call pmc_nc_read_integer_1d(ncid, aero_frozen, & + "aero_frozen") + call pmc_nc_read_real_1d(ncid, aero_frozen_probability, & + "aero_frozen_probability", must_be_present=.false.) call pmc_nc_read_real_1d(ncid, aero_least_create_time, & "aero_least_create_time") call pmc_nc_read_real_1d(ncid, aero_greatest_create_time, & @@ -2895,6 +2911,8 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) end if aero_particle%water_hyst_leg = aero_water_hyst_leg(i_part) aero_particle%id = aero_id(i_part) + aero_particle%frozen = aero_frozen(i_part) + aero_particle%P_frozen = aero_frozen_probability(i_part) aero_particle%least_create_time = aero_least_create_time(i_part) aero_particle%greatest_create_time = aero_greatest_create_time(i_part) diff --git a/src/env_state.F90 b/src/env_state.F90 index 682ed32ae..687360fd5 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -524,6 +524,57 @@ subroutine env_state_input_netcdf(env_state, ncid) end subroutine env_state_input_netcdf + subroutine env_state_saturated_vapor_pressure_water(env_state, pvs) + ! compute saturated vapor pressure (units : Pa) with respective to water + ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + + !> Environment state to read. + type(env_state_t), intent(in) :: env_state + !> saturated vapor pressure with respective to water (Pa) + real(kind=dp), intent(out) :: pvs + !> temperature (k) + real(kind=dp) :: T, tmp + + T = env_state%temp + if ((T <= 123) .OR. (T >= 332)) then + write(*, *) "Warning! the environment temperature is less then 123K or & + larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" + end if + + tmp = 54.842763 & + - 6763.22 / T & + - 4.210 * log(T) & + + 0.000367 * T & + + tanh( 0.0415 * (T - 218.8)) & + * (53.878 - 1331.22 / T - 9.44523 * log(T) + 0.014025 * T) + pvs = exp(tmp) + end subroutine env_state_saturated_vapor_pressure_water + + subroutine env_state_saturated_vapor_pressure_ice(env_state, pis) + ! compute saturated vapor pressure (units : Pa) with respective to ice + ! Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + + !> Environment state to read. + type(env_state_t), intent(in) :: env_state + !> saturated vapor pressure with respective to ice (Pa) + real(kind=dp), intent(out) :: pis + !> temperature (k) + real(kind=dp) :: T, tmp + + T = env_state%temp + if (T <= 110) then + write(*, *) "Warning! the environment temperature is less then 110K, the & + subroutine env_state_saturated_vapor_pressure_ice isn't applicable" + end if + tmp = 9.550426 & + - 5723.265 / T & + + 3.53068 * log(T) & + - 0.00728332 * T + pis = exp(tmp) + end subroutine env_state_saturated_vapor_pressure_ice + + + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! end module pmc_env_state diff --git a/src/extract_aero_particles.F90 b/src/extract_aero_particles.F90 index 1197adaa9..d960d00cb 100644 --- a/src/extract_aero_particles.F90 +++ b/src/extract_aero_particles.F90 @@ -83,6 +83,7 @@ program extract_aero_particles trim(aero_data%name(i_spec)), ' mass (kg) - density = ', & aero_data%density(i_spec), ' (kg/m^3)' end do + write(*,'(a,i2,a)') ' column ', aero_data_n_spec(aero_data) + 4 + 1,': frozen flag' call open_file_write(out_filename, out_unit) do i_part = 1,aero_state_n_part(aero_state) @@ -97,6 +98,11 @@ program extract_aero_particles aero_particle_species_mass(aero_state%apa%particle(i_part), & i_spec, aero_data) end do + if (aero_state%apa%particle(i_part)%frozen) then + write(out_unit, '(a,i1)', advance='no') ' ', 1 + else + write(out_unit, '(a,i1)', advance='no') ' ', 0 + end if write(out_unit, *) '' end do call close_file(out_unit) diff --git a/src/freezing.F90 b/src/freezing.F90 new file mode 120000 index 000000000..3d2c82285 --- /dev/null +++ b/src/freezing.F90 @@ -0,0 +1 @@ +freezing.F90.bck.F90 \ No newline at end of file diff --git a/src/freezing.F90.bck.F90 b/src/freezing.F90.bck.F90 new file mode 100644 index 000000000..552519283 --- /dev/null +++ b/src/freezing.F90.bck.F90 @@ -0,0 +1,206 @@ +! Copyright (C) 2021 University of Illinois at Urbana-Champaign +! Licensed under the GNU General Public License version 2 or (at your +! option) any later version. See the file COPYING for details. + +!> \file +!tate_saturated_vapor_pressure_ice The pmc_freezing module. + +module pmc_freezing + use pmc_aero_state + use pmc_env_state + use pmc_aero_data + use pmc_util + use pmc_aero_particle + use pmc_constants + use pmc_rand + implicit none + + integer :: freeze_module_run_time = 0 + +contains + + subroutine freeze(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, do_freezing_CNT, freezing_rate, & + do_coating, coating_spec, coating_ratio) + + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + + integer :: i_part + real(kind=dp) :: tmp + logical :: do_freezing_CNT, do_coating + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + !real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: p_freeze, p_frozen + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + character(len=*), intent(in) :: coating_spec + real(kind=dp) :: coating_ratio + real(kind=dp) :: rand + integer :: clock_start, clock_end + + call system_clock(clock_start) + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + !print*, sum(H2O_frac) / aero_state_n_part(aero_state), & + ! env_state_final%rel_humid, sum(H2O_masses) + !print*, aero_data%abifm_m + !print*, aero_data%abifm_c + call env_state_saturated_vapor_pressure_water(env_state_final, pvs) + call env_state_saturated_vapor_pressure_ice(env_state_final, pis) + a_w_ice = pis / pvs + + do i_part = 1, aero_state_n_part(aero_state) + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + rand = pmc_random() + !p = 1 - exp(-J_het * immersed_surface_area[i] * del_t) +!p = 1 - exp(-.00123456789 * del_t) + !print*, "Begin CNT" + if (do_freezing_CNT) then + call ABIFM(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t, & + do_coating, coating_spec, coating_ratio) + else + p_freeze = 1 - exp(freezing_rate * del_t) + end if + !print*, "freezing_rate:", freezing_rate, "; p=", p + + !aero_state%apa%particle(i_part)%P_frozen = p_freeze + p_frozen = aero_state%apa%particle(i_part)%P_frozen + aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & + * (1 - p_freeze) + + if (rand < p_freeze) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + end if + end do + call system_clock(clock_end) + freeze_module_run_time = freeze_module_run_time + clock_end - clock_start + + end subroutine freeze + + subroutine unfreeze(aero_state, aero_data, env_state_initial, & + env_state_final) + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + integer :: i_part + + if (env_state_final%temp > const%water_freeze_temp) then + do i_part = 1, aero_state_n_part(aero_state) + aero_state%apa%particle(i_part)%P_frozen = 0d0 + aero_state%apa%particle(i_part)%frozen = .FALSE. + end do + end if + + end subroutine unfreeze + + subroutine ABIFM(i_part, P_freezing, aero_state, aero_data, a_w_ice, del_t, & + do_coating, coating_spec, coating_ratio) + implicit none + integer :: i_part, i_spec + type(aero_data_t), intent(in) :: aero_data + !type(env_state_t), intent(in) :: env_state + real(kind=dp), intent(out) :: P_freezing + type(aero_state_t), intent(inout) :: aero_state + + real(kind=dp) :: aerosol_diameter + real(kind=dp) :: immersed_surface_area + real(kind=dp) :: total_vol + real(kind=dp) :: surface_ratio + real(kind=dp) :: a_w_ice + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: del_t + real(kind=dp) :: j_het, j_het_x_aera + real(kind=dp) :: pvs, pis + logical :: do_coating + character(len=*), intent(in) :: coating_spec + real(kind=dp) :: coating_ratio + integer :: i_coat_spec + real(kind=dp) :: coat_spec_vol + !real(kind=dp) :: aero_particle_diameter + + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + + immersed_surface_area = const%pi * aerosol_diameter **2 + + if (do_coating) then + i_coat_spec = string_array_find(aero_data%name, coating_spec) + endif + !print*, i_coat_spec, aero_data%name(i_coat_spec) + total_vol = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + end do + if (do_coating) then + coat_spec_vol = aero_state%apa%particle(i_part)%vol(i_coat_spec) + endif + + j_het_x_aera = 0d0 + !print*, "---------------" + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + !call env_state_saturated_vapor_pressure_water(env_state, pvs) + !call env_state_saturated_vapor_pressure_ice(env_state, pis) + !a_w_ice = pis / pvs + !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + + ! Coating with Illite + !abifm_m = 54.48075 + !abifm_c = -10.66873 + + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ", & + ! j_het, "abifm_m = ", abifm_m, "abifm_c = ", abifm_c + if (do_coating) then + if (i_spec == i_coat_spec) then + surface_ratio = coating_ratio + else + surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec)& + / (total_vol - coat_spec_vol) * (1 - coating_ratio) + endif + else + surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol + endif + !print*, aero_data%name(i_spec), surface_ratio + !print*, i_spec, surface_ratio + j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & + surface_ratio + + + end do + !print*, j_het + !immersed_surface_area = 1.8150015899967208e-12 + !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) + P_freezing = 1 - exp(-j_het_x_aera * del_t) + !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ",& + ! j_het, "P = ", P_freezing + + end subroutine ABIFM + +end module pmc_freezing diff --git a/src/freezing.F90.speedup.F90 b/src/freezing.F90.speedup.F90 new file mode 100644 index 000000000..57c7286b2 --- /dev/null +++ b/src/freezing.F90.speedup.F90 @@ -0,0 +1,318 @@ +! Copyright (C) 2021 University of Illinois at Urbana-Champaign +! Licensed under the GNU General Public License version 2 or (at your +! option) any later version. See the file COPYING for details. + +!> \file +!tate_saturated_vapor_pressure_ice The pmc_freezing module. + +module pmc_freezing + use pmc_aero_state + use pmc_env_state + use pmc_aero_data + use pmc_util + use pmc_aero_particle + use pmc_constants + use pmc_rand + + implicit none + + integer :: freeze_module_run_time = 0 + interface ABIFM + module procedure ABIFM_particle + module procedure ABIFM_max + end interface + +contains + + subroutine freeze(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, do_freezing_CNT, freezing_rate, & + do_coating, coating_spec, coating_ratio) + + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + + integer :: i_part, i_bin, i_class, n_bins, n_class + real(kind=dp) :: tmp + logical :: do_freezing_CNT, do_coating + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: p_freeze, p_frozen + + real(kind=dp) :: p_freeze_max, radius_max, diameter_max + logical :: freeze_thisTime + + integer :: n_entry, ind, spec_bin = 13 + integer :: k_th, n_parts_in_bin + real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + character(len=*), intent(in) :: coating_spec + real(kind=dp) :: coating_ratio + integer :: i_spec_max + real(kind=dp) :: j_het_max + + integer :: loop_count = 0 + integer :: clock_start, clock_end + + call system_clock(clock_start) + call aero_state_sort(aero_state, aero_data) + + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + call env_state_saturated_vapor_pressure_water(env_state_final, pvs) + call env_state_saturated_vapor_pressure_ice(env_state_final, pis) + a_w_ice = pis / pvs + call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + !print*, i_spec_max, aero_data%name(i_spec_max) + !print*, size(aero_state%awa%weight, 2) + + n_bins = aero_sorted_n_bin(aero_state%aero_sorted) + n_class = aero_sorted_n_class(aero_state%aero_sorted) + loop_count = 0 + + loop_bins: do i_bin = 1, n_bins + loop_classes: do i_class = 1, n_class + !print*, "i_bin = ", i_bin, "i_class = ", i_class + n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) + !print*, "pass" + radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) + diameter_max = radius_max * 2 + if (do_freezing_CNT) then + !print*, "Before ABIFM_max" + call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) + !print*, "After ABIFM_max" + else + p_freeze_max = 1 - exp(freezing_rate * del_t) + endif + !print*, "diameter_max = ", diameter_max + + k_th = n_parts_in_bin + 1 + loop_choosed_particles: do while(.TRUE.) + !print*, "k_th = ", k_th + rand = pmc_random_geometric(p_freeze_max) + k_th = k_th - rand + if (k_th <= 0) then + EXIT loop_choosed_particles + endif + loop_count = loop_count + 1 + i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) + !print*, i_bin, k_th, i_part, aero_state_n_part(aero_state), rand + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + if (do_freezing_CNT) then + !print*, "Before ABIFM_particle" + call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + !print*, "After ABIFM_particle" + if (p_freeze > p_freeze_max) then + print*, "Warning! p_freeze > p_freeze_max. & + p_freeze = ", p_freeze, "; p_freeze_max = "& + , p_freeze_max + endif + rand = pmc_random() + !print*, "p_freeze = ", p_freeze, "; p_freeze_max = ", & + !p_freeze_max, "; ratio = ", p_freeze / p_freeze_max + if (rand < p_freeze / p_freeze_max) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + !aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & + ! * (1 - p_freeze) + endif + else + aero_state%apa%particle(i_part)%frozen = .TRUE. + endif + enddo loop_choosed_particles + enddo loop_classes + enddo loop_bins + !print*, "Total particles=", aero_state_n_part(aero_state), "; loop=", loop_count + + call system_clock(clock_end) + !print*, clock_end - clock_start + freeze_module_run_time = freeze_module_run_time + clock_end - clock_start + !print*, freeze_module_run_time + + end subroutine freeze + + subroutine unfreeze(aero_state, aero_data, env_state_initial, & + env_state_final) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + integer :: i_part + + if (env_state_final%temp > const%water_freeze_temp) then + do i_part = 1, aero_state_n_part(aero_state) + !aero_state%apa%particle(i_part)%P_frozen = 0d0 + aero_state%apa%particle(i_part)%frozen = .FALSE. + end do + end if + + end subroutine unfreeze + subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & + a_w_ice, del_t) + !integer :: i_part + !type(aero_data_t), intent(in) :: aero_data + !type(env_state_t), intent(in) :: env_state + !real(kind=dp), intent(out) :: P_freezing + !type(aero_state_t), intent(inout) :: aero_state + + !real(kind=dp) :: aerosol_diameter + !real(kind=dp) :: immersed_surface_area + !real(kind=dp) :: a_w_ice + !real(kind=dp) :: abifm_m, abifm_c + !real(kind=dp) :: del_t + !real(kind=dp) :: j_het + !real(kind=dp) :: pvs, pis + + !!real(kind=dp) :: aero_particle_diameter + + !aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + + !immersed_surface_area = const%pi * aerosol_diameter **2 + !call env_state_saturated_vapor_pressure_water(env_state, pvs) + !call env_state_saturated_vapor_pressure_ice(env_state, pis) + !a_w_ice = pis / pvs + !!print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice + !j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) + !!print*, j_het + !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) + implicit none + integer :: i_part, i_spec + type(aero_data_t), intent(in) :: aero_data + !type(env_state_t), intent(in) :: env_state + real(kind=dp), intent(out) :: P_freezing + type(aero_state_t), intent(inout) :: aero_state + + real(kind=dp) :: aerosol_diameter + real(kind=dp) :: immersed_surface_area + real(kind=dp) :: total_vol + real(kind=dp) :: surface_ratio + real(kind=dp) :: a_w_ice + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: del_t + real(kind=dp) :: j_het, j_het_x_aera + real(kind=dp) :: pvs, pis + + + !real(kind=dp) :: aero_particle_diameter + !print*, "i_part = ", i_part + !print*, "n_part = ", aero_state_n_part(aero_state) + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + !print*, "aerosol_diameter = ", aerosol_diameter + + immersed_surface_area = const%pi * aerosol_diameter **2 + + + total_vol = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + end do + + j_het_x_aera = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + !call env_state_saturated_vapor_pressure_water(env_state, pvs) + !call env_state_saturated_vapor_pressure_ice(env_state, pis) + !a_w_ice = pis / pvs + !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + + ! Coating with Illite + !abifm_m = 54.48075 + !abifm_c = -10.66873 + + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ", & + ! j_het, "abifm_m = ", abifm_m, "abifm_c = ", abifm_c + surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol + !print*, i_spec, surface_ratio + j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & + surface_ratio + + + end do + !print*, j_het + !immersed_surface_area = 1.8150015899967208e-12 + !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) + P_freezing = 1 - exp(-j_het_x_aera * del_t) + !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ",& + ! j_het, "P = ", P_freezing + + end subroutine ABIFM_particle + + subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + implicit none + !type(env_state_t), intent(in) :: env_state + type(aero_data_t), intent(in) :: aero_data + type(aero_state_t), intent(in) :: aero_state + real(kind=dp) :: a_w_ice + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: j_het, j_het_max + !real(kind=dp) :: pvs, pis + integer :: i_spec + integer, intent(out) :: i_spec_max + + j_het_max = -9999.0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + if (j_het > j_het_max) then + j_het_max = j_het + i_spec_max = i_spec + end if + end do + + end subroutine ABIFM_max_spec + + subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) + implicit none + !type(env_state_t), intent(in) :: env_state + real(kind=dp), intent(out) :: P_freezing + type(aero_data_t), intent(in) :: aero_data + real(kind=dp) :: diameter_max + real(kind=dp) :: immersed_surface_area + !real(kind=dp) :: a_w_ice + !real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: del_t + real(kind=dp) :: j_het_max + !real(kind=dp) :: pvs, pis + integer :: i_spec + + immersed_surface_area = const%pi * diameter_max **2 + P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) + + end subroutine ABIFM_max + +end module pmc_freezing diff --git a/src/partmc.F90 b/src/partmc.F90 index fe5d2919e..2fd79491f 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -416,6 +416,8 @@ subroutine partmc_part(file) !! nucleation. If \c do_nucleation is \c yes, then the following !! parameters must also be provided: !! - \subpage input_format_nucleate + !! - \b do_freezing (logical): whether to perform particle + !! freezing. !! - \b rand_init (integer): if greater than zero then use as !! the seed for the random number generator, or if zero then !! generate a random seed for the random number generator --- @@ -578,6 +580,38 @@ subroutine partmc_part(file) run_part_opt%nucleate_type = NUCLEATE_TYPE_INVALID end if + call spec_file_read_logical(file, 'do_freezing', & + run_part_opt%do_freezing) + + if (run_part_opt%do_freezing) then + + call spec_file_read_logical(file, 'do_freezing_CNT', & + run_part_opt%do_freezing_CNT) + + !if (run_part_opt%do_freezing_CNT) then + + ! call spec_file_read_real(file, 'abifm_m', & + ! run_part_opt%abifm_m) + ! call spec_file_read_real(file, 'abifm_c', & + ! run_part_opt%abifm_c) + !else + + if (.not. run_part_opt%do_freezing_CNT) then + + call spec_file_read_real(file, 'freezing_rate', & + run_part_opt%freezing_rate) + + endif + call spec_file_read_logical(file, 'do_coating', & + run_part_opt%do_coating) + if (run_part_opt%do_coating) then + call spec_file_read_string(file, 'coating_spec', & + run_part_opt%coating_spec) + call spec_file_read_real(file, 'coating_ratio', & + run_part_opt%coating_ratio) + endif + endif + call spec_file_read_integer(file, 'rand_init', rand_init) call spec_file_read_logical(file, 'allow_doubling', & run_part_opt%allow_doubling) diff --git a/src/rand.F90 b/src/rand.F90 index e7640b75c..b38cbce0a 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -634,6 +634,41 @@ subroutine uuid4_str(uuid) end subroutine uuid4_str + FUNCTION pmc_random_geometric(P) + ! Generate a random number in geometric distribution with the probability P + ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f + real(kind=dp) :: P, U, TINY + INTEGER :: pmc_random_geometric + + TINY = 1.0D-12 + pmc_random_geometric = 0 + + IF (.NOT.( (P.GE.0.0D0).AND.(P.LE.1.0D0))) THEN + WRITE(*,*) "Range error" + RETURN + ENDIF + + IF (P.GT.0.9D0) THEN + pmc_random_geometric = ZBQLGEO + 1 + U = pmc_random() + do while( U.GT.P ) + !U = ZBQLU01(0.0D0) + pmc_random_geometric = ZBQLGEO + 1 + U = pmc_random() + enddo + !IF (U.GT.P) GOTO 10 + ELSE + U = pmc_random() + + IF (P.GT.TINY) THEN + pmc_random_geometric = 1 + INT( DLOG(U)/DLOG(1.0D0-P) ) + ELSE + pmc_random_geometric = 1 + INT(-DLOG(U)/P) + ENDIF + ENDIF + + END FUNCTION pmc_random_geometric + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! end module pmc_rand diff --git a/src/run_part.F90 b/src/run_part.F90 index 4f8e2ba08..b45521a28 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -22,6 +22,7 @@ module pmc_run_part use pmc_coagulation_dist use pmc_coag_kernel use pmc_nucleate + use pmc_freezing use pmc_mpi use pmc_camp_interface use pmc_photolysis @@ -66,6 +67,17 @@ module pmc_run_part logical :: do_coagulation !> Whether to do nucleation. logical :: do_nucleation + !> Whether to do freezing. + logical :: do_freezing + !> Whether to do freezing using Classical Nucleation Theory + logical :: do_freezing_CNT + + real(kind=dp) :: freezing_rate + !real(kind=dp) :: abifm_m, abifm_c + logical :: do_coating + character(len=300) :: coating_spec + real(kind=dp) :: coating_ratio + !> Allow doubling if needed. logical :: allow_doubling !> Allow halving if needed. @@ -259,6 +271,15 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & progress_n_nuc = progress_n_nuc + n_nuc end if + !print*, run_part_opt%freezing_rate + if (run_part_opt%do_freezing) then + call freeze(aero_state, aero_data, old_env_state, & + env_state, run_part_opt%del_t, run_part_opt%do_freezing_CNT, run_part_opt%freezing_rate, & + run_part_opt%do_coating, run_part_opt%coating_spec, run_part_opt%coating_ratio) + + call unfreeze(aero_state, aero_data, old_env_state, env_state) + end if + if (run_part_opt%do_coagulation) then if (run_part_opt%parallel_coag_type & == PARALLEL_COAG_TYPE_LOCAL) then @@ -386,6 +407,7 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end if end do + print*, "Freeze module total run time:", freeze_module_run_time if (run_part_opt%do_mosaic) then call mosaic_cleanup() diff --git a/test/freezing/README b/test/freezing/README new file mode 100644 index 000000000..1bff2f5b6 --- /dev/null +++ b/test/freezing/README @@ -0,0 +1,6 @@ + +Freezing Test +============= + +This test reproduces immersion freezing simulations from Alpert & Knopf 2016 +(https://doi.org/10.5194/acp-16-2083-2016). diff --git a/test/freezing/aero_back.dat b/test/freezing/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/test/freezing/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/test/freezing/aero_back_dist.dat b/test/freezing/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/test/freezing/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/test/freezing/aero_data.dat b/test/freezing/aero_data.dat new file mode 100644 index 000000000..41cdc37fc --- /dev/null +++ b/test/freezing/aero_data.dat @@ -0,0 +1,2 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) +H2O 1000 0 18d-3 0 diff --git a/test/freezing/aero_emit.dat b/test/freezing/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/test/freezing/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/test/freezing/aero_emit_dist.dat b/test/freezing/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/test/freezing/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/test/freezing/aero_init_comp.dat b/test/freezing/aero_init_comp.dat new file mode 100644 index 000000000..7430b9ccb --- /dev/null +++ b/test/freezing/aero_init_comp.dat @@ -0,0 +1,2 @@ +# mass fractions +H2O 1 diff --git a/test/freezing/aero_init_dist.dat b/test/freezing/aero_init_dist.dat new file mode 100644 index 000000000..1600fb609 --- /dev/null +++ b/test/freezing/aero_init_dist.dat @@ -0,0 +1,7 @@ +mode_name init # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e9 # particle number concentration (#/m^3) +geom_mean_diam 2e-5 # geometric mean diameter (m) +log10_geom_std_dev 0.2 # log_10 of geometric std dev of diameter diff --git a/test/freezing/gas_back.dat b/test/freezing/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/test/freezing/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/test/freezing/gas_data.dat b/test/freezing/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/test/freezing/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/test/freezing/gas_emit.dat b/test/freezing/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/test/freezing/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/test/freezing/gas_init.dat b/test/freezing/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/test/freezing/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/test/freezing/height.dat b/test/freezing/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/test/freezing/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/test/freezing/plot.gnuplot b/test/freezing/plot.gnuplot new file mode 100644 index 000000000..bfd023276 --- /dev/null +++ b/test/freezing/plot.gnuplot @@ -0,0 +1,13 @@ +array files = ['01', '02', '03', '04', '05', '06', '07'] +a=system("ls -1 *.txt | cut -d_ -f4") +array SUM[|files|] +do for [i=1:|files|] { + stats 'freezing_part_0001_000000'.files[i].'_aero_particles.txt' using 6 nooutput + SUM[i] = STATS_sum +} +set style fill solid +set boxwidth 0.5 +set xlabel 'output step' +set ylabel '# frozen' +set yrange [0:] +plot SUM using 1:2:xticlabels(files[column(0)+1]) with boxes \ No newline at end of file diff --git a/test/freezing/pressure.dat b/test/freezing/pressure.dat new file mode 100644 index 000000000..07215617a --- /dev/null +++ b/test/freezing/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 +pressure 1e5 diff --git a/test/freezing/run_part.spec b/test/freezing/run_part.spec new file mode 100644 index 000000000..60371f5f2 --- /dev/null +++ b/test/freezing/run_part.spec @@ -0,0 +1,48 @@ +run_type particle # particle-resolved run +output_prefix out/freezing_part # prefix of output files +n_repeat 1 # number of Monte Carlo repeats +n_part 1000 # total number of particles +restart no # whether to restart from saved state (yes/no) + +t_max 600 # total simulation time (s) +del_t 5 # timestep (s) +t_output 100 # output interval (0 disables) (s) +t_progress 60 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 0.999 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_freezing yes # whether to do freezing (yes/no) + +rand_init 0 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +do_select_weighting no # whether to select weighting explicitly (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/temp.dat b/test/freezing/temp.dat new file mode 100644 index 000000000..491945f6e --- /dev/null +++ b/test/freezing/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0 +temp 288 diff --git a/test/freezing/test_freezing_1.sh b/test/freezing/test_freezing_1.sh new file mode 100755 index 000000000..e5ffd9a59 --- /dev/null +++ b/test/freezing/test_freezing_1.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} +# make the output directory if it doesn't exist +mkdir -p out + +../../partmc run_part.spec +for i in out/freezing_part_*.nc; do ../../extract_aero_particles $i; done; From a31d570b946861fc85cc3ece90c298075c219915 Mon Sep 17 00:00:00 2001 From: Wenhan Tang Date: Wed, 16 Oct 2024 13:54:28 -0500 Subject: [PATCH 004/127] ice nucleation (immersion freezing) development --- src/aero_data.F90 | 1 + src/aero_particle.F90 | 53 ++++- src/aero_state.F90 | 29 +++ src/coagulation.F90 | 6 +- src/constants.F90 | 2 + src/env_state.F90 | 64 ++++++ src/ice_nucleation.F90 | 484 +++++++++++++++++++++++++++++++++++++++++ src/partmc.F90 | 40 +++- src/run_part.F90 | 29 ++- 9 files changed, 687 insertions(+), 21 deletions(-) create mode 100644 src/ice_nucleation.F90 diff --git a/src/aero_data.F90 b/src/aero_data.F90 index 078c99d36..4d28c0215 100644 --- a/src/aero_data.F90 +++ b/src/aero_data.F90 @@ -911,6 +911,7 @@ subroutine aero_data_initialize(aero_data, camp_core) if (spec_type /= CHEM_SPEC_VARIABLE .and. & spec_type /= CHEM_SPEC_CONSTANT .and. & spec_type /= CHEM_SPEC_PSSA) cycle + !print*, spec_names(i_spec)%string if (spec_names(i_spec)%string(1:3) /= "P1.") exit num_spec = num_spec + 1 tmp_spec_names(num_spec)%string = spec_names(i_spec)%string(4:) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 807f15905..da69273a3 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -55,8 +55,14 @@ module pmc_aero_particle real(kind=dp) :: greatest_create_time !> ice-phase flag logical :: frozen + !> immersion freezing temperature + real(kind=dp) :: imf_temperature !> ice-phase probability real(kind=dp) :: P_frozen + !> ice density + real(kind=dp) :: den_ice + !> ice shape + real(kind=dp) :: ice_shape_phi end type aero_particle_t @@ -94,7 +100,10 @@ subroutine aero_particle_shift(aero_particle_from, aero_particle_to) aero_particle_to%greatest_create_time = & aero_particle_from%greatest_create_time aero_particle_to%frozen = aero_particle_from%frozen + aero_particle_to%imf_temperature = aero_particle_from%imf_temperature aero_particle_to%P_frozen = aero_particle_from%P_frozen + aero_particle_to%den_ice = aero_particle_from%den_ice + aero_particle_to%ice_shape_phi = aero_particle_from%ice_shape_phi end subroutine aero_particle_shift @@ -126,7 +135,10 @@ subroutine aero_particle_zero(aero_particle, aero_data) aero_particle%least_create_time = 0d0 aero_particle%greatest_create_time = 0d0 aero_particle%frozen = .FALSE. + aero_particle%imf_temperature = 0d0 aero_particle%P_frozen = 0d0 + aero_particle%den_ice = -9999d0 + aero_particle%ice_shape_phi = -9999d0 end subroutine aero_particle_zero @@ -856,7 +868,7 @@ end function aero_particle_crit_diameter !> Coagulate two particles together to make a new one. The new !> particle will not have its ID set. subroutine aero_particle_coagulate(aero_particle_1, & - aero_particle_2, aero_particle_new) + aero_particle_2, aero_particle_new, aero_data) !> First particle. type(aero_particle_t), intent(in) :: aero_particle_1 @@ -865,6 +877,10 @@ subroutine aero_particle_coagulate(aero_particle_1, & !> Result particle. type(aero_particle_t), intent(inout) :: aero_particle_new + type(aero_data_t), intent(in) :: aero_data + + real(kind=dp) :: ice_vol_1, ice_vol_2 + call assert(203741686, size(aero_particle_1%vol) & == size(aero_particle_2%vol)) call assert(483452167, size(aero_particle_1%n_orig_part) & @@ -895,9 +911,33 @@ subroutine aero_particle_coagulate(aero_particle_1, & aero_particle_2%greatest_create_time) aero_particle_new%frozen = aero_particle_1%frozen .OR. & aero_particle_2%frozen + !!! Not true, need further discussion + aero_particle_new%imf_temperature = max(aero_particle_1%imf_temperature, & + aero_particle_2%imf_temperature) aero_particle_new%P_frozen = 1 - (1 - aero_particle_1%P_frozen) & * (1 - aero_particle_2%P_frozen) + if (aero_particle_new%frozen) then + ice_vol_1 = aero_particle_1%vol(aero_data%i_water) + ice_vol_2 = aero_particle_2%vol(aero_data%i_water) + + if (aero_particle_1%frozen .and. aero_particle_2%frozen) then + ice_vol_1 = aero_particle_1%vol(aero_data%i_water) * & + const%water_density / aero_particle_1%den_ice + ice_vol_2 = aero_particle_2%vol(aero_data%i_water) * & + const%water_density / aero_particle_2%den_ice + aero_particle_new%den_ice = (aero_particle_1%den_ice * ice_vol_1 + & + aero_particle_2%den_ice * ice_vol_2) / (ice_vol_1 + ice_vol_2) + else if(aero_particle_1%frozen) then + aero_particle_new%den_ice = aero_particle_1%den_ice + else + aero_particle_new%den_ice = aero_particle_2%den_ice + end if + aero_particle_new%ice_shape_phi = 1d0 + else + aero_particle_new%den_ice = -9999d0 + end if + end subroutine aero_particle_coagulate @@ -925,7 +965,10 @@ integer function pmc_mpi_pack_size_aero_particle(val) + pmc_mpi_pack_size_real(val%least_create_time) & + pmc_mpi_pack_size_real(val%greatest_create_time) & + pmc_mpi_pack_size_logical(val%frozen) & - + pmc_mpi_pack_size_real(val%P_frozen) + + pmc_mpi_pack_size_real(val%imf_temperature) & + + pmc_mpi_pack_size_real(val%P_frozen) & + + pmc_mpi_pack_size_real(val%den_ice) & + + pmc_mpi_pack_size_real(val%ice_shape_phi) end function pmc_mpi_pack_size_aero_particle @@ -960,7 +1003,10 @@ subroutine pmc_mpi_pack_aero_particle(buffer, position, val) call pmc_mpi_pack_real(buffer, position, val%least_create_time) call pmc_mpi_pack_real(buffer, position, val%greatest_create_time) call pmc_mpi_pack_logical(buffer, position, val%frozen) + call pmc_mpi_pack_real(buffer, position, val%imf_temperature) call pmc_mpi_pack_real(buffer, position, val%P_frozen) + call pmc_mpi_pack_real(buffer, position, val%den_ice) + call pmc_mpi_pack_real(buffer, position, val%ice_shape_phi) call assert(810223998, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif @@ -998,7 +1044,10 @@ subroutine pmc_mpi_unpack_aero_particle(buffer, position, val) call pmc_mpi_unpack_real(buffer, position, val%least_create_time) call pmc_mpi_unpack_real(buffer, position, val%greatest_create_time) call pmc_mpi_unpack_logical(buffer, position, val%frozen) + call pmc_mpi_unpack_real(buffer, position, val%imf_temperature) call pmc_mpi_unpack_real(buffer, position, val%P_frozen) + call pmc_mpi_unpack_real(buffer, position, val%den_ice) + call pmc_mpi_unpack_real(buffer, position, val%ice_shape_phi) call assert(287447241, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif diff --git a/src/aero_state.F90 b/src/aero_state.F90 index dca699700..6596eee72 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2445,7 +2445,10 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & real(kind=dp) :: aero_num_conc(aero_state_n_part(aero_state)) integer :: aero_id(aero_state_n_part(aero_state)) integer :: aero_frozen(aero_state_n_part(aero_state)) + real(kind=dp) :: aero_imf_temperature(aero_state_n_part(aero_state)) real(kind=dp) :: aero_frozen_probability(aero_state_n_part(aero_state)) + real(kind=dp) :: aero_ice_density(aero_state_n_part(aero_state)) + real(kind=dp) :: aero_ice_shape_phi(aero_state_n_part(aero_state)) real(kind=dp) :: aero_least_create_time(aero_state_n_part(aero_state)) real(kind=dp) :: aero_greatest_create_time(aero_state_n_part(aero_state)) integer :: aero_removed_id( & @@ -2575,7 +2578,12 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & aero_state%apa%particle(i_part), aero_data) aero_id(i_part) = aero_state%apa%particle(i_part)%id aero_frozen(i_part) = aero_state%apa%particle(i_part)%frozen + aero_imf_temperature(i_part) & + = aero_state%apa%particle(i_part)%imf_temperature aero_frozen_probability(i_part) = aero_state%apa%particle(i_part)%P_frozen + aero_ice_density(i_part) = aero_state%apa%particle(i_part)%den_ice + aero_ice_shape_phi(i_part) & + = aero_state%apa%particle(i_part)%ice_shape_phi aero_least_create_time(i_part) & = aero_state%apa%particle(i_part)%least_create_time aero_greatest_create_time(i_part) & @@ -2625,9 +2633,18 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & call pmc_nc_write_integer_1d(ncid, aero_frozen, & "aero_frozen", (/ dimid_aero_particle /), & long_name="flag indicating ice phase of each aerosol particle") + call pmc_nc_write_real_1d(ncid, aero_imf_temperature, & + "aero_imf_temperature", (/ dimid_aero_particle /), & + long_name="immersion freezing temperature (Singular)") call pmc_nc_write_real_1d(ncid, aero_frozen_probability, & "aero_frozen_probability", (/ dimid_aero_particle /), & long_name="probability of freezing describing the group of real aerosols represented by each computational particle") + call pmc_nc_write_real_1d(ncid, aero_ice_density, & + "aero_ice_density", (/ dimid_aero_particle /), & + long_name="Ice density if the particle nucleates to ice, -9999 indicates the particle is not an ice.") + call pmc_nc_write_real_1d(ncid, aero_ice_shape_phi, & + "aero_ice_shape_phi", (/ dimid_aero_particle /), & + long_name="Ice shape parameter phi") call pmc_nc_write_real_1d(ncid, aero_least_create_time, & "aero_least_create_time", (/ dimid_aero_particle /), unit="s", & long_name="least creation time of each aerosol particle", & @@ -2820,7 +2837,10 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) real(kind=dp), allocatable :: aero_num_conc(:) integer, allocatable :: aero_id(:) integer, allocatable :: aero_frozen(:) + real(kind=dp), allocatable :: aero_imf_temperature(:) real(kind=dp), allocatable :: aero_frozen_probability(:) + real(kind=dp), allocatable :: aero_ice_density(:) + real(kind=dp), allocatable :: aero_ice_shape_phi(:) real(kind=dp), allocatable :: aero_least_create_time(:) real(kind=dp), allocatable :: aero_greatest_create_time(:) integer, allocatable :: aero_removed_id(:) @@ -2871,8 +2891,14 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) "aero_id") call pmc_nc_read_integer_1d(ncid, aero_frozen, & "aero_frozen") + call pmc_nc_read_real_1d(ncid, aero_imf_temperature, & + "aero_imf_temperature") call pmc_nc_read_real_1d(ncid, aero_frozen_probability, & "aero_frozen_probability", must_be_present=.false.) + call pmc_nc_read_real_1d(ncid, aero_ice_density, & + "aero_ice_density", must_be_present=.false.) + call pmc_nc_read_real_1d(ncid, aero_ice_shape_phi, & + "aero_ice_shape_phi", must_be_present=.false.) call pmc_nc_read_real_1d(ncid, aero_least_create_time, & "aero_least_create_time") call pmc_nc_read_real_1d(ncid, aero_greatest_create_time, & @@ -2912,7 +2938,10 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) aero_particle%water_hyst_leg = aero_water_hyst_leg(i_part) aero_particle%id = aero_id(i_part) aero_particle%frozen = aero_frozen(i_part) + aero_particle%imf_temperature = aero_imf_temperature(i_part) aero_particle%P_frozen = aero_frozen_probability(i_part) + aero_particle%den_ice = aero_ice_density(i_part) + aero_particle%ice_shape_phi = aero_ice_shape_phi(i_part) aero_particle%least_create_time = aero_least_create_time(i_part) aero_particle%greatest_create_time = aero_greatest_create_time(i_part) diff --git a/src/coagulation.F90 b/src/coagulation.F90 index a026f7250..7587abf25 100644 --- a/src/coagulation.F90 +++ b/src/coagulation.F90 @@ -434,7 +434,7 @@ subroutine sample_source_particle(aero_state, aero_data, env_state, & if (pmc_random() < prob_coag) then n_avg = n_avg + 1 call aero_particle_coagulate(source_particle, & - aero_state%apa%particle(i_part), source_particle) + aero_state%apa%particle(i_part), source_particle, aero_data) vol_sq = vol_sq + aero_state%apa%particle(i_part)%vol**2 if (i_samp <= n_samp_remove) then num_conc_i = aero_weight_array_num_conc(aero_state%awa, & @@ -496,7 +496,7 @@ subroutine coag_target_with_source(aero_state, aero_data, bt, ct, & old_num_conc_target = aero_weight_array_num_conc(aero_state%awa, & aero_state%apa%particle(target_part), aero_data) call aero_particle_coagulate(aero_state%apa%particle(target_part), & - source_particle, aero_state%apa%particle(target_part)) + source_particle, aero_state%apa%particle(target_part), aero_data) aero_state%apa%particle(target_part)%id = target_id ! assign to a randomly chosen group new_group = aero_weight_array_rand_group(aero_state%awa, cc, & @@ -841,7 +841,7 @@ subroutine coagulate_weighting(pt1, pt2, ptc, c1, c2, cc, aero_data, & ! create a new particle and set its ID if (create_new) then - call aero_particle_coagulate(pt1, pt2, ptc) + call aero_particle_coagulate(pt1, pt2, ptc, aero_data) call aero_particle_set_weight(ptc, new_group, cc) if (remove_1 .and. (.not. id_1_lost)) then ptc%id = pt1%id diff --git a/src/constants.F90 b/src/constants.F90 index 55899702f..818c16f5a 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -61,6 +61,8 @@ module pmc_constants real(kind=dp) :: air_std_press = 101325d0 !> Dynamic viscosity of air (kg m^{-1} s^{-1}). real(kind=dp) :: air_dyn_visc = 1.78d-5 + !> Reference ice density (Kg m^{-3}). + real(kind=dp) :: reference_ice_density = 920d0 end type const_t !> Fixed variable for accessing the constant's values. diff --git a/src/env_state.F90 b/src/env_state.F90 index 687360fd5..22c41d6b0 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -573,6 +573,70 @@ subroutine env_state_saturated_vapor_pressure_ice isn't applicable" pis = exp(tmp) end subroutine env_state_saturated_vapor_pressure_ice + subroutine env_state_saturated_vapor_pressure_water_2(T, pvs) + ! compute saturated vapor pressure (units : Pa) with respective to water + ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + + real(kind=dp), intent(in) :: T + !> saturated vapor pressure with respective to water (Pa) + real(kind=dp), intent(out) :: pvs + !> temperature (k) + real(kind=dp) :: tmp + + if ((T <= 123) .OR. (T >= 332)) then + write(*, *) "Warning! the environment temperature is less then 123K or & + larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" + end if + + tmp = 54.842763 & + - 6763.22 / T & + - 4.210 * log(T) & + + 0.000367 * T & + + tanh( 0.0415 * (T - 218.8)) & + * (53.878 - 1331.22 / T - 9.44523 * log(T) + 0.014025 * T) + pvs = exp(tmp) + end subroutine env_state_saturated_vapor_pressure_water_2 + + subroutine env_state_saturated_vapor_pressure_ice_2(T, pis) + ! compute saturated vapor pressure (units : Pa) with respective to ice + ! Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + + !> Environment state to read. + real(kind=dp), intent(in) :: T + !> saturated vapor pressure with respective to ice (Pa) + real(kind=dp), intent(out) :: pis + !> temperature (k) + real(kind=dp) :: tmp + + if (T <= 110) then + write(*, *) "Warning! the environment temperature is less then 110K, the & + subroutine env_state_saturated_vapor_pressure_ice isn't applicable" + end if + tmp = 9.550426 & + - 5723.265 / T & + + 3.53068 * log(T) & + - 0.00728332 * T + pis = exp(tmp) + end subroutine env_state_saturated_vapor_pressure_ice_2 + + subroutine env_state_saturated_vapor_pressure_water_3(T, pvs) + ! compute saturated vapor pressure (units : Pa) with respective to water + ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + + real(kind=dp), intent(in) :: T + !> saturated vapor pressure with respective to water (Pa) + real(kind=dp), intent(out) :: pvs + !> temperature (k) + real(kind=dp) :: tmp + + + pvs = const%water_eq_vap_press & + * 10d0**(7.45d0 * (T - const%water_freeze_temp) & + / (T - 38d0)) + + end subroutine env_state_saturated_vapor_pressure_water_3 + + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 new file mode 100644 index 000000000..f58d5911a --- /dev/null +++ b/src/ice_nucleation.F90 @@ -0,0 +1,484 @@ +! Copyright (C) 2024 University of Illinois at Urbana-Champaign +! Licensed under the GNU General Public License version 2 or (at your +! option) any later version. See the file COPYING for details. + +!> \file +!tate_saturated_vapor_pressure_ice The pmc_ice_nucleation module. + +module pmc_ice_nucleation + use pmc_aero_state + use pmc_env_state + use pmc_aero_data + use pmc_util + use pmc_aero_particle + use pmc_constants + use pmc_rand + + implicit none + + !> Used to record the runtime of the ice nucleation module. + integer :: freeze_module_run_time = 0 + !> True: using the binned-tau leaping algorithm for time-dependent scheme. + logical :: do_speedup = .True. + !> False: using the naive algorithm for time-dependent scheme. + !logical :: do_speedup = .False. + + interface ABIFM + module procedure ABIFM_particle + module procedure ABIFM_max + end interface + +contains + + !> Main subroutine for immersion freezing simulation. + subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & + do_coating, coating_spec, coating_ratio) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + !> Flag for coating effect. + logical :: do_coating + !> Immersion freezing scheme (e.g., ABIFM, sigular, constant rate ...). + character(len=*), intent(in) :: immersion_freezing_scheme + !> Freezing rate (only used for the constant rate scheme). + real(kind=dp) :: freezing_rate + !> Coating species (only used for the coating effect). + character(len=*), intent(in) :: coating_spec + !> Surface ratio coated (only used for the coating effect). + real(kind=dp) :: coating_ratio + !> Start and end time (used for timing). + integer :: clock_start, clock_end + + !> Record the start time. + call system_clock(clock_start) + + !> Call the immersion freezing subroutine according to the immersion + !> freezing scheme. + if ((immersion_freezing_scheme .eq. 'ABIFM') & + .OR. (immersion_freezing_scheme .eq. 'const')) then + if (do_speedup) then + call immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & + do_coating, coating_spec, coating_ratio) + else + call immersion_freezing_time_dependent_naive(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & + do_coating, coating_spec, coating_ratio) + end if + else if (immersion_freezing_scheme .eq. 'singular') then + call immersion_freezing_singular(aero_state, aero_data, env_state_initial, & + env_state_final) + else + call assert_msg(121370299, .false., & + 'Error type of immersion freezing scheme') + endif + !> Record the end time. + call system_clock(clock_end) + !> Add to the total time. + freeze_module_run_time = freeze_module_run_time + clock_end - clock_start + + end subroutine immersion_freezing + + !> Initialization for the sigular scheme, sampling the freezing temperature + !> for each particles. + subroutine singular_initialize(aero_state, aero_data) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + integer :: i_part + real(kind=dp) :: a_INAS, b_INAS, p, S, T0, temp + real(kind=dp) :: aerosol_diameter + + T0 = const%water_freeze_temp + do i_part = 1, aero_state_n_part(aero_state) + a_INAS = -0.517 + b_INAS = 8.934 + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + S = const%pi * aerosol_diameter **2 + p = pmc_random() + temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) + aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & + - b_INAS) / a_INAS + !print*, aerosol_diameter, aero_state%apa%particle(i_part)%imf_temperature + end do + end subroutine singular_initialize + + !> Simulation for singular scheme, deciding whether to freeze for each + !> particle. Run in each time step. + subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, env_state_final) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + integer :: i_part, i_bin, i_class, n_bins, n_class + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + do i_part = 1, aero_state_n_part(aero_state) + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + if (env_state_final%temp .le. & + aero_state%apa%particle(i_part)%imf_temperature) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + end if + end do + end subroutine immersion_freezing_singular + + !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), + !> deciding whether to freeze for each particle. Run in each time step. + !> This subroutine applys the binned-tau leaping algorithm for speeding up. + subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & + do_coating, coating_spec, coating_ratio) + + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + + integer :: i_part, i_bin, i_class, n_bins, n_class + real(kind=dp) :: tmp + !logical :: do_freezing_CNT, do_coating + logical :: do_coating + character(len=*), intent(in) :: immersion_freezing_scheme + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: p_freeze, p_frozen + + real(kind=dp) :: p_freeze_max, radius_max, diameter_max + logical :: freeze_thisTime + + integer :: n_entry, ind, spec_bin = 13 + integer :: k_th, n_parts_in_bin + real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + character(len=*), intent(in) :: coating_spec + real(kind=dp) :: coating_ratio + integer :: i_spec_max + real(kind=dp) :: j_het_max + + integer :: loop_count = 0 + call aero_state_sort(aero_state, aero_data) + + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + call env_state_saturated_vapor_pressure_water(env_state_final, pvs) + call env_state_saturated_vapor_pressure_ice(env_state_final, pis) + a_w_ice = pis / pvs + if (immersion_freezing_scheme .eq. 'ABIFM') then + call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + endif + + n_bins = aero_sorted_n_bin(aero_state%aero_sorted) + n_class = aero_sorted_n_class(aero_state%aero_sorted) + loop_count = 0 + + loop_bins: do i_bin = 1, n_bins + loop_classes: do i_class = 1, n_class + n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) + radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) + diameter_max = radius_max * 2 + if (immersion_freezing_scheme .eq. 'ABIFM') then + call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) + else if (immersion_freezing_scheme .eq. 'const') then + p_freeze_max = 1 - exp(freezing_rate * del_t) + endif + + k_th = n_parts_in_bin + 1 + loop_choosed_particles: do while(.TRUE.) + rand = pmc_random_geometric(p_freeze_max) + k_th = k_th - rand + if (k_th <= 0) then + EXIT loop_choosed_particles + endif + loop_count = loop_count + 1 + i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + if (immersion_freezing_scheme .eq. 'ABIFM') then + call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + if (p_freeze > p_freeze_max) then + print*, "Warning! p_freeze > p_freeze_max. & + p_freeze = ", p_freeze, "; p_freeze_max = "& + , p_freeze_max + endif + rand = pmc_random() + if (rand < p_freeze / p_freeze_max) then + !print*, i_part + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + + endif + else + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + + endif + enddo loop_choosed_particles + enddo loop_classes + enddo loop_bins + + + end subroutine immersion_freezing_time_dependent + + !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), + !> deciding whether to freeze for each particle. Run in each time step. + !> This subroutine applys the naive algorithm for reference. + subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & + env_state_initial, env_state_final, del_t, immersion_freezing_scheme, & + freezing_rate, do_coating, coating_spec, coating_ratio) + + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + + integer :: i_part + real(kind=dp) :: tmp + logical :: do_coating + character(len=*), intent(in) :: immersion_freezing_scheme + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + !real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: p_freeze, p_frozen + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + character(len=*), intent(in) :: coating_spec + real(kind=dp) :: coating_ratio + real(kind=dp) :: rand + integer :: clock_start, clock_end + + call system_clock(clock_start) + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + + call env_state_saturated_vapor_pressure_water(env_state_final, pvs) + call env_state_saturated_vapor_pressure_ice(env_state_final, pis) + a_w_ice = pis / pvs + + do i_part = 1, aero_state_n_part(aero_state) + !print*, i_part, H2O_frac(i_part) + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + rand = pmc_random() + + if (immersion_freezing_scheme .eq. 'ABIFM') then + call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) !do_coating, coating_spec, coating_ratio) + else if (immersion_freezing_scheme .eq. 'const') then + p_freeze = 1 - exp(freezing_rate * del_t) + end if + p_frozen = aero_state%apa%particle(i_part)%P_frozen + aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & + * (1 - p_freeze) + + if (rand < p_freeze) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + end if + end do + call system_clock(clock_end) + freeze_module_run_time = freeze_module_run_time + clock_end - clock_start + + end subroutine immersion_freezing_time_dependent_naive + + !> This subroutine simulates the melting process.(Set frozen = .False. + !> for each particle once the temperature is higher than water freezing + !> tempearture) + subroutine melting(aero_state, aero_data, env_state_initial, & + env_state_final) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + integer :: i_part + + if (env_state_final%temp > const%water_freeze_temp) then + do i_part = 1, aero_state_n_part(aero_state) + aero_state%apa%particle(i_part)%frozen = .FALSE. + aero_state%apa%particle(i_part)%den_ice = -9999d0 + aero_state%apa%particle(i_part)%ice_shape_phi = -9999d0 + end do + end if + + end subroutine melting + + !> Calculating the freezing probability for one particle using ABIFM + !> method (Knopf et al.,2013) + + subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & + a_w_ice, del_t) + + implicit none + integer :: i_part, i_spec + type(aero_data_t), intent(in) :: aero_data + real(kind=dp), intent(out) :: P_freezing + type(aero_state_t), intent(inout) :: aero_state + + real(kind=dp) :: aerosol_diameter + real(kind=dp) :: immersed_surface_area + real(kind=dp) :: total_vol + real(kind=dp) :: surface_ratio + real(kind=dp) :: a_w_ice + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: del_t + real(kind=dp) :: j_het, j_het_x_aera + real(kind=dp) :: pvs, pis + + + + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + + immersed_surface_area = const%pi * aerosol_diameter **2 + + + total_vol = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + end do + + j_het_x_aera = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + + + + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol + j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & + surface_ratio + + + end do + + P_freezing = 1 - exp(-j_het_x_aera * del_t) + + end subroutine ABIFM_particle + + !> Calculating the heterogeneous ice nucleation rate coefficient + !> for each species, and fining the species having the largest rate. + subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + implicit none + !type(env_state_t), intent(in) :: env_state + type(aero_data_t), intent(in) :: aero_data + type(aero_state_t), intent(in) :: aero_state + real(kind=dp) :: a_w_ice + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: j_het, j_het_max + !real(kind=dp) :: pvs, pis + integer :: i_spec + integer, intent(out) :: i_spec_max + + j_het_max = -9999.0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + if (j_het > j_het_max) then + j_het_max = j_het + i_spec_max = i_spec + end if + end do + + end subroutine ABIFM_max_spec + + !> Calculating the maximum freezing probability for particles in + !> one bin using ABIFM method (Knopf et al.,2013). Only used by + !> the binned-tau leaping algorithm. + subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) + implicit none + !type(env_state_t), intent(in) :: env_state + real(kind=dp), intent(out) :: P_freezing + type(aero_data_t), intent(in) :: aero_data + real(kind=dp) :: diameter_max + real(kind=dp) :: immersed_surface_area + !real(kind=dp) :: a_w_ice + !real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: del_t + real(kind=dp) :: j_het_max + !real(kind=dp) :: pvs, pis + integer :: i_spec + + immersed_surface_area = const%pi * diameter_max **2 + P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) + + end subroutine ABIFM_max + +end module pmc_ice_nucleation diff --git a/src/partmc.F90 b/src/partmc.F90 index 2fd79491f..dbfe43807 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -545,7 +545,7 @@ subroutine partmc_part(file) call spec_file_read_logical(file, 'do_condensation', & run_part_opt%do_condensation) #ifndef PMC_USE_SUNDIALS - call assert_msg(121370218, & + call assert_msg(121370218, .false., & run_part_opt%do_condensation .eqv. .false., & "cannot use condensation, SUNDIALS support is not compiled in") #endif @@ -580,13 +580,13 @@ subroutine partmc_part(file) run_part_opt%nucleate_type = NUCLEATE_TYPE_INVALID end if - call spec_file_read_logical(file, 'do_freezing', & - run_part_opt%do_freezing) + call spec_file_read_logical(file, 'do_immersion_freezing', & + run_part_opt%do_immersion_freezing) - if (run_part_opt%do_freezing) then + if (run_part_opt%do_immersion_freezing) then - call spec_file_read_logical(file, 'do_freezing_CNT', & - run_part_opt%do_freezing_CNT) + call spec_file_read_string(file, 'immersion_freezing_scheme', & + run_part_opt%immersion_freezing_scheme) !if (run_part_opt%do_freezing_CNT) then @@ -596,10 +596,19 @@ subroutine partmc_part(file) ! run_part_opt%abifm_c) !else - if (.not. run_part_opt%do_freezing_CNT) then + if (run_part_opt%immersion_freezing_scheme .eq. 'const') then call spec_file_read_real(file, 'freezing_rate', & run_part_opt%freezing_rate) + else if (run_part_opt%immersion_freezing_scheme .eq. 'ABIFM') then + continue + + else if (run_part_opt%immersion_freezing_scheme .eq. 'singular') then + continue + else + call assert_msg(121370299, .false., & + "Error type of immersion freezing scheme") + endif call spec_file_read_logical(file, 'do_coating', & @@ -611,7 +620,15 @@ subroutine partmc_part(file) run_part_opt%coating_ratio) endif endif - + + if (run_part_opt%do_immersion_freezing .and. run_part_opt%do_condensation) then + call spec_file_read_logical(file, 'do_ice_shape', & + run_part_opt%do_ice_shape) + call spec_file_read_logical(file, 'do_ice_density', & + run_part_opt%do_ice_density) + call spec_file_read_logical(file, 'do_ice_ventilation', & + run_part_opt%do_ice_ventilation) + endif call spec_file_read_integer(file, 'rand_init', rand_init) call spec_file_read_logical(file, 'allow_doubling', & run_part_opt%allow_doubling) @@ -761,6 +778,10 @@ subroutine partmc_part(file) call cpu_time(run_part_opt%t_wall_start) + + ! Wenhan Tang: add for saving the timing results + open(1997, file="freezing_timing.txt") + do i_repeat = 1,run_part_opt%n_repeat run_part_opt%i_repeat = i_repeat @@ -770,6 +791,7 @@ subroutine partmc_part(file) call aero_state_set_n_part_ideal(aero_state, n_part) else call aero_state_zero(aero_state) + aero_mode_type_exp_present & = aero_dist_contains_aero_mode_type(aero_dist_init, & AERO_MODE_TYPE_EXP) & @@ -811,6 +833,8 @@ subroutine partmc_part(file) end if end do + ! Wenhan Tang: add for the freezing timing + close(1997) call pmc_rand_finalize() diff --git a/src/run_part.F90 b/src/run_part.F90 index b45521a28..e48300f90 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -22,7 +22,7 @@ module pmc_run_part use pmc_coagulation_dist use pmc_coag_kernel use pmc_nucleate - use pmc_freezing + use pmc_ice_nucleation use pmc_mpi use pmc_camp_interface use pmc_photolysis @@ -68,15 +68,21 @@ module pmc_run_part !> Whether to do nucleation. logical :: do_nucleation !> Whether to do freezing. - logical :: do_freezing + !logical :: do_freezing + logical :: do_immersion_freezing !> Whether to do freezing using Classical Nucleation Theory - logical :: do_freezing_CNT + !logical :: do_freezing_CNT + character(len=300) :: immersion_freezing_scheme real(kind=dp) :: freezing_rate !real(kind=dp) :: abifm_m, abifm_c logical :: do_coating character(len=300) :: coating_spec real(kind=dp) :: coating_ratio + + logical :: do_ice_shape + logical :: do_ice_density + logical :: do_ice_ventilation !> Allow doubling if needed. logical :: allow_doubling @@ -252,6 +258,11 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & call print_part_progress(run_part_opt%i_repeat, time, & global_n_part, 0, 0, 0, 0, 0, t_wall_elapsed, t_wall_remain) end if + ! initialize the immersion freezing temperature for Singular scheme + if (run_part_opt%do_immersion_freezing .and. & + run_part_opt%immersion_freezing_scheme .eq. 'singular') then + call singular_initialize(aero_state, aero_data) + end if do i_time = i_time_start,n_time @@ -272,12 +283,12 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end if !print*, run_part_opt%freezing_rate - if (run_part_opt%do_freezing) then - call freeze(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%do_freezing_CNT, run_part_opt%freezing_rate, & + if (run_part_opt%do_immersion_freezing) then + call immersion_freezing(aero_state, aero_data, old_env_state, & + env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme, run_part_opt%freezing_rate, & run_part_opt%do_coating, run_part_opt%coating_spec, run_part_opt%coating_ratio) - call unfreeze(aero_state, aero_data, old_env_state, env_state) + call melting(aero_state, aero_data, old_env_state, env_state) end if if (run_part_opt%do_coagulation) then @@ -300,7 +311,8 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & #ifdef PMC_USE_SUNDIALS if (run_part_opt%do_condensation) then call condense_particles(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t) + env_state, run_part_opt%del_t, run_part_opt%do_ice_shape, & + run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) end if #endif @@ -408,6 +420,7 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end do print*, "Freeze module total run time:", freeze_module_run_time + write(1997, *) freeze_module_run_time if (run_part_opt%do_mosaic) then call mosaic_cleanup() From 8f16bf023f9debb2dc3bd19c4eb31b61644b6bf5 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Fri, 25 Oct 2024 11:30:55 -0500 Subject: [PATCH 005/127] freezing scenario --- scenarios/7_freezing/0_README.md | 21 +++++++ scenarios/7_freezing/1_run.sh | 37 ++++++++++++ .../standard_setting/exp1/aero_back.dat | 6 ++ .../standard_setting/exp1/aero_back_dist.dat | 1 + .../standard_setting/exp1/aero_data.dat | 30 ++++++++++ .../standard_setting/exp1/aero_emit.dat | 6 ++ .../standard_setting/exp1/aero_emit_dist.dat | 1 + .../standard_setting/exp1/aero_init_comp.dat | 15 +++++ .../standard_setting/exp1/aero_init_comp1.dat | 8 +++ .../standard_setting/exp1/aero_init_comp2.dat | 7 +++ .../standard_setting/exp1/aero_init_comp3.dat | 5 ++ .../standard_setting/exp1/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp1/gas_back.dat | 7 +++ .../standard_setting/exp1/gas_data.dat | 7 +++ .../standard_setting/exp1/gas_emit.dat | 7 +++ .../standard_setting/exp1/gas_init.dat | 3 + .../standard_setting/exp1/height.dat | 4 ++ .../standard_setting/exp1/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp1/temp.dat | 4 ++ .../standard_setting/exp2/aero_back.dat | 6 ++ .../standard_setting/exp2/aero_back_dist.dat | 1 + .../standard_setting/exp2/aero_data.dat | 30 ++++++++++ .../standard_setting/exp2/aero_emit.dat | 6 ++ .../standard_setting/exp2/aero_emit_dist.dat | 1 + .../standard_setting/exp2/aero_init_comp.dat | 15 +++++ .../standard_setting/exp2/aero_init_comp1.dat | 8 +++ .../standard_setting/exp2/aero_init_comp2.dat | 7 +++ .../standard_setting/exp2/aero_init_comp3.dat | 5 ++ .../standard_setting/exp2/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp2/gas_back.dat | 7 +++ .../standard_setting/exp2/gas_data.dat | 7 +++ .../standard_setting/exp2/gas_emit.dat | 7 +++ .../standard_setting/exp2/gas_init.dat | 3 + .../standard_setting/exp2/height.dat | 4 ++ .../standard_setting/exp2/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp2/temp.dat | 4 ++ .../standard_setting/exp3/aero_back.dat | 6 ++ .../standard_setting/exp3/aero_back_dist.dat | 1 + .../standard_setting/exp3/aero_data.dat | 30 ++++++++++ .../standard_setting/exp3/aero_emit.dat | 6 ++ .../standard_setting/exp3/aero_emit_dist.dat | 1 + .../standard_setting/exp3/aero_init_comp.dat | 15 +++++ .../standard_setting/exp3/aero_init_comp1.dat | 8 +++ .../standard_setting/exp3/aero_init_comp2.dat | 7 +++ .../standard_setting/exp3/aero_init_comp3.dat | 5 ++ .../standard_setting/exp3/aero_init_dist.dat | 26 +++++++++ .../standard_setting/exp3/gas_back.dat | 7 +++ .../standard_setting/exp3/gas_data.dat | 7 +++ .../standard_setting/exp3/gas_emit.dat | 7 +++ .../standard_setting/exp3/gas_init.dat | 3 + .../standard_setting/exp3/height.dat | 4 ++ .../standard_setting/exp3/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp3/temp.dat | 4 ++ .../standard_setting/exp4/aero_back.dat | 6 ++ .../standard_setting/exp4/aero_back_dist.dat | 1 + .../standard_setting/exp4/aero_data.dat | 30 ++++++++++ .../standard_setting/exp4/aero_emit.dat | 6 ++ .../standard_setting/exp4/aero_emit_dist.dat | 1 + .../standard_setting/exp4/aero_init_comp.dat | 15 +++++ .../standard_setting/exp4/aero_init_comp1.dat | 8 +++ .../standard_setting/exp4/aero_init_comp2.dat | 7 +++ .../standard_setting/exp4/aero_init_comp3.dat | 5 ++ .../standard_setting/exp4/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp4/gas_back.dat | 7 +++ .../standard_setting/exp4/gas_data.dat | 7 +++ .../standard_setting/exp4/gas_emit.dat | 7 +++ .../standard_setting/exp4/gas_init.dat | 3 + .../standard_setting/exp4/height.dat | 4 ++ .../standard_setting/exp4/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp4/temp.dat | 4 ++ .../standard_setting/exp5/aero_back.dat | 6 ++ .../standard_setting/exp5/aero_back_dist.dat | 1 + .../standard_setting/exp5/aero_data.dat | 30 ++++++++++ .../standard_setting/exp5/aero_emit.dat | 6 ++ .../standard_setting/exp5/aero_emit_dist.dat | 1 + .../standard_setting/exp5/aero_init_comp.dat | 15 +++++ .../standard_setting/exp5/aero_init_comp1.dat | 8 +++ .../standard_setting/exp5/aero_init_comp2.dat | 7 +++ .../standard_setting/exp5/aero_init_comp3.dat | 5 ++ .../standard_setting/exp5/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp5/gas_back.dat | 7 +++ .../standard_setting/exp5/gas_data.dat | 7 +++ .../standard_setting/exp5/gas_emit.dat | 7 +++ .../standard_setting/exp5/gas_init.dat | 3 + .../standard_setting/exp5/height.dat | 4 ++ .../standard_setting/exp5/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp5/temp.dat | 4 ++ .../standard_setting/exp6/aero_back.dat | 6 ++ .../standard_setting/exp6/aero_back_dist.dat | 1 + .../standard_setting/exp6/aero_data.dat | 30 ++++++++++ .../standard_setting/exp6/aero_emit.dat | 6 ++ .../standard_setting/exp6/aero_emit_dist.dat | 1 + .../standard_setting/exp6/aero_init_comp.dat | 15 +++++ .../standard_setting/exp6/aero_init_comp1.dat | 8 +++ .../standard_setting/exp6/aero_init_comp2.dat | 7 +++ .../standard_setting/exp6/aero_init_comp3.dat | 5 ++ .../standard_setting/exp6/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp6/gas_back.dat | 7 +++ .../standard_setting/exp6/gas_data.dat | 7 +++ .../standard_setting/exp6/gas_emit.dat | 7 +++ .../standard_setting/exp6/gas_init.dat | 3 + .../standard_setting/exp6/height.dat | 4 ++ .../standard_setting/exp6/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp6/temp.dat | 4 ++ .../standard_setting/exp7/aero_back.dat | 6 ++ .../standard_setting/exp7/aero_back_dist.dat | 1 + .../standard_setting/exp7/aero_data.dat | 30 ++++++++++ .../standard_setting/exp7/aero_emit.dat | 6 ++ .../standard_setting/exp7/aero_emit_dist.dat | 1 + .../standard_setting/exp7/aero_init_comp.dat | 15 +++++ .../standard_setting/exp7/aero_init_comp1.dat | 8 +++ .../standard_setting/exp7/aero_init_comp2.dat | 7 +++ .../standard_setting/exp7/aero_init_comp3.dat | 5 ++ .../standard_setting/exp7/aero_init_dist.dat | 26 +++++++++ .../standard_setting/exp7/gas_back.dat | 7 +++ .../standard_setting/exp7/gas_data.dat | 7 +++ .../standard_setting/exp7/gas_emit.dat | 7 +++ .../standard_setting/exp7/gas_init.dat | 3 + .../standard_setting/exp7/height.dat | 4 ++ .../standard_setting/exp7/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp7/temp.dat | 4 ++ .../standard_setting/exp8/aero_back.dat | 6 ++ .../standard_setting/exp8/aero_back_dist.dat | 1 + .../standard_setting/exp8/aero_data.dat | 30 ++++++++++ .../standard_setting/exp8/aero_emit.dat | 6 ++ .../standard_setting/exp8/aero_emit_dist.dat | 1 + .../standard_setting/exp8/aero_init_comp.dat | 15 +++++ .../standard_setting/exp8/aero_init_comp1.dat | 8 +++ .../standard_setting/exp8/aero_init_comp2.dat | 7 +++ .../standard_setting/exp8/aero_init_comp3.dat | 5 ++ .../standard_setting/exp8/aero_init_dist.dat | 28 +++++++++ .../standard_setting/exp8/gas_back.dat | 7 +++ .../standard_setting/exp8/gas_data.dat | 7 +++ .../standard_setting/exp8/gas_emit.dat | 7 +++ .../standard_setting/exp8/gas_init.dat | 3 + .../standard_setting/exp8/height.dat | 4 ++ .../standard_setting/exp8/pressure.dat | 4 ++ .../7_freezing/standard_setting/exp8/temp.dat | 4 ++ .../7_freezing/standard_setting/run_part.spec | 57 +++++++++++++++++++ 139 files changed, 1255 insertions(+) create mode 100644 scenarios/7_freezing/0_README.md create mode 100755 scenarios/7_freezing/1_run.sh create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp1/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp2/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp3/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp4/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp5/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp6/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp7/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/height.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/pressure.dat create mode 100644 scenarios/7_freezing/standard_setting/exp8/temp.dat create mode 100644 scenarios/7_freezing/standard_setting/run_part.spec diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md new file mode 100644 index 000000000..748720bcf --- /dev/null +++ b/scenarios/7_freezing/0_README.md @@ -0,0 +1,21 @@ + +# Immersion freezing scenario + +[reference] + +This is a scenario demonstrating how to use PartMC to simulate the immersion freezing process of multiple species INPs. + +There are a total of 4*2=8 simulation groups, consisting of four types of INP populations and two temperature curve scenarios. The four types of INPs are 100% illite, 100% Fe2O3, a 50% illite and 50% Fe2O3 external mixture, and an internal mixture. The two temperature curves are a constant -20 degrees Celsius and a steady cooling from -10 to -30 degrees Celsius. The simulation time for each is 10 minutes. + +exp1: 100% illite, constant temperature +exp2: 100% Fe2O3, constant temperature +exp3: external mixture, constant temperature +exp3: internal mixture, constant temperature +exp5: 100% illite, steady cooling +exp6: 100% Fe2O3, steady cooling +exp7: external mixture, steady cooling +exp8: internal mixture, steady cooling + +1. Run 1_run.sh. This is the shell scripts for running all simulations. +2. Run 2_draw.py. This creates the figure showing the frozen fraction time series in each simulation. +3. Run 3_clean.sh. This deletes all files created by the processes above. diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh new file mode 100755 index 000000000..4b6c9374d --- /dev/null +++ b/scenarios/7_freezing/1_run.sh @@ -0,0 +1,37 @@ +#!/bin/bash + +setDir=standard_setting +outDir=out + + +if [ ! -d "$outDir" ]; then + mkdir -p $outDir + echo "Create the folder $outDir" +else + echo "The folder $outDir exists" +fi + +cp -rp $setDir $outDir/ + + +if [ -e "output" ]; then + unlink output +fi +ln -sf $outDir output + +for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 +do + caseName=${expName} + echo "Running $caseName ..." + cp -p $setDir/$expName/*.dat . + cp -p $setDir/run_part.spec . + sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec + mkdir -p output/$caseName + cp -p run_part.spec output/$caseName + cp -p *.dat output/$caseName + sleep 1 + + ../../build/partmc run_part.spec + mv freezing_timing.txt output/$caseName + +done diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_back.dat b/scenarios/7_freezing/standard_setting/exp1/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_data.dat b/scenarios/7_freezing/standard_setting/exp1/aero_data.dat new file mode 100644 index 000000000..fd36a3dff --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +#Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat new file mode 100644 index 000000000..22f127315 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +H2O 0.76595745 +#H2O 0.97923588 +ILT 0.23404255 +#Fe2O3 0.02076412 + diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat new file mode 100644 index 000000000..da5d654db --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_back.dat b/scenarios/7_freezing/standard_setting/exp1/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_data.dat b/scenarios/7_freezing/standard_setting/exp1/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_init.dat b/scenarios/7_freezing/standard_setting/exp1/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/height.dat b/scenarios/7_freezing/standard_setting/exp1/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp1/pressure.dat b/scenarios/7_freezing/standard_setting/exp1/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp1/temp.dat b/scenarios/7_freezing/standard_setting/exp1/temp.dat new file mode 100644 index 000000000..c7af6c62c --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp1/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_back.dat b/scenarios/7_freezing/standard_setting/exp2/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_data.dat b/scenarios/7_freezing/standard_setting/exp2/aero_data.dat new file mode 100644 index 000000000..aed4caf6a --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +#ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat new file mode 100644 index 000000000..f42462e1d --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.63202247 +#ILT 0.03883495 +Fe2O3 0.36797753 + diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat new file mode 100644 index 000000000..da5d654db --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_back.dat b/scenarios/7_freezing/standard_setting/exp2/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_data.dat b/scenarios/7_freezing/standard_setting/exp2/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_init.dat b/scenarios/7_freezing/standard_setting/exp2/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/height.dat b/scenarios/7_freezing/standard_setting/exp2/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp2/pressure.dat b/scenarios/7_freezing/standard_setting/exp2/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp2/temp.dat b/scenarios/7_freezing/standard_setting/exp2/temp.dat new file mode 100644 index 000000000..c7af6c62c --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp2/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_back.dat b/scenarios/7_freezing/standard_setting/exp3/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_data.dat b/scenarios/7_freezing/standard_setting/exp3/aero_data.dat new file mode 100644 index 000000000..3735cb147 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat new file mode 100644 index 000000000..664bfffad --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.97011632 +Fe2O3 0.02076412 +ILT 0.01959831 + diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat new file mode 100644 index 000000000..8c732d5fb --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.76595745 +#OIN 1.0 +ILT 0.23404255 +#KLN 0.0 +#NVF 0.0 +#Fe2O3 0.02076412 + diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat new file mode 100644 index 000000000..ca2343830 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +H2O 0.63202247 +#OIN 0.0 +#ILT 0.03883495 +#KLN 0.0 +#NVF 1.0 +Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat new file mode 100644 index 000000000..078a5d729 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat @@ -0,0 +1,26 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp1.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 0.5e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +mode_name init2 # name of mode source +mass_frac aero_init_comp2.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 0.5e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_back.dat b/scenarios/7_freezing/standard_setting/exp3/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_data.dat b/scenarios/7_freezing/standard_setting/exp3/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_init.dat b/scenarios/7_freezing/standard_setting/exp3/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/height.dat b/scenarios/7_freezing/standard_setting/exp3/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp3/pressure.dat b/scenarios/7_freezing/standard_setting/exp3/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp3/temp.dat b/scenarios/7_freezing/standard_setting/exp3/temp.dat new file mode 100644 index 000000000..c7af6c62c --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp3/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_back.dat b/scenarios/7_freezing/standard_setting/exp4/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_data.dat b/scenarios/7_freezing/standard_setting/exp4/aero_data.dat new file mode 100644 index 000000000..3735cb147 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat new file mode 100644 index 000000000..7ebf4a58d --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.69257407 +Fe2O3 0.20161601 +ILT 0.10580993 + diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat new file mode 100644 index 000000000..bb4b16f87 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_back.dat b/scenarios/7_freezing/standard_setting/exp4/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_data.dat b/scenarios/7_freezing/standard_setting/exp4/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_init.dat b/scenarios/7_freezing/standard_setting/exp4/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/height.dat b/scenarios/7_freezing/standard_setting/exp4/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp4/pressure.dat b/scenarios/7_freezing/standard_setting/exp4/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp4/temp.dat b/scenarios/7_freezing/standard_setting/exp4/temp.dat new file mode 100644 index 000000000..c7af6c62c --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp4/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_back.dat b/scenarios/7_freezing/standard_setting/exp5/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_data.dat b/scenarios/7_freezing/standard_setting/exp5/aero_data.dat new file mode 100644 index 000000000..fd36a3dff --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +#Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat new file mode 100644 index 000000000..22f127315 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +H2O 0.76595745 +#H2O 0.97923588 +ILT 0.23404255 +#Fe2O3 0.02076412 + diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat new file mode 100644 index 000000000..da5d654db --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_back.dat b/scenarios/7_freezing/standard_setting/exp5/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_data.dat b/scenarios/7_freezing/standard_setting/exp5/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_init.dat b/scenarios/7_freezing/standard_setting/exp5/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/height.dat b/scenarios/7_freezing/standard_setting/exp5/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp5/pressure.dat b/scenarios/7_freezing/standard_setting/exp5/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp5/temp.dat b/scenarios/7_freezing/standard_setting/exp5/temp.dat new file mode 100644 index 000000000..0617e7e69 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp5/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_back.dat b/scenarios/7_freezing/standard_setting/exp6/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_data.dat b/scenarios/7_freezing/standard_setting/exp6/aero_data.dat new file mode 100644 index 000000000..aed4caf6a --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +#ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat new file mode 100644 index 000000000..f42462e1d --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.63202247 +#ILT 0.03883495 +Fe2O3 0.36797753 + diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat new file mode 100644 index 000000000..da5d654db --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_back.dat b/scenarios/7_freezing/standard_setting/exp6/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_data.dat b/scenarios/7_freezing/standard_setting/exp6/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_init.dat b/scenarios/7_freezing/standard_setting/exp6/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/height.dat b/scenarios/7_freezing/standard_setting/exp6/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp6/pressure.dat b/scenarios/7_freezing/standard_setting/exp6/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp6/temp.dat b/scenarios/7_freezing/standard_setting/exp6/temp.dat new file mode 100644 index 000000000..0617e7e69 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp6/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_back.dat b/scenarios/7_freezing/standard_setting/exp7/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_data.dat b/scenarios/7_freezing/standard_setting/exp7/aero_data.dat new file mode 100644 index 000000000..3735cb147 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat new file mode 100644 index 000000000..664bfffad --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.97011632 +Fe2O3 0.02076412 +ILT 0.01959831 + diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat new file mode 100644 index 000000000..8c732d5fb --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.76595745 +#OIN 1.0 +ILT 0.23404255 +#KLN 0.0 +#NVF 0.0 +#Fe2O3 0.02076412 + diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat new file mode 100644 index 000000000..ca2343830 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +H2O 0.63202247 +#OIN 0.0 +#ILT 0.03883495 +#KLN 0.0 +#NVF 1.0 +Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat new file mode 100644 index 000000000..078a5d729 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat @@ -0,0 +1,26 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp1.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 0.5e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +mode_name init2 # name of mode source +mass_frac aero_init_comp2.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 0.5e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_back.dat b/scenarios/7_freezing/standard_setting/exp7/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_data.dat b/scenarios/7_freezing/standard_setting/exp7/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_init.dat b/scenarios/7_freezing/standard_setting/exp7/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/height.dat b/scenarios/7_freezing/standard_setting/exp7/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp7/pressure.dat b/scenarios/7_freezing/standard_setting/exp7/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp7/temp.dat b/scenarios/7_freezing/standard_setting/exp7/temp.dat new file mode 100644 index 000000000..0617e7e69 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp7/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_back.dat b/scenarios/7_freezing/standard_setting/exp8/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_data.dat b/scenarios/7_freezing/standard_setting/exp8/aero_data.dat new file mode 100644 index 000000000..3735cb147 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat new file mode 100644 index 000000000..7ebf4a58d --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat @@ -0,0 +1,15 @@ +# mass fractions +#H2O 0.9999580814218781 + +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 + +#Fe2O3 4.191857812185784e-05 +#Al2O3 0.0 +#H2O 0.96116505 +H2O 0.69257407 +Fe2O3 0.20161601 +ILT 0.10580993 + diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat new file mode 100644 index 000000000..19bbc3ad7 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat @@ -0,0 +1,8 @@ +# mass fractions +H2O 0.00 +#OIN 1.0 +#ILT 1.0 +#KLN 0.0 +#NVF 0.0 +Fe2O3 1.0 + diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat new file mode 100644 index 000000000..ac1c43cf3 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat @@ -0,0 +1,7 @@ +# mass fractions +#H2O 0.00 +#OIN 0.0 +#ILT 0.0 +#KLN 0.0 +NVF 1.0 +#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat new file mode 100644 index 000000000..1aa4a6276 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat @@ -0,0 +1,5 @@ +# mass fractions +H2O 0.00 +OIN 0.5 +ILT 0.5 +#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat new file mode 100644 index 000000000..bb4b16f87 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat @@ -0,0 +1,28 @@ +# +mode_name init1 # name of mode source +mass_frac aero_init_comp.dat # species mass fractions +diam_type geometric # type of diameter specified +mode_type log_normal # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) +log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 1e9 +#diam 1.0e-6 # geometric mean diameter (m) + + +#mode_name init2 # name of mode source +#mass_frac aero_init_comp2.dat # species mass fractions +#diam_type geometric # type of diameter specified + + +#mode_type log_normal # type of distribution +#num_conc 0.5e9 # particle number concentration (#/m^3) +#eom_mean_diam 1e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter + +#mode_type mono # type of distribution +#num_conc 0.5e9 +#diam 1.0e-6 # geometric mean diameter (m) + diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_back.dat b/scenarios/7_freezing/standard_setting/exp8/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_data.dat b/scenarios/7_freezing/standard_setting/exp8/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_init.dat b/scenarios/7_freezing/standard_setting/exp8/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/height.dat b/scenarios/7_freezing/standard_setting/exp8/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp8/pressure.dat b/scenarios/7_freezing/standard_setting/exp8/pressure.dat new file mode 100644 index 000000000..570ccfb30 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp8/temp.dat b/scenarios/7_freezing/standard_setting/exp8/temp.dat new file mode 100644 index 000000000..0617e7e69 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/exp8/temp.dat @@ -0,0 +1,4 @@ +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec new file mode 100644 index 000000000..f1029d494 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -0,0 +1,57 @@ +run_type particle # particle-resolved run +output_prefix output/pap1_exp8_acc/freezing_part # prefix of output files +n_repeat 20 # number of Monte Carlo repeats +n_part 10000 # total number of particles +restart no # whether to restart from saved state (yes/no) +#restart_file output/chiexp_indsize_0.8/restart.nc + +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +#coag_kernel brown +do_condensation no # whether to do condensation (yes/no) +#do_init_equilibrate yes # whether to initially equilibrate water (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing yes # whether to do freezing (yes/no) +#immersion_freezing_scheme singular +immersion_freezing_scheme ABIFM +#immersion_freezing_scheme const +#freezing_rate -.01123456789 +do_coating no + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) From 7ec13bc9e94ab666b7c4395c22cd8348d33ea2ec Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Mon, 11 Nov 2024 12:58:47 -0600 Subject: [PATCH 006/127] modify freezing scenario --- scenarios/7_freezing/0_README.md | 5 +- scenarios/7_freezing/2_process.sh | 9 ++ scenarios/7_freezing/3_draw.py | 111 +++++++++++++++++ scenarios/7_freezing/4_clean.sh | 6 + scenarios/7_freezing/freezing_process.F90 | 138 ++++++++++++++++++++++ 5 files changed, 267 insertions(+), 2 deletions(-) create mode 100755 scenarios/7_freezing/2_process.sh create mode 100755 scenarios/7_freezing/3_draw.py create mode 100755 scenarios/7_freezing/4_clean.sh create mode 100644 scenarios/7_freezing/freezing_process.F90 diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md index 748720bcf..d5bc44490 100644 --- a/scenarios/7_freezing/0_README.md +++ b/scenarios/7_freezing/0_README.md @@ -17,5 +17,6 @@ exp7: external mixture, steady cooling exp8: internal mixture, steady cooling 1. Run 1_run.sh. This is the shell scripts for running all simulations. -2. Run 2_draw.py. This creates the figure showing the frozen fraction time series in each simulation. -3. Run 3_clean.sh. This deletes all files created by the processes above. +2. Run 2_process.sh. This is the shell scripts for extract data from netcdf files. +3. Run 3_draw.py. This creates the figure showing the frozen fraction time series in each simulation. (Reproduces the Figure 8 in Tang et al., 2025) +4. (Optional) Run 4_clean.sh. This deletes all files created by the processes above. diff --git a/scenarios/7_freezing/2_process.sh b/scenarios/7_freezing/2_process.sh new file mode 100755 index 000000000..b58a8f9e6 --- /dev/null +++ b/scenarios/7_freezing/2_process.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 +do + echo "Processing $expName ..." + ../../build/freezing_process $expName + + +done diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py new file mode 100755 index 000000000..87b36bedb --- /dev/null +++ b/scenarios/7_freezing/3_draw.py @@ -0,0 +1,111 @@ +#!/usr/bin/env python + +import numpy as np +import matplotlib.pyplot as plt +import matplotlib.colors as mcolors +import matplotlib.ticker as ticker + +cmap = plt.cm.Blues +colors = cmap(np.linspace(0.4, 1, 10)) +chi_list = np.array([0, 0.01, 0.05, 0.1, 0.15, 0.2, 0.4, 0.6, 0.8, 1]) +chi_colors = cmap(0.3 + 0.7 * chi_list) +chi_colors = chi_colors[::-1] + +xlabel_fontsize = 15 +ylabel_fontsize = 15 + +def read_expFile(caseName): + fileName = "out/freezing_part_data_" + caseName + ".txt" + timeList = [] + tempList = [] + ice_ratio_mean = [] + ice_ratio_max = [] + ice_ratio_min = [] + with open(fileName, "r") as fr: + for iline in fr: + time, temp, ff_mean, ff_max, ff_min = iline.strip().split() + timeList.append(float(time)) + tempList.append(float(temp)) + ice_ratio_mean.append(float(ff_mean)) + ice_ratio_max.append(float(ff_max)) + ice_ratio_min.append(float(ff_min)) + timeList = np.array(timeList) + tempList = np.array(tempList) + ice_ratio_mean = np.array(ice_ratio_mean) + ice_ratio_max = np.array(ice_ratio_max) + ice_ratio_min = np.array(ice_ratio_min) + return timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min + + + + +def draw(fig, ax, casesName, ax_label): + OutDir = "output" + casesLabel = ["100% $Illite$", "100% $Fe_2O_3$", "Internal Mixture", "External Mixture"] + casesColor = ["green", "grey", chi_colors[0], chi_colors[-1]] + + sampleName = casesName[0] + casesDict = {} + + for caseName in casesName: + timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min = read_expFile(caseName) + CaseDict = {"timeList": timeList, "tempList": tempList, "ice_ratio_mean": ice_ratio_mean, + "ice_ratio_max": ice_ratio_max, "ice_ratio_min": ice_ratio_min} + casesDict[caseName] = CaseDict + + timeList = casesDict[sampleName]["timeList"] + timeList = timeList / 60 + temperature = casesDict[sampleName]["tempList"] + + axt = ax.twinx() + axt.plot(timeList, temperature - 273.15, color = "red") + axt.set_yticks([-40, -30, -20, -10]) + axt.set_ylim([-102.5, -5]) + axt.grid(linestyle = "--") + + + for ind, caseName in enumerate(casesName): + ice_ratio_mean = casesDict[caseName]["ice_ratio_mean"] + ice_ratio_max = casesDict[caseName]["ice_ratio_max"] + ice_ratio_min = casesDict[caseName]["ice_ratio_min"] + ax.plot(timeList, ice_ratio_mean * 100, label = casesLabel[ind], color = casesColor[ind], linewidth = 0.7) + ax.fill_between(timeList, ice_ratio_min * 100, ice_ratio_max * 100, color = casesColor[ind], alpha = 0.3, edgecolor = None) + #print(caseName, ice_ratio_mean[-1] * 100) + + ax.set_yticks([0, 20, 40, 60, 80]) + ax.set_ylim([-15, 140]) + ax.grid() + + ax.xaxis.set_major_locator(ticker.MultipleLocator(1)) + for label in axt.get_yticklabels(): + label.set_fontsize(12) + label.set_fontname("serif") + axt.set_ylabel("Temperature (˚C)", loc = "top", fontsize = ylabel_fontsize) + for label in ax.get_yticklabels(): + label.set_fontsize(12) + label.set_fontname("serif") + for label in ax.get_xticklabels(): + label.set_fontsize(12) + label.set_fontname("serif") + + + ax.set_ylabel("Frozen fraction (%)", loc = "bottom", fontsize = ylabel_fontsize) + + ax.text(-0.01, 0.96, ax_label, horizontalalignment = "right", verticalalignment = "top", transform = ax.transAxes, fontsize = 15) + return fig, ax + + +if __name__ == "__main__": + + fig, axes = plt.subplots(2, 1, figsize = (10, 7), sharex = True) + plt.subplots_adjust(hspace = 0.1) + ax1, ax2 = axes[0], axes[1] + casesName = ["exp1", "exp2", "exp3", "exp4"] + fig, ax1 = draw(fig, ax1, casesName, ax_label = "(a)") + + casesName = ["exp5", "exp6", "exp7", "exp8"] + fig, ax2 = draw(fig, ax2, casesName, ax_label = "(b)") + ax2.set_xlabel("Time (min)", fontsize = xlabel_fontsize) + + plt.show() + #plt.savefig("figs_code/TSs.png", dpi = 500) diff --git a/scenarios/7_freezing/4_clean.sh b/scenarios/7_freezing/4_clean.sh new file mode 100755 index 000000000..fa51965af --- /dev/null +++ b/scenarios/7_freezing/4_clean.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +rm -f *.dat +rm -fr out +rm -fr __pycache__ +unlink output diff --git a/scenarios/7_freezing/freezing_process.F90 b/scenarios/7_freezing/freezing_process.F90 new file mode 100644 index 000000000..08ac8957d --- /dev/null +++ b/scenarios/7_freezing/freezing_process.F90 @@ -0,0 +1,138 @@ +! --- + +program extract_freezing + use netcdf + implicit none + integer, parameter :: dp = kind(0.d0) + integer, parameter :: out_unit = 65 + character(len=*), parameter :: in_dir = "out" + character(len=*), parameter :: in_prefix = "freezing_part_" + character(len=*), parameter :: out_prefix = "out/freezing_part_data_" + character(len=1000) :: in_filename + character(len=1000) :: out_filename + integer :: ncid + integer :: varid_time, varid_temperature, dimid_aero_particle + integer :: varid_aero_num_conc, varid_aero_frozen + integer :: n_aero_particle + integer :: xtype, ndims, nAtts + character(len=1000) :: tmp_str + real(kind=dp), allocatable :: aero_num_conc(:) + integer(kind=dp), allocatable :: aero_frozen(:) + real(kind=dp) :: time, temperature + real(kind=dp) :: frozen_fraction + real(kind=dp) :: frozen_fraction_total, frozen_fraction_mean + real(kind=dp) :: frozen_fraction_max, frozen_fraction_min + integer, dimension(nf90_max_var_dims) :: dimids + integer :: i_time, i_ens, status, ios + character(len=1000) :: caseName + + call get_command_argument(1, caseName) + write(out_filename, '(a,a,a)') trim(out_prefix), trim(caseName), ".txt" + ! open output + open(unit=out_unit, file=out_filename, iostat=ios) + if (ios /= 0) then + write(0,'(a,a,a,i4)') 'ERROR: unable to open file ', & + trim(out_filename), ' for writing: ', ios + stop 1 + end if + + i_time = 0 + do while(.true.) + i_time = i_time + 1 + !do i_ens = 1, 10 + i_ens = 0 + frozen_fraction_total = 0d0 + frozen_fraction_max = -9999d0 + frozen_fraction_min = 9999d0 + do while(.true.) + i_ens = i_ens + 1 + write(in_filename,'(a,a,a,a,a,i4.4, a, i8.8,a)') & + trim(in_dir), "/", trim(caseName), "/", trim(in_prefix), i_ens, "_", i_time, ".nc" + !print*, in_filename + status = nf90_open(trim(in_filename), NF90_NOWRITE, ncid) + if (status /= NF90_NOERR) then + exit + end if + !print*, trim(in_filename) + + call nc_check(nf90_inq_varid(ncid, "time", varid_time)) + !call nc_check(nf90_inq_varid(ncid, "time", varid_time)) + call nc_check(nf90_get_var(ncid, varid_time, time)) + call nc_check(nf90_inq_varid(ncid, "temperature", varid_temperature)) + !call nc_check(nf90_inq_varid(ncid, "temperature", varid_temperature)) + call nc_check(nf90_get_var(ncid, varid_temperature, temperature)) + + call nc_check(nf90_inq_dimid(ncid, "aero_particle", & + dimid_aero_particle)) + call nc_check(nf90_Inquire_Dimension(ncid, dimid_aero_particle, & + tmp_str, n_aero_particle)) + call nc_check(nf90_inq_varid(ncid, "aero_num_conc", & + varid_aero_num_conc)) + call nc_check(nf90_Inquire_Variable(ncid, varid_aero_num_conc, & + tmp_str, xtype, ndims, dimids, nAtts)) + if ((ndims /= 1) & + .or. (dimids(1) /= dimid_aero_particle)) then + write(*,*) "ERROR: unexpected aero_num_conc dimids" + stop 1 + end if + allocate(aero_num_conc(n_aero_particle)) + call nc_check(nf90_get_var(ncid, varid_aero_num_conc, & + aero_num_conc)) + + call nc_check(nf90_inq_varid(ncid, "aero_frozen", & + varid_aero_frozen)) + call nc_check(nf90_Inquire_Variable(ncid, varid_aero_frozen, & + tmp_str, xtype, ndims, dimids, nAtts)) + if ((ndims /= 1) & + .or. (dimids(1) /= dimid_aero_particle)) then + write(*,*) "ERROR: unexpected aero_frozen dimids" + stop 1 + end if + allocate(aero_frozen(n_aero_particle)) + call nc_check(nf90_get_var(ncid, varid_aero_frozen, & + aero_frozen)) + + call nc_check(nf90_close(ncid)) + frozen_fraction = sum(aero_frozen * aero_num_conc) / & + sum(aero_num_conc) + frozen_fraction_total = frozen_fraction_total + & + frozen_fraction + if (frozen_fraction .gt. frozen_fraction_max) then + frozen_fraction_max = frozen_fraction + end if + if (frozen_fraction .lt. frozen_fraction_min) then + frozen_fraction_min = frozen_fraction + end if + + !print*, time, frozen_fraction, frozen_fraction_max, & + ! frozen_fraction_min + deallocate(aero_num_conc) + deallocate(aero_frozen) + end do + if (i_ens .eq. 1) then + exit + end if + frozen_fraction_mean = frozen_fraction_total / (i_ens - 1) + write(out_unit,'(f12.6,f12.6,e20.10,e20.10,e20.10)') time, temperature,& + frozen_fraction_mean, frozen_fraction_max, frozen_fraction_min + + end do + + close(out_unit) +contains + !> Check return status of NetCDF function calls. + subroutine nc_check(status) + + !> Status return value. + integer, intent(in) :: status + + if (status /= NF90_NOERR) then + write(0,*) nf90_strerror(status) + stop 1 + end if + + end subroutine nc_check +end program extract_freezing + + + From 2cf33810e090a74e8a471031fda1d3bd60aa57a4 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:01:34 -0600 Subject: [PATCH 007/127] Delete scenarios/7_freezing/run_scripts directory remove old directories --- .../run_scripts/freezing_run_chi.sh | 72 ------------------ scenarios/7_freezing/run_scripts/gmon.out | Bin 729272 -> 0 bytes scenarios/7_freezing/run_scripts/multi_run.sh | 15 ---- .../7_freezing/run_scripts/return_spec.sh | 45 ----------- 4 files changed, 132 deletions(-) delete mode 100755 scenarios/7_freezing/run_scripts/freezing_run_chi.sh delete mode 100644 scenarios/7_freezing/run_scripts/gmon.out delete mode 100755 scenarios/7_freezing/run_scripts/multi_run.sh delete mode 100755 scenarios/7_freezing/run_scripts/return_spec.sh diff --git a/scenarios/7_freezing/run_scripts/freezing_run_chi.sh b/scenarios/7_freezing/run_scripts/freezing_run_chi.sh deleted file mode 100755 index 71f631c11..000000000 --- a/scenarios/7_freezing/run_scripts/freezing_run_chi.sh +++ /dev/null @@ -1,72 +0,0 @@ -#!/bin/bash - -set -e -set -v -cd ${0%/*} - -add_pound() { - spec_file=$1 - head=$2 - N=`grep -n "^$head" $spec_file | cut -d: -f1` - sed -i "$N s/^/#/" $spec_file -} - -sub_pound() { - spec_file=$1 - head=$2 - N=`grep -n "^#$head" $spec_file | cut -d: -f1` - sed -i "$N s/^#//" $spec_file -} - -comment_for_restart() { - spec_file=$1 - add_pound $1 gas_data - add_pound $1 gas_init - add_pound $1 aerosol_data - add_pound $1 do_fractal - add_pound $1 aerosol_init - add_pound $1 do_select_weighting - add_pound $1 weight_type - -} - -uncomment_for_restart() { - spec_file=$1 - sub_pound $1 gas_data - sub_pound $1 gas_init - sub_pound $1 aerosol_data - sub_pound $1 do_fractal - sub_pound $1 aerosol_init - sub_pound $1 do_select_weighting - sub_pound $1 weight_type - -} - -caseName=$1 -chi=$2 -t_max=$3 -frzDir=/data/nriemer/a/wenhant2/modeling/partmc/scenarios/7_freezing -cd $frzDir - -mkdir -p $frzDir/output/$caseName -cp -p $frzDir/run_part.spec $frzDir/output/$caseName -cp -p $frzDir/*.dat $frzDir/output/$caseName - -sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" $frzDir/run_part.spec - -sed -i "/t_max /ct_max 0 # total simulation time (s)" $frzDir/run_part.spec -../../build/partmc run_part.spec -$frzDir/aero_init_tools/run_setchi.py $chi $frzDir/output/${caseName}/freezing_part_0001_00000001.nc $frzDir/aero_init_comp.dat - -sed -i "/restart /crestart yes # whether to restart from saved state (yes/no)" $frzDir/run_part.spec -sub_pound $frzDir/run_part.spec restart_file -sed -i "/restart_file /crestart_file output/${caseName}/restart.nc" $frzDir/run_part.spec -sed -i "/t_max /ct_max $3 # total simulation time (s)" $frzDir/run_part.spec -comment_for_restart $frzDir/run_part.spec -sleep 3 - -../../build/partmc run_part.spec -uncomment_for_restart run_part.spec - -sed -i "/restart /crestart no # whether to restart from saved state (yes/no)" $frzDir/run_part.spec -add_pound $frzDir/run_part.spec restart_file diff --git a/scenarios/7_freezing/run_scripts/gmon.out b/scenarios/7_freezing/run_scripts/gmon.out deleted file mode 100644 index 899d97e6277afc737ea9a03556f8bb8d1dd491e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 729272 zcmeIwEpJm%7{KvcV8Al53SR6a35b3GM8y~o5LGiXg^f%Qwk0#*7BCo+S_EWi`wx)#CPxK{@$p#l6TI1uEd#$mp)ZuJL3GuO6-l>*&i1N<6?0&-@SIDnTWL; zH5c>F+J|pNynC#o)OwtE)}Fl+v9@z9Vr^zGVhy?ZB+q=Ykgo~3x0M%{XDhMw{9G}5 z?Zh?h?Cj)t>vq1TxZlrDl`c%b6(-B9=2#EaLOs`I={@*onpcZ-6aE-B`@V@f6o0zTL_*Q|v`7XQtRb do@ZX)K9@dc`r-yBa;*L8HcsaFJ9dsh{s8jAoY?>X diff --git a/scenarios/7_freezing/run_scripts/multi_run.sh b/scenarios/7_freezing/run_scripts/multi_run.sh deleted file mode 100755 index 97707173a..000000000 --- a/scenarios/7_freezing/run_scripts/multi_run.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -expName=chiexp -t_max=3600 -frzDir=/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/ -#mkdir -p $frzDir/output/$expName -#for chi in 0.2 0.4 0.6 0.8 -for chi in 0.001 0.01 0.05 0.1 0.15 -#for chi in 0.999 -do - caseName=${expName}_${chi} - echo $caseName - ./freezing_run_chi.sh $caseName $chi $t_max -done - diff --git a/scenarios/7_freezing/run_scripts/return_spec.sh b/scenarios/7_freezing/run_scripts/return_spec.sh deleted file mode 100755 index 486c27b65..000000000 --- a/scenarios/7_freezing/run_scripts/return_spec.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -add_pound() { - spec_file=$1 - head=$2 - N=`grep -n "^$head" $spec_file | cut -d: -f1` - sed -i "$N s/^/#/" $spec_file -} - -sub_pound() { - spec_file=$1 - head=$2 - N=`grep -n "^#$head" $spec_file | cut -d: -f1` - sed -i "$N s/^#//" $spec_file -} - -comment_for_restart() { - spec_file=$1 - add_pound $1 gas_data - add_pound $1 gas_init - add_pound $1 aerosol_data - add_pound $1 do_fractal - add_pound $1 aerosol_init - add_pound $1 do_select_weighting - add_pound $1 weight_type - -} - -uncomment_for_restart() { - spec_file=$1 - sub_pound $1 gas_data - sub_pound $1 gas_init - sub_pound $1 aerosol_data - sub_pound $1 do_fractal - sub_pound $1 aerosol_init - sub_pound $1 do_select_weighting - sub_pound $1 weight_type - -} - -frzDir=/data/nriemer/a/wenhant2/modeling/partmc/scenarios/7_freezing -cd $frzDir -uncomment_for_restart run_part.spec - -sed -i "/restart /crestart no # whether to restart from saved state (yes/no)" $frzDir/run_part.spec -add_pound $frzDir/run_part.spec restart_file From ff65dede7828f4e35046ee8c1f2b1b63ff34eeb3 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:02:00 -0600 Subject: [PATCH 008/127] Delete scenarios/7_freezing/aero_init_tools directory remove old directories --- .../__pycache__/set_chi.cpython-310.pyc | Bin 6124 -> 0 bytes scenarios/7_freezing/aero_init_tools/chi.py | 132 ----------- .../7_freezing/aero_init_tools/run_setchi.py | 42 ---- .../7_freezing/aero_init_tools/set_chi.py | 211 ------------------ 4 files changed, 385 deletions(-) delete mode 100644 scenarios/7_freezing/aero_init_tools/__pycache__/set_chi.cpython-310.pyc delete mode 100755 scenarios/7_freezing/aero_init_tools/chi.py delete mode 100755 scenarios/7_freezing/aero_init_tools/run_setchi.py delete mode 100755 scenarios/7_freezing/aero_init_tools/set_chi.py diff --git a/scenarios/7_freezing/aero_init_tools/__pycache__/set_chi.cpython-310.pyc b/scenarios/7_freezing/aero_init_tools/__pycache__/set_chi.cpython-310.pyc deleted file mode 100644 index 7f3f028d0a1fa0e3cdf1f7b98769b4899b55e59d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6124 zcmb7IOOG5^6|P&au71wLxSf&k%>t-nE!^a~<^qe2&lGXPBM6r&8^} z1FTtV)L5F2MC`@VZ;B?7rauFX*N~!X$b{OQt8<3U>D;)dxh6Nch0@|S&!M!r!}BO} zyugbn9e#k9dF38+^L&QSf>HnlO97?GOYdp5h16-b{3yD(75IPDHLXy^$Hhj~^MWvl zJ?}&$S{p0Xw(!I1x$3%j?(|Bv)!B?`hO!d@h>|{TK_5j99FFwkkUD1eXMt?k3ZE?81(ON#b zK4x!pq&l!_5N4+_?0RP0V|-52Lh63ED?+Z6Qy*{hBkFR!HXiy_bBEo!FQtDc8#*oX ze~)`iR$Yo{%kPRzP$OEYu0J9HW^$>EqsNre4|%6u4?D8$w@!cn-ul`JvZ~t1o?tma zPoV!$A{kZf5s^yX`danmNwpp|!~X4lKr^n_*H%wgPtwfY0Hx}Tu_sSHuX;CO>Ekbt znuT-`Df$J|w1g#^2QMA4gbmcf z9vnk)%*QzxUr4m=LN)@uiyIiHs3gles%@7BIK%Wm|XRwf1do1d{rE%vj`w>fW zee33ji3OPl6C3#<)koVtxW{HR`B`E>_Q7n0!_^%I&7M%OKkQ+eqINJ^=@GP!PGrh2 z<3*moi`8J%EYgu3J^J!34J%P{mT3P=@gjD24BRCGulqXnA5%(1L9gS9K6q+RBNPXC zl^YM)>VyB_OXrmnkjVtimhjquG`BQ%j3B-rbg(8X=&OK-CQVc(PXI=LO6;jmOXjPwdT9BO@(QZ4{Kj@}bv(<@2EuWg?S(0vP?4!9M=|)bOCy$|&$C0@P zW^^4ALvd( z*t~9|WwQ!fV6*xHtC%I`uvu^xsE5^?8{Lidk<=#XfAmq^L{iAnKqc0;ff%r1vTJjX zEY<=IKDKRf#&u=GIcg#0l-*N}lCwZwkWaKhVQk+T^`x0R22CZJLRb z*$bL z>Lyo8hOaN11Ai(t9vx7h|(8U78pdp3rYFISP(3QF_t z;>cp+PVBe5%>6Tya-E^`arfY;*N~shVtc=l}iMJ?b=(PAyRDMiwu@cy;YX=^U zb_>_H;xK)CwAP^W{b>=^CSIa%2l+& zq@J4ZdVY`^?|Lfp(_*vJ?(W8d5LT|yO#6XBSxyV|XdW4X!90Fc4uN52eCip#Ja*iK z3knl{g$iLPJWyc*XFEUz9Ekx69UDA#LEBT$pZj`|6asuz7@{y1Jc`hAL>tO*#xk6t z3@4MZ$JF>dsH6r&NElfhwlZZA8W0Z=9e8EbD3z45Dpcd<5i*7{m5Mr};u5PNPhlq$ z@XjLfn21BW*~^0X%b?0C9TH-q-t%lIXdS`4TlRP^SEQg3@J$(pj(;xjC4F*SWFn7DmV{Zo3Yy_6r1{s`mQ0 zc7ecrNTXT~^D0sWK_McrO)M6``8 z{3^jZ3-}Q{JM1Z>L-?J*57EQ~G_tY#0tpi`#&-G{8Uz~9D8PbH7jCOsDs0eWgX1}N z7k}A6M`ji>;0a~qNw*fqe<$?E40;g~+te=x+)T?;PZvW4A9$2O4oSCnm^>G!if3zP7M>B+Elp40I%Ep10MCW}5RHH!i;#bcF%d~RmZy_9na)aj388PvD4?$Y zqf+e6j^TPZ=*dU_TSx*#XuFyutQ@LfPw(sDGclln6N>AH@lTs_7z;H-N(sv%s^JK0 zM5Fi*ksV&a7&X;by##Xubv1%hK%{7+rxE7{%DL66_50wI)q8U2?3q(;t)IgOq!pM|Qr)#tj^hpZ~e_h&ZE$mKVY4V9ke zI=k^@ygKDG#G!c~Rke*CxUPQ*R&)dzJ!qD7@+>@XkPb0hU)=9u*@zlz)JpVzqUWXO zr3KH!V{8|%X)i5#-pyUVHRR+xk9V4$C!eMH*C|uRN+G1AODHqjD^$Bm*~A)E?Ih9Y z-pM0H3&e-jfwHct%dh~_l|-N`o|!?c}D2u01S` zZYy?;F25nw1@$IGr8X`PtWKS`q?cU=INwFh)qP(oJ*vw{8Ss-dnmT7QdwG>%WJF4K jbPB=MqgvN~;G6~C7`kr%t6=NO7Ii$q^?%OV=HLGd89&W3 diff --git a/scenarios/7_freezing/aero_init_tools/chi.py b/scenarios/7_freezing/aero_init_tools/chi.py deleted file mode 100755 index 9be67ab3c..000000000 --- a/scenarios/7_freezing/aero_init_tools/chi.py +++ /dev/null @@ -1,132 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import matplotlib.pyplot as plt -from pdb import set_trace - -class aero_init(object): - - def __init__(self, mean = 1e-6, logstd = 0.326, Npart = 1000, species = ["OIN", "ILT", "KLN"]): - self.Npart = Npart - self.species = species - self.Ns = len(species) - - self.aero_dens = { - "H2O": 1000, - "OIN": 2600, - "ILT": 2750, - "KLN": 2650, - } - self.species_dens = [] - for spec in self.species: - self.species_dens.append(self.aero_dens[spec]) - self.species_dens = np.array(self.species_dens) - self.species_dens = self.species_dens.reshape(self.Ns, 1) - self.logDp = np.random.normal(np.log10(mean), logstd, size = (self.Npart)) - self.Dp = 10 **self.logDp - self.Vp = 1.0/6 * np.pi * self.Dp **3 - - - def init_random(self): - - self.species_volume_ratio = np.random.rand(self.Ns, self.Npart) - self.species_volume_ratio_one_parm = np.sum(self.species_volume_ratio, axis = 0) - self.species_volume_ratio = self.species_volume_ratio / self.species_volume_ratio_one_parm - self.species_volume = self.species_volume_ratio * self.Vp - self.update() - - def init_external(self, species_total_volume_ratio): - self.species_volume_ratio = np.full((self.Ns, self.Npart), 0.0) - species_total_volume_ratio = np.array(species_total_volume_ratio) - species_total_volume_ratio = species_total_volume_ratio / np.sum(species_total_volume_ratio) - aero_ind = np.arange(self.Npart) - np.random.shuffle(aero_ind) - species_volume_cumsum = np.cumsum(self.Vp[aero_ind]) - species_volume_cumratio = species_volume_cumsum / species_volume_cumsum[-1] - threshold_ratio = np.cumsum(species_total_volume_ratio) - threshold = [0] - for ratio in threshold_ratio: - threshold.append(np.argmin(np.abs(species_volume_cumratio - ratio)) + 1) - for i_spec in range(self.Ns): - spec_index = aero_ind[threshold[i_spec]:threshold[i_spec+1]] - self.species_volume_ratio[i_spec, spec_index] = 1.0 - self.species_volume = self.species_volume_ratio * self.Vp - - #species_total_volume = (self.species_volume_ratio * self.Vp).sum(axis=1) - #species_total_volume_ratio = species_total_volume / np.sum(species_total_volume) - self.update() - - def update(self): - self.species_volume_ratio = self.species_volume / self.Vp - self.species_mass = self.species_volume * self.species_dens - self.aero_mass = np.sum(self.species_mass, axis = 0) - self.species_total_mass = np.sum(self.species_mass, axis = 1) - self.total_mass = np.sum(self.aero_mass) - self.P_ai = self.species_mass / self.aero_mass - self.P_i = self.aero_mass / self.total_mass - self.P_a = self.species_total_mass / self.total_mass - self.compute_chi() - - def compute_chi(self): - self.Hi = -np.sum(np.where(self.P_ai == 0.0, 0.0, self.P_ai * np.log(self.P_ai)), axis = 0) - self.Ha = np.sum(self.P_i * self.Hi) - self.Hy = -np.sum(np.where(self.P_a == 0.0, 0.0, self.P_a * np.log(self.P_a))) - self.Di = np.exp(self.Hi) - self.Da = np.exp(self.Ha) - self.Dy = np.exp(self.Hy) - self.Db = self.Dy / self.Da - self.chi = (self.Da - 1) / (self.Dy - 1) - - def mixing(self, Npars, chi_obj = None): - assert Npars * 2 <= self.Npart - aero_index = np.arange(self.Npart) - np.random.shuffle(aero_index) - parA_ind = aero_index[:Npars] - parB_ind = aero_index[-Npars:] - parA_vol = self.Vp[parA_ind] - parB_vol = self.Vp[parB_ind] - min_vol = np.min(np.array([parA_vol, parB_vol]), axis = 0) - exchange_ratio = np.random.rand(len(min_vol)) - if not(chi_obj is None): - exchange_ratio *= np.abs(self.chi - chi_obj) / np.abs(chi_obj) - exchange_vol = exchange_ratio * min_vol - exchange_species_vol_A = self.species_volume_ratio[:, parA_ind] * exchange_vol - exchange_species_vol_B = self.species_volume_ratio[:, parB_ind] * exchange_vol - self.species_volume[:, parB_ind] = self.species_volume[:, parB_ind] - exchange_species_vol_B + exchange_species_vol_A - self.species_volume[:, parA_ind] = self.species_volume[:, parA_ind] - exchange_species_vol_A + exchange_species_vol_B - self.update() - #set_trace() - #print(np.sum(self.species_volume, axis = 0)) - - - - - - -if __name__ == "__main__": - chi_list = [] - a = aero_init() -#a.init_random() -#a.compute_chi() -#plt.hist(a.logDp, bins = 100) -#plt.show() - a.init_external([0.3, 0.5, 0.2]) -#a.compute_chi() - chi_obj = 1 - while True: - a.mixing(Npars = 100)#, chi_obj = chi_obj) -#a.compute_chi() - print("chi = ", a.chi) - chi_list.append(a.chi) - if np.abs(a.chi - chi_obj) < 0.0001: - break - print(a.species_volume_ratio) - fig = plt.figure() - ax = fig.add_subplot(1, 1, 1) - ax.plot(chi_list) - ax.set_xlabel("Iteration") - ax.set_ylabel("χ") - ax.grid() - plt.show() - - diff --git a/scenarios/7_freezing/aero_init_tools/run_setchi.py b/scenarios/7_freezing/aero_init_tools/run_setchi.py deleted file mode 100755 index 81e457a7d..000000000 --- a/scenarios/7_freezing/aero_init_tools/run_setchi.py +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env python - -from set_chi import classChi -import numpy as np -import sys - -def read_mass_ratio_dict(compFile): - with open(compFile) as f: - lines = [] - for line in f: - lines.append(line) - mass_ratio_dict = {} - for line in lines: - if line.strip()[0] == "#": - continue - infoList = line.strip().split() - if len(infoList) == 2: - mass_ratio_dict[infoList[0]] = float(infoList[1]) - return mass_ratio_dict - -#compFile = "../aero_init_comp.dat" -#mass_ratio_dict = read_mass_ratio_dict(compFile) -#print(mass_ratio_dict) -#exit() - -chi = float(sys.argv[1]) -init_fileName = sys.argv[2] -compFile = sys.argv[3] -print("===============") -print(chi, init_fileName, compFile) -print("===============") -mass_ratio_dict = read_mass_ratio_dict(compFile) -objChi = classChi(init_fileName = init_fileName) -while True: - objChi.set_chi(chi = chi)#, mass_ratio_dict = mass_ratio_dict) - if np.abs(objChi.chi - chi) < 0.01: - print("Set chi = ", objChi.chi, ".") - break - else: - print("Chi expected = ", chi, "; chi received = ", objChi.chi, ", redo ...") -objChi.output(outFile = "restart.nc") - diff --git a/scenarios/7_freezing/aero_init_tools/set_chi.py b/scenarios/7_freezing/aero_init_tools/set_chi.py deleted file mode 100755 index b272c9bbe..000000000 --- a/scenarios/7_freezing/aero_init_tools/set_chi.py +++ /dev/null @@ -1,211 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import netCDF4 as nc -import matplotlib.pyplot as plt -from pdb import set_trace -import os - -class classChi(object): - - """ - def __init__(self, mean = 1e-6, logstd = 0.326, Npart = 1000, species = ["OIN", "ILT", "KLN"]): - - self.Npart = Npart - self.species = species - self.Ns = len(species) - - self.aero_dens = { - "H2O": 1000, - "OIN": 2600, - "ILT": 2750, - "KLN": 2650, - } - self.species_dens = [] - for spec in self.species: - self.species_dens.append(self.aero_dens[spec]) - self.species_dens = np.array(self.species_dens) - self.species_dens = self.species_dens.reshape(self.Ns, 1) - self.logDp = np.random.normal(np.log10(mean), logstd, size = (self.Npart)) - self.Dp = 10 **self.logDp - self.Vp = 1.0/6 * np.pi * self.Dp **3 - """ - - def __init__(self, init_fileName): - self.init_fileName = init_fileName - self.init_dir = "/".join(init_fileName.split("/")[:-1]) - ncf = nc.Dataset(init_fileName) - aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) - self.species_dens = ncf.variables["aero_density"][:].filled(np.nan) - self.species_dens = self.species_dens[:, np.newaxis] - self.species_name = ncf.variables["aero_species"].names.strip().split(",") - self.Ns_orig, _ = aero_particle_mass.shape - H2O_ind = np.nan - exc_H2O_ind = [] - for ind, specName in enumerate(self.species_name): - if specName.lower() != "h2o": - exc_H2O_ind.append(ind) - else: - assert np.isnan(H2O_ind), "Double \"H2O\" found." - H2O_ind = ind - self.H2O_ind = H2O_ind - self.exc_H2O_ind = exc_H2O_ind - if ~np.isnan(self.H2O_ind): - self.H2O_mass = aero_particle_mass[self.H2O_ind, :] - - aero_particle_mass = aero_particle_mass[exc_H2O_ind, :] - self.species_dens = self.species_dens[exc_H2O_ind, :] - #set_trace() - #self.species_name = self.species_name[exc_H2O_ind] - - self.Ns, self.Npart = aero_particle_mass.shape - if np.isnan(self.H2O_ind): - print("No H2O found.") - assert self.Ns_orig == self.Ns - self.species_volume = aero_particle_mass / self.species_dens - print(np.sum(self.species_volume, axis=1)) - self.Vp = np.sum(self.species_volume, axis = 0) - #assert len(self.species_name) == len(self.species_dens) - #self.aero_dens = {} - #for ind, speciesName in enumerate(self.species_name): - # self.aero_dens[speciesName] = self.species_dens[ind, 0] - ncf.close() - - - - - def init_random(self): - - self.species_volume_ratio = np.random.rand(self.Ns, self.Npart) - self.species_volume_ratio_one_parm = np.sum(self.species_volume_ratio, axis = 0) - self.species_volume_ratio = self.species_volume_ratio / self.species_volume_ratio_one_parm - self.species_volume = self.species_volume_ratio * self.Vp - self.update() - - def init_external(self, species_total_volume_ratio): - self.species_volume_ratio = np.full((self.Ns, self.Npart), 0.0) - species_total_volume_ratio = np.array(species_total_volume_ratio) - species_total_volume_ratio = species_total_volume_ratio / np.sum(species_total_volume_ratio) - aero_ind = np.arange(self.Npart) - np.random.shuffle(aero_ind) - species_volume_cumsum = np.cumsum(self.Vp[aero_ind]) - species_volume_cumratio = species_volume_cumsum / species_volume_cumsum[-1] - threshold_ratio = np.cumsum(species_total_volume_ratio) - threshold = [0] - for ratio in threshold_ratio: - if ratio == 0: - threshold.append(0) - else: - threshold.append(np.argmin(np.abs(species_volume_cumratio - ratio)) + 1) - for i_spec in range(self.Ns): - spec_index = aero_ind[threshold[i_spec]:threshold[i_spec+1]] - self.species_volume_ratio[i_spec, spec_index] = 1.0 - self.species_volume = self.species_volume_ratio * self.Vp - #species_total_volume = (self.species_volume_ratio * self.Vp).sum(axis=1) - #species_total_volume_ratio = species_total_volume / np.sum(species_total_volume) - self.update() - - def update(self): - self.species_volume_ratio = self.species_volume / self.Vp - self.species_mass = self.species_volume * self.species_dens - self.aero_mass = np.sum(self.species_mass, axis = 0) - self.species_total_mass = np.sum(self.species_mass, axis = 1) - self.total_mass = np.sum(self.aero_mass) - self.P_ai = self.species_mass / self.aero_mass - self.P_i = self.aero_mass / self.total_mass - self.P_a = self.species_total_mass / self.total_mass - self.compute_chi() - - def compute_chi(self): - self.Hi = -np.sum(np.where(self.P_ai == 0.0, 0.0, self.P_ai * np.log(self.P_ai)), axis = 0) - self.Ha = np.sum(self.P_i * self.Hi) - self.Hy = -np.sum(np.where(self.P_a == 0.0, 0.0, self.P_a * np.log(self.P_a))) - self.Di = np.exp(self.Hi) - self.Da = np.exp(self.Ha) - self.Dy = np.exp(self.Hy) - self.Db = self.Dy / self.Da - self.chi = (self.Da - 1) / (self.Dy - 1) - - def mixing(self, Npars, chi_obj = None): - assert Npars * 2 <= self.Npart - aero_index = np.arange(self.Npart) - np.random.shuffle(aero_index) - parA_ind = aero_index[:Npars] - parB_ind = aero_index[-Npars:] - parA_vol = self.Vp[parA_ind] - parB_vol = self.Vp[parB_ind] - min_vol = np.min(np.array([parA_vol, parB_vol]), axis = 0) - exchange_ratio = np.random.rand(len(min_vol)) - if not(chi_obj is None): - exchange_ratio *= np.abs(self.chi - chi_obj) / np.abs(chi_obj) - exchange_vol = exchange_ratio * min_vol - exchange_species_vol_A = self.species_volume_ratio[:, parA_ind] * exchange_vol - exchange_species_vol_B = self.species_volume_ratio[:, parB_ind] * exchange_vol - self.species_volume[:, parB_ind] = self.species_volume[:, parB_ind] - exchange_species_vol_B + exchange_species_vol_A - self.species_volume[:, parA_ind] = self.species_volume[:, parA_ind] - exchange_species_vol_A + exchange_species_vol_B - self.update() - #set_trace() - #print(np.sum(self.species_volume, axis = 0)) - - def set_chi(self, chi): - #volume_ratio = [] - #for specName in self.aero_dens: - # if specName in mass_ratio_dict: - # volume_ratio.append(mass_ratio_dict[specName] / self.aero_dens[specName]) - # else: - # volume_ratio.append(0) - #volume_ratio = np.array(volume_ratio) - #volume_ratio /= np.sum(volume_ratio) - volume_ratio = np.sum(self.species_volume,axis=1)/np.sum(self.species_volume) - print("volume_ratio = ", volume_ratio) - self.init_external(volume_ratio) - chi_list = [] - while True: - #self.mixing(Npars = int(self.Npart / 200) if int(self.Npart / 200) > 1 else 1)#, chi_obj = chi_obj) - self.mixing(Npars = 2)#, chi_obj = chi_obj) - #a.compute_chi() - print("chi = ", self.chi) - print(np.sum(self.species_volume, axis=1)) - #print(np.sum(self.species_mass, axis=1)) - #print(np.sum(self.species_volume, axis=0)[500]) - chi_list.append(self.chi) - if chi <= self.chi: - break - print(self.species_mass) - - def output(self, outFile = None): - if outFile is None: - ncf = nc.Dataset(self.init_fileName, "r+") - else: - os.system("cp -p " + self.init_fileName + " " + self.init_dir + "/" + outFile) - ncf = nc.Dataset(self.init_dir + "/" + outFile, "r+") - print("Create " + self.init_dir + "/" + outFile) - aero_particle_mass = np.full((self.Ns_orig, self.Npart), 0.0) - if ~np.isnan(self.H2O_ind): - aero_particle_mass[self.H2O_ind, :] = self.H2O_mass - aero_particle_mass[self.exc_H2O_ind, :] = self.species_mass - else: - aero_particle_mass = self.species_mass - ncf.variables["aero_particle_mass"][:, :] = aero_particle_mass - ncf.close() - - - - - -if __name__ == "__main__": - chi = 0.9 - mass_ratio_dict = { - #"OIN": 0.3, - "ILT": 0.5, - #"KLN": 0.2, - "NVF": 0.5, - } - aa = classChi(init_fileName = "/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/output/chiexp_0.2/freezing_part_0001_00000001.nc") - while True: - aa.set_chi(chi = chi, mass_ratio_dict = mass_ratio_dict) - if np.abs(aa.chi - chi) < 0.01: - break - else: - print("Chi expected = ", chi, "; chi received = ", aa.chi, ", rerun ...") - aa.output(outFile = "freezing_part_0001_restart.nc") From f78b80aa4eed4342e9ea137f279b59c7381c833a Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:02:15 -0600 Subject: [PATCH 009/127] Delete scenarios/7_freezing/visual_tools directory remove old directories --- scenarios/7_freezing/visual_tools/Bench.py | 198 ------- scenarios/7_freezing/visual_tools/__init__.py | 0 .../__pycache__/Bench.cpython-310.pyc | Bin 6461 -> 0 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 179 -> 0 bytes .../__pycache__/bar.cpython-310.pyc | Bin 1613 -> 0 bytes .../__pycache__/case.cpython-310.pyc | Bin 12635 -> 0 bytes .../__pycache__/plots_lib.cpython-310.pyc | Bin 1269 -> 0 bytes scenarios/7_freezing/visual_tools/bar.py | 26 - scenarios/7_freezing/visual_tools/case.py | 494 ------------------ .../7_freezing/visual_tools/plots_lib.py | 34 -- 10 files changed, 752 deletions(-) delete mode 100755 scenarios/7_freezing/visual_tools/Bench.py delete mode 100644 scenarios/7_freezing/visual_tools/__init__.py delete mode 100644 scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc delete mode 100644 scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc delete mode 100644 scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc delete mode 100644 scenarios/7_freezing/visual_tools/__pycache__/case.cpython-310.pyc delete mode 100644 scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc delete mode 100755 scenarios/7_freezing/visual_tools/bar.py delete mode 100755 scenarios/7_freezing/visual_tools/case.py delete mode 100755 scenarios/7_freezing/visual_tools/plots_lib.py diff --git a/scenarios/7_freezing/visual_tools/Bench.py b/scenarios/7_freezing/visual_tools/Bench.py deleted file mode 100755 index 40aede1e4..000000000 --- a/scenarios/7_freezing/visual_tools/Bench.py +++ /dev/null @@ -1,198 +0,0 @@ -#!/usr/bin/env python -# Authors: -# Wenhan TANG - 01/2021 (Original version) -# Wenhan TANG - 05/2021 (Add multicases_subplot_scheme class) -# ... -if __name__ == "__main__": - print("This script can only be imported by another python script using \"import Bench\"") - exit() - -import os -import numpy as np -import matplotlib as mpl -import matplotlib.pyplot as plt -from matplotlib.backends.backend_pdf import PdfPages -mpl.use("PDF") - -class multicases_subplot_scheme(object): - def __init__(self, Nrow_max, Ncol_max, span_dim = None, auto_reverse = True, remain_adjust = True):#, prev = "col"): - self.Nrow_max = Nrow_max - self.Ncol_max = Ncol_max - if span_dim is None: - span_dim = "row" if Nrow_max >= Ncol_max else "col" - span_dim = span_dim.lower() - assert span_dim in ["row", "col"] - self.span_dim = span_dim - self.auto_reverse = auto_reverse - self.subloc_generator = None - self.remain_adjust = remain_adjust - #prev = prev.lower() - #assert prev in ["row", "col"] - #self.prev = prev - - def layout(self, Ncase): - self.Nsub_max = self.Nrow_max * self.Ncol_max - self.Ncase = Ncase - if self.Ncase >= self.Nsub_max: - layout_Nrow = self.Nrow_max - layout_Ncol = self.Ncol_max - else: - if self.span_dim == "row": - layout_Nrow = int(Ncase / self.Ncol_max) + (0 if np.mod(Ncase, self.Ncol_max) == 0 else 1) - layout_Ncol = self.Ncol_max - else: - layout_Nrow = self.Nrow_max - layout_Ncol = int(Ncase / self.Nrow_max) + (0 if np.mod(Ncase, self.Nrow_max) == 0 else 1) - if self.auto_reverse and (self.Nrow_max - self.Ncol_max) * (layout_Nrow - layout_Ncol) < 0: - layout_Nrow, layout_Ncol = layout_Ncol, layout_Nrow - self.layout_Nrow = layout_Nrow - self.layout_Ncol = layout_Ncol - self.layout_Nsub = layout_Nrow * layout_Ncol - #self.Ncase = Ncase - - def subloc_gen_unlimited(self): - ic = 0 - while True: - ic += 1 - if ic > self.layout_Nsub: - # Just turn to next page - ic = 1 - isNextPage = True - else: - isNextPage = False - #isNextPage = True if ic == self.layout_Nsub else False - yield isNextPage, self.layout_Nrow, self.layout_Ncol, ic - - def subloc_gen_limited(self): - icase = 0 - ic = 0 - Ncase_orig = self.Ncase - while(icase < Ncase_orig): - ic += 1 - if ic > self.layout_Nsub: - # Just turn to next page - self.layout(Ncase_orig - icase) - ic = 1 - isNextPage = True - else: - isNextPage = False - #isNextPage = True if ic == self.layout_Nsub else False - icase += 1 - yield isNextPage, self.layout_Nrow, self.layout_Ncol, ic - - def get_subloc(self): - if self.subloc_generator is None: - self.subloc_generator = self.subloc_gen_limited() if self.remain_adjust else self.subloc_gen_unlimited() - return next(self.subloc_generator) - -class BenchPlots(object): - - def __init__(self, figsize = (8, 11), lsc = None): - - if lsc == "l": - figsize = (11, 8) - if lsc == "p": - figsize = (8, 11) - - self.figsize = figsize - self.cfig = plt.figure(figsize = self.figsize) - - def change_pageSize(self, figsize): - self.figsize = figsize - plt.close(self.cfig) - self.cfig = plt.figure(figsize = self.figsize) - - def page_reverse(self): - figsize = self.figsize[1], self.figsize[0] - self.change_pageSize(figsize = figsize) - - def close(self): - pass - - def __del__(self): - pass - - def print(self): - pass - - def clear(self): - self.cfig.clf() - - def next_page(self): - - self.print() - self.clear() - - #def vpage(self, xs, ys, xl, yl, kwargs = None): - def vpage(self, xs, ys, xl, yl, **kwargs): - #if kwargs == None: - # return self.cfig.add_axes([xs,ys,xl,yl]) - #else: - return self.cfig.add_axes([xs,ys,xl,yl], **kwargs) - - def subplot(self, nrows, ncols, index, kwargs = None): - if kwargs == None: - return self.cfig.add_subplot(nrows, ncols, index) - else: - return self.cfig.add_subplot(nrows, ncols, index, **kwargs) - - def subplots(self, nrows = 1, ncols = 1, **kwargs): - return self.cfig.subplots(nrows, ncols, **kwargs) - - def subplot2grid(self, shape, loc, rowspan = 1, colspan = 1, kwargs = None): - if kwargs == None: - return plt.subplot2grid(shape, loc, rowspan = rowspan, colspan = colspan, fig = self.cfig) - else: - return plt.subplot2grid(shape, loc, rowspan = rowspan, colspan = colspan, fig = self.cfig, **kwargs) - - -class BenchPlots_pdf(BenchPlots): - - def __init__(self, figsize = (8, 11), lsc = None, save_name = "bench"): - - BenchPlots.__init__(self, figsize, lsc) - self.pdf = PdfPages(save_name + ".pdf") - self.pdf_open = True - - def close(self): - self.pdf.close() - self.pdf_open = False - - def __del__(self): - #self.pdf.close() - if self.pdf_open: - self.close() - - def print(self): - self.pdf.savefig(self.cfig) - - -class BenchPlots_png(BenchPlots): - - def __init__(self, figsize = (8, 11), lsc = None, save_name = "bench"): - - BenchPlots.__init__(self, figsize, lsc) - self.pngdir = save_name - if not os.path.exists(self.pngdir + "__"): - os.makedirs(self.pngdir + "__") - else: - os.system("rm -f " + self.pngdir + "__/BenchPlots*.png") - self.png_drawing = True - self.pngNum = 1 - - def close(self): - pdfName = self.pngdir + ".pdf" - os.system("convert " + self.pngdir + "__/BenchPlots*.png " + pdfName) - os.system("rm -f " + self.pngdir + "__/BenchPlots*.png") - os.system("rmdir " + self.pngdir + "__") - - #def __del__(self): - # if self.png_drawing: - # self.close() - - def print(self): - plt.savefig(self.pngdir + "__/BenchPlots_" + str(self.pngNum).zfill(3) + ".png", dpi = 300) - self.pngNum += 1 - - - diff --git a/scenarios/7_freezing/visual_tools/__init__.py b/scenarios/7_freezing/visual_tools/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc deleted file mode 100644 index f6cc6b2cf9f242c4bd1d3f42f21132753e56c30a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6461 zcmbtY+ix6K8K3)(*Xy<8xVbe=w`qYcYHess%cU(*T2d&m3dAjFK^l$sjO|HwXSZj@ zNxa&KOUe^UpFq5TWJ?Iih_TeM#!8%D!dPtGOQpoiI*G%dBHY~_4x0vK0$9~(_am6VU%RST+&+*6CHg1n?m*~Z1r zUOS6hVH%}Dy0_J9ce5aE?M9ubvDxzQ<R>q#8SJ7tO zarKHa6H{3a?16n?9U9D)eb-1Yzi<2!V===XIG~O)K;3~0>L~*ZIgQ-b-Fvy+>bC2a zcCn7;%Jow2H_!ph@1ulXDY@4N>G-_|_64&ubsF-?@WC`TR(96i4e6XRyEZj(R3}Ey|xN$E^ zcEcolW#g8JJ>3YCu)Uwg>Bg(UwvM7c!S~}D4Nla=0oH}RR2I>VBBUh*9f;If`brl zGf`aU+5Z57ylpVnhw~}6Nce+YMoiDb-{q9~CP{Sq_DA}ZfFV!7g#S;1~ z$$1j^u0laXOY{n=xmSGaIh4~YAXUhavh>Ze^&+STdIeIYY^!F!cDihf54E_h(T_Gy z>9&y4H$i@3DD#220Ap148^!}uBxKxiG~Cn!nxK_f%7JV}y1*LJ-*!HP1O3RUyA4g? zHZ|4nM%~sIkxzDp2JSbv;#OXc(?)bZqdO}0O0y_7yf!hiU@vLMoft0fE9e%5wtnuI z7B_D?mWQ-zS^w^@pT6mNADe-Iiamy)he`nfVBi+%Yv5s^K(7y=rhsI)bwKjmz&L>V z49p7#;{d?{NR9yH06>m5>6gSXoPkvUReUe4P~k-BhOh~0n>Xrip%8-IC89D`4RjH} zrYrtcKh1JkG%@Jvct>C6XaRD9=IRsxLoBajSjw@)(h*f6o>hxw$MUUJbLC(Cmp&7w z!%xm2N(G}Hh`V?R1>z|F{0vH_t`N6FBZ0vl*oSl>Mn;t26mA(uW&_)-V3s&cO_kTr zfaFdBg*h?{n>n`2@=k;>BhL92#-?=fW%B}^-3zDhV=}33H#RrxJ{@QhcA_B2%LvC^ zwby335(FQ?+ZH|g3^@|PkgbBjt1L};8pE%tS)7n^M?QG+m;E(=sd7eoXm&F{+T%5( zGy@sO;LD#m1}~{9VzIB5)e7Euddwj9nDML8B6Fi3%S`VerLTa%I_Tm(SOH?TvQe(UQHTS9d`&nC zYJvNRQ6AA9OL>jlWKgbSx_%KPH+%XE$dAmtv>orHaX*5Oe3?CVubt%{8uxURJ1rE3 z-elO_#&KzaKOLvYsfj`XJ(Sz0vRi9r|LkOk^8+5Wcf7mLqe3^xUBKR9&9rvxNOV@2 zQ#-O6n)(g}CewNyBzIfwE<(kZ*suX|WEC1LBW797ms>al>_kBiZt)g&uP|P8nJyoU zUz%e4*w7gZoZto=Kh3{%o%lL8Dt1Qa zPe~q_hrF?ju!0FuyP9?jC(k*MQ3az=-^G}e-@++jdQs^-eNmnw;iwHRiTuRUUqiqC zI?24H7wEJ_pZ76D)Wf$bW`Au8)$x!PWAW%m7tZ>3ktAAi=hRpp*#^#zvu(!4!2P57 z38IEbb%cW-DiwtHqqOb~4;=T?rnQfBzm2?|dw1@IdM7=u&F)<)>d&|yVY=+hz$BeB z9FjXGkqsp_$WsUglIklUhAPz)umKGP#)YslvtlXgFqJWa)Zg+O1DV6i-Ez zyvyoIASA3F*+YYSA0z9fxpsBTnkJ{6iM@OWvwzFA_^>1P;`vU+)ogDe&HT8{Ye*@z zZ)_jsQ|*Ixu{diN$<7qpr(4BOvB0cV$oqzs*|(hoJcrRyp2sycy`0$x-lT3CNf|A8 z=49J>gYPdQ1wN*xlyHO~P5 zLQtz9RXhT$;=hLcxFIGx^9_*}K%)@_#A8)mis*^_A1^d`pW4>%B@0*adE)fLA7Av=CV@)I@` z_l0H&j-`RS>2WxyvwuZOc~j$^cMWOQ7XXO)zF_QBd47`^I#iU5k7>?B^8oMQhrobp zL9Kmc@et_nLC<>w-fZY-OO1YYW{bgNs(v5dH`$3_GO-K3Aot=T!g+Et(l;?gHk;dN zrZrVKcl+CMyFJ(8(aQgZBo6OI$o#}6#m@B)Fb1*vd1S}qrr5Ux%6X>!L(KRy7a)>i z+KZL4W^4Uy@i|V-9jI_7^1;DuuhZMtPqDe&2{WGE+VNJ??)2LEnMniQX4wU`mRz>q ze0HjTD{S3~5|yqG3la|rVbk8jyR+Bbx*fGLc{3=?i|$5Pn^K3dlgj-!i?@rnf&4JC ayLc%yeapu!xPpJ#T(MT(TX}2kss93ty)tb8 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 27a8aefc3444d9cf32cbb8a73a840bbcd84ac662..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 179 zcmd1j<>g`kf-f6iCWGk5AOaaM0yz#qT+9L_QW%06G#UL?G8BP?5yY=B{glL#ME$&? z%+%b}BK<`D^3=SH#JmzC{oMSN)SS$`bp3+FqLSQX{o>@*yu_l+{9=9c__U(b)GCl% tS!Qu*VorQXetu4|etdjpUS>&ryk0@&Ee;!?{?eROJCJ?FOhAH#0RZE;F5dtE diff --git a/scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/bar.cpython-310.pyc deleted file mode 100644 index 327652b28c32aff48858b5f1deeb6c3188142ce8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1613 zcmbVMO>f&q5ZzsVNKxdVN!>WDQ#S?d6hZ;ZX>v52egwG`Fbeom2xy57my+2~q`FJT zl0qGVIM)Kb=U@T7=*Q#_?6rr$$kB%YxwLO6$+hFahc3a#S#oyw&6^o!3kx-d@$7b{ z-a3r^O_S3D@7TAv%?3a*#S_-z>auc_d%#-)mZyAJj;g5Y0c*MHlB(h9DZaxR^&_le z+ph_uSFgScU9x7w$FqX_N8CmMa(2iIuDD_^#HS1vQ-Z7;Y|KYqA$}A8y({SZ2RxTq z;ViSZP)^|~cabUYr6}CL_#d2uJ}CLyM;vDz{exlMNOhvl-EzFS-w@W5N!&@Tw;!u~ zx8Yck_N>#5Q|mmEy5U=QH#WKTXqmA>_N^OcQQP{D_oeO_TZd~9r+K8G$YjFwRh;y0 zr>SHvo2ibYZls&CxgVvwGR?nf?u0t-<)$f9nG8&9ns447gBa=K@*9G8?&t zd&tKOD8@{PkvH-SukhOf!aCcU4lW5b99<>*5&-(iexsr<(~CO66@rfdtttWtNS#)N zET}g#WWUsI3fJIjYcmIIMq3+#6@H6f<5jLd!6c-#&Id6eQ7G)=dw_x+vN0P`&4>fk z&I9(GW9FQi3HYG?3NaQO{s_t4KC`KqZMs97E&@7m`^6ve92-98e~RCsLrHnUt%EX{ z2rJe%tk=)u@bS5THWSoRn00$wq{T7qzQ~4a-Ao1jL_Ufr<3W;j);E(Zl!@7bF<)_x zmxt9QubXpTHH3$LE%NnAWBMIc`4wDs z?sC0`>6u_pXI5Xw*Nd{Gm*6lx_y(+r(93vOZ}5SHl);w%EAW}-Ver56pueD#ZxN7y z`l}PGoKi`b2NEs)C19>?No}U>)J8L{!l6|e%ypd^7wCG1ICY1?e09M0@}wAz(qd-Sm6vE^M!wqsdVq_ri>suHgsvg2f8hvv@Z&T=&` zU2^r9a0(-m`?S(F4f-&OVimV&l>!Y46h#{t1)BCxfuKbT7zX&K4T7RjivVej^oP+{ z{mvyh!x`<`QqWz@<>le!x%ZxP?s>8`GGa>jd-n_f!Mra>(hun-{ioq(0YC2~8YVHh zE>&c4RVpg3N?mJc6-|zwWhxoK)VkitR;YVhtjr$7bqjll z?Zg`+6X)W&}oQRoW^so!}Uk1w6ZMT$f~tdMrDOtCg!!YZBz7^m?(Y2I_jA z8P{c&o0Ym+py7#mLFP+zT`vUMby=3qFZv^NFYu1Kgkg+PJ5JCT^91#QbH1zHwk896 z(UP@wGeIU^R|fBl1=>;IS{-N7n#6w}GiAg)3SkaUi zSp;kg!Nkg@<8@@akU;dO3IF-`{H+Y@$9r2@9#Bv}zAN}MxF5aJgIob7CV|rK{S+m;U`A716Co|t#^Q}{z$x^koR&VZOr6s4d+*)h0ot=#J;9RrH!F4H=t(za; zx^=5ljD)3Bg|L*W+_8O!&2{qPwrMwKT;~shI*Sj%kHJn zpplCh7%D9<)Y`Vc66($+*YmxKz+z!N?KPh(G^?@f)}7DeVW@d6?uU8LZnW!;Mc}YE zk3|!UQ5mmYcl}Ve+ij=GLbdKRE9Rn=EGYF#g19oZD6m;=hxf;AVa~F>R`+`lF-16r z{W7b%;#ALBzKcB=)J8KmUnW2_f}z{=+*Z>I4QBiH5}m9}o4ZXvR6U=Ub?nEfFLTn1 zq5k}uf70dAW(8?Rk_C%t`6x!+koYcKK6-hc5Y9Kb>ogobZ_i(Jnk#nGKQw=~%H6i_ z&D%}8e%W)q`A4iCx1V;J)s+|OEj+&9dTVyw@>{LCH&4u%YhMlx%W|8pZ&?M*;hjOF zE4o~i$HlLpY?Dp7AnRyHMNfINfaf}3rc#m(!035VF_Z%CbcOB=WmKL7JP{e8U*?jD zsw7p(AMv`UW%l4Eklu)-pCn$!Da>|dA^p%4kbZ;Y`G&k$R`_;|<`ZbpznA(usUcED z&2IF<(Q4hXn^wY#BY=5CdQEJpAZxce+fqt!Zg6;&lwk5leNvD@ArhiM!4k17s3T=o zx`4&_GL$4#A}KLClu$xykXcsy=W%DL^LWXwlYCt+MaQA!HcS4B zQ%Y97zjSfMt*(?Vy7f98(rW91!*Tc$BJ99o%6gv&VfKQ}g*cfhdDIA9sJYGM)-aXE zY{noLJu*E7gdXj85^^vjcebZVG&J@$qtT-gCmKP4uYxw-pfr?SX0fy78O~dLXXykK8*A?KOUrJP zl{y*`mS?c6kK`i>@kkod#N+z_;ALtapyokphNNmzXoF?mYV=5U3d1}D%^vvxjt+$X z-Zar}e_^povY-6r(dnIozr+pfB3Ti#eNvai3Zx)WgP6@GeTI7wKp_$|kHL1p9tZMu z1+Yw4@4}t}qQ;OcL42~>nd@>lBYIi%FvEH#pq_!AE_%7Z2y)w{t{G$kvnX{Hrgc@8 zVY(~BvMNMuA=F|;4CgX|f&AIUP=D#P$)&i**q|9`5E-MPiH=%azfSv`h@i^&ol-F?+HH56@Ru_3KJk@kzGfAwkDK z)XfKGke`)S4VGobHMv^|vUJaKkU(6E5~OhiG7Gt+d&sAN28AMg&+ce28jLVVDn^Y3 zW01x?Y{glYhtw9>$Q?-S=wdhy0k9hGCGwFX1|9$@D@Gzn;fU?Aa)12GDSwk_Q7NR?Ijl}+l9Msa0UPW0 zNC6x0IYyP}j7-9}fL(%*K|abh;fdg+L}x|m?0KOd)68v#c;M8K1?ZiczsAj7pPHxc zr(orAP1fdN@Qe0LhSK$J`*l`mjV{5Umz+0zY%#0Ntv2hwoucz#k zPH8g+CWtm?-uHq1u9^ zu*jI^h$E3cTEO;(_{bk6*f1OU^91d?FN1umjP+2)92Sfm;^9P^hhqNU2GTwQigUBe&b&*b>WDk-6!rU-(MheU;%1L;w-2&1-n>|B{ zVLcleuE>l9BiB_JDFxR8`ULuKwjMTHw3YJ_t5#G6N%TlGm~j{OZGCEs>h>O8uUD5N(sceLKB+I8>PTps}^ z_vJ3uixm&AmwyQ;hStbm1MGVQf1R41Dh%aD`8FdwNkg8cCbGdDw;gU9wDIX}@F@%} zkEIo9`tfawl-L(3(wET-#|7q?XNbpHI57lSZpAJ}GDz@MXy9SDdbNKue`C|P9xm({~`_PZ*DUw_*WW6QqVcDp@7Dx?Cyn=f91{=@PlLl zeKF(~V4o(4{0$5Wr-uYFQ3|&S;b=n7PZ2=AMC++i!>AGVz@gqUH7nHgsk$4t;do*m zk}3WH&`%Z@xqvKDFQ(b?Nt7QD74pwWTajAuzK!OtP5k4e{PC7@O%}0nWFin5#}Hv4 zhSdKU;^CA(1``fn4DoSJDDXoJ)qy)u+!+$;i;mB55F&Yg1RD@myPQpV{;LG7QPWd8 zkxofDXW?jqX_%cTGhmJwO8yxDbn--88gcU+;og*o@d|&0K^|q3(lMz9&wCtR_NQi`y%2T~55@W{bz z`Q9j`>N9-ThDUV()d08Y!1lN;(hw21$3R!|v4*pxl-z=UERtJ0lRhQ8lI&iyiFa^Z z<6IzR2Sw3HmPiH|%02i|2}UI>NGO~}s!Ky!O9zLuL3S012yhesZ{hiR);Cshj3E(t z4@tIHlM$;X5@{wfiSZk&CdxH7m1_c29x?K(F3l4^UC&>qxe8DW38X;k0cwN%{3hgW zB$l_sOsBFDl4r3r^>;ZSVcEsbzFuDVl_qjwZqq3Z)CBgI);y#rN}XcK_DXgs&X<)g z*!4AMt}`~6^W4>$-c_PRFDNNHDR$FBV)&#^i3$}SS5$q=fJcyq!ml}95%CWR2? zC$^x6COQiKuu}cY$kOQeMi=1qz5waoq=9D*?Az`MR9qF!dkx`pbL|7>*7u#e* zAEi14Ld{8tI@uzTrkzR)cbs4xa4;x7A)P98*E{Hlf?-mgIN6oSa0q@v#vl*(kXAyP zm9&fIX98_iCr!pul85*K@O4v^G?n!{rDUO%#(V>XN(JwU%7T!%ClNQI?0R0uvl0A8 zF%z`s3?fXFI@NQi*@$wYE((3xB0q!`iquo>^mpES=f6Mb9D`pvL%<1Yh=u$-HI$wY zGt2ds4ek)Yr$%Tf;$E1k)?1#_*HNL`urGzGz2ps~%LVEZy}Cw?n0`?G@U3|8B(Y~3 zI#fy`En^~eW00o7zaf_t?I(j}hM|Jn082=@^gIGer25jjP$D3ms1{jJ7ON_lF-7rA zq!w0@!|wGnafKLFV;t2&Ag}Ah3?d@G9|&Qbdqm=tR*fX`%jlti=XM-^iAH52kDqpq zqJL8RLp49?itKgzUc5U*A0o>cq7Rk(qGDSCl%f9(Xwt*&of@c54J3ab1-d~S3n|s{ z%ld*)!eXB58i3@WJIz1=v7SL1mY%AVTt(^pu>iUiT5mt%Swz!8{<6*imk`RyQKMb(Tj>48U9%Ig#5vk5fUMwZ5RY!ZFVphcz?+YtY$q|CMOURK|sQN=nHJnYH zhGduwXD$-{_Uix3>U1z3t6nd-!7KoWk?8g*)D;8f~W6!913gE&4BSD! z4w*n06%BfXv|R>eP{bDa_yAlAFcwnu3%KyBXl`U9JFpS6bV!rC=4}*2a~JQvjm>;W z+@V84-brV`-5%OV9O`en4gO2Cre8*b_5C9CX?^@xs2P+MZUgoWOwNB5ozC9$c^sNF zm3SODkaPx!hC=QcIt&4IfP*-LqbN)=e3T;HK{Sf^qzf>GQ4Ut05jk=y_Qm6K1LMtT zJiUW>0U2816~S2Jl;js{fA;SAKmM0e zM@J4HuX!uK@uT4QA0Ds0^Sk)_(z%7&xBu&(pIiFznT6U{i+}p;55E7+h1xmid-Ff} z;jV?+I~RZNTf6`2?c-%lXbF5i)T&i9-)^p;qI;g$t2_T~-}}c33$-oUb7${)zk9r_M!w+N zwAX8BVj}Rb6X4gVIZDltR6POMw}=dr=%mS@{nXU3{S6atn{FS4ikl=@1M*I)zej;p zW!Ta2<#h-l8G8txNCPD9Hy!C!4S^(z197o{zLJ27hBH9nBhmo9XHn50E1prMT0;nz zycgBH5kBHQWQkT05^hJ?0D&Nl%l5{Jx;LC0jAI5kL0>DTpJR5oTqq4pCX5 zfRcl7jp9vJyD|1n+tx1^;-y87To%3}pSVXMaN#zy(-fw)P<;z((WtkoT+s{byT zT$GXBg{Q}0S}NI#j$2#7M>`rkPmcl|)E7{gvY{u=^MQk*Xp^#NVKX%&jncm0XWzm5f+% zc{;M-B7EIR|=^1TQAlHnY>LoW!QZH0QY8GeRd&C^@) zR~8kM7UBv2yP{FQk^@04ht(W!NVSH&ifnK3e*)fkF90by;yV<|ZX~|~?&!Nr%6Xt@ zgX<)o8kGM~w&4kVH$jO$`iYUa&cr`$lNxSs-m)ydqKhJBg*UMRe37}xe;u9jcKW82 z%1xFPnwHgQu{C@VV}%9FI*;#9qbGb1hVs4CJVedI)O?m23g`JEHMFrPCoZz%B9+=E znBXlX6*xuC{7q`EQX?EP;q~-b&B-ovvP%4$)b!1j=#itz=}1t{(j)F0lBpPTg{+Y= zb#se(pSjhXL3^J$WzHD8jj_qRvDZ)y-7xUe4RbUn-Y=V|wXQYVm!mKv+jRUBCr>>Z vWf5SbB%VhTs%^H!=@^E3YiZR%)J2nTw5rfJ8jjvg#69}TmU#Pr8tHeM diff --git a/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc deleted file mode 100644 index 5c47aabdb01b32fc881af866b24a88296e0dfc12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1269 zcmZux&ubhv6qYoa*_rX|lDHwn#f6?)_L710Rze7ENFju!U{l(mMT}Rnt@W&CEsdSp zXfAcm{TFIOFa4K9PwmOaUUO;Rn~h-u)uOlh@#%d}?|YhdJkANUzxt2mZ!sZ%<7BgO zm^_E>cELy@X+tXd4UtSnZ;6Z)yNaqv(mgWew}2qCIoiz@!Q?q~_bC_!rzNSFOa~7X z&So-^qqnr;gO@yv_V>PR+Rn}9$bHu!HiGl7p}X(Fc<^&ZUGj?jLOu0F5YJ$R*pGa) z{vUSMmdciO`9_)J z+H_CKy}8w^&Xu*Pn+vC1`Gq*NN?ii6_)3}i@sN%3T)VTn5nbChu3TY)M57NLuP#C= zgf_YpA^{?|4W?iTeLz#1K%Y?lZysIVd!NhpUr5ng6 zo5<_Lr+#$90G0K5zXcpQaB$#w<#Y5R;}hmyv%0_3`*)%h~28u zU5FZG24TZ}Wt>_bG)fpK0u(%KTUATYtX&G!_yAN7xpvyPt~PTOc!MZrz*}u?4T2%j zaFnBv(}_jp0;_+nl13dVBP)JnwX9O~hs9P+?nYt=$f8tXbY5HB4dV}j3LL>9m%w72 zZjB3Eo5R*Vfm7?_U}N+6WN;@Xsl*qkj_7xp2{LIST$&AVai|NMmX>6-o-3heM@rtAUx55_<_h5!Hn diff --git a/scenarios/7_freezing/visual_tools/bar.py b/scenarios/7_freezing/visual_tools/bar.py deleted file mode 100755 index 5bd93a04c..000000000 --- a/scenarios/7_freezing/visual_tools/bar.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python -import numpy as np - -def plot_bar(hist, edges, ax, coef = 1e9, **kwargs): - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(edges[:-1], hist / (edges[1:] - edges[:-1]) / coef, align = "edge", width = min_interval * 0.85, **kwargs) - -def bar_minmax(hist, edges, coef = 1e9): - min_interval = np.min(edges[1:] - edges[:-1]) - bar_data = hist / (edges[1:] - edges[:-1]) / coef - bar_min, bar_max = bar_data.min(), bar_data.max() - return bar_min, bar_max - -def mod_xlabel_to_log(ax_hist): - x_ticks = ax_hist.get_xticks() - x_ticks = [int(xtick) for xtick in x_ticks] - x_ticks_label = ["10$^{" + "%.1f" % (xtick) + "}$" for xtick in x_ticks] - ax_hist.set_xticks(x_ticks, x_ticks_label) - return ax_hist - -def mod_ylabel_to_log(ax_hist): - y_ticks = ax_hist.get_yticks() - y_ticks = [int(ytick) for ytick in y_ticks] - y_ticks_label = ["10$^{" + "%.1f" % (ytick) + "}$" for ytick in y_ticks] - ax_hist.set_yticks(y_ticks, y_ticks_label) - return ax_hist diff --git a/scenarios/7_freezing/visual_tools/case.py b/scenarios/7_freezing/visual_tools/case.py deleted file mode 100755 index f2c5c7441..000000000 --- a/scenarios/7_freezing/visual_tools/case.py +++ /dev/null @@ -1,494 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import netCDF4 as nc -from glob import glob -import os - -from pdb import set_trace - -class PartMC_Case(object): - - def __init__(self, caseName, OutDir = "."): - - self.prefix = "freezing_part" - self.caseName = caseName - if os.path.exists(OutDir + "/" + caseName): - self.case_output = OutDir + "/" + caseName - elif os.path.exists(OutDir + "/out_" + caseName): - self.case_output = OutDir + "/out_" + caseName - else: - assert False, caseName + " couln'd be found!" - self.fileList = glob(self.case_output + "/" + self.prefix + "_*.nc") - self.fileList.sort() - self.sample_file = self.fileList[0] - self.ensemble_nameList = [] - for fileName in self.fileList: - ensemble_name = fileName.split("_")[-2] - if not(ensemble_name in self.ensemble_nameList): - self.ensemble_nameList.append(ensemble_name) - - self.N_ensemble = len(self.ensemble_nameList) - self.ensemble_fileList = {} - self.N_file_per_ensemble = None - self.default_ensemble_name = self.ensemble_nameList[0] - - for ensemble_name in self.ensemble_nameList: - fileList = glob(self.case_output + "/" + self.prefix + "_" + ensemble_name + "_*.nc") - fileList.sort() - self.ensemble_fileList[ensemble_name] = fileList - if self.N_file_per_ensemble is None: - self.N_file_per_ensemble = len(fileList) - else: - assert self.N_file_per_ensemble == len(fileList) - - self.read_check_time() - self.nTime = len(self.timeList) - self.read_dimensions() - - self.database = {} - for ensemble_name in self.ensemble_nameList: - self.database[ensemble_name] = {} - - print("PartMC case created.") - print("case name: " + self.caseName) - print("ensemble number: " + str(self.N_ensemble)) - print() - - def clean_database(self): - del(self.database) - self.database = {} - for ensemble_name in self.ensemble_nameList: - self.database[ensemble_name] = {} - - - def add_to_database(self, ensemble_name, varName, dimensions, data, info = {}): - if varName in self.database[ensemble_name][varName]: - print("Warning! " + varName + " already exists in the database, which will be covered.") - self.database[ensemble_name][varName] = (data, dimensions, info) - - def read_from_database(self, ensemble_name, varName): - assert ensemble_name in self.database, "Error! Couldn't find " + ensemble_name + " in " + self.caseName + "." - assert varName in self.database[ensemble_name], "Error! Couldn't find " + varName + " in " + self.caseName + ":" + ensemble_name + "." - data, dimensions, info = self.database[ensemble_name][varName] - return data, dimensions, info - - def compute_RH_ice(self, ensemble_name = None): - if ensemble_name is None: - ensemble_name = self.default_ensmeble_name - if "RH_ice" in self.database[ensemble_name]: - RH_ice, dimensions, info = self.database[ensemble_name]["RH_ice"] - else: - RH_water, _, _ = self.get_var("relative_humidity", ensemble_name) - temperature_tList, _, _ = self.get_var("temperature", ensemble_name) - RH_water = np.array(RH_water) - temperature_tList = np.array(temperature_tList) - es = self.compute_saturated_vapor_pressure_water(temperature_tList) - esi = self.compute_saturated_vapor_pressure_ice(temperature_tList) - ratio = es/esi - RH_ice = RH_water * ratio - dimensions = ("time",) - info = { - "units": "1", - } - self.database[ensemble_name]["RH_ice"] = (RH_ice, dimensions, info) - return RH_ice, dimensions, info - - def compute_ice_mixing_ratio(self, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - - if "ice_mixing_ratio" in self.database[ensemble_name]: - mixing_ratio_tList, dimensions, info = self.database[ensemble_name]["ice_mixing_ratio"] - else: - temperature_tList, _, _ = self.get_var("temperature", ensemble_name) - pressure_tList, _, _ = self.get_var("pressure", ensemble_name) - aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) - part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) - particle_mass_tList, _, _ = self.get_var("aero_particle_mass", ensemble_name) - - mixing_ratio_tList = np.full((self.nTime), np.nan) - for i_time in range(self.nTime): - particle_mass = particle_mass_tList[i_time].sum(axis = 0) - air_density = pressure_tList[i_time] / (286 * temperature_tList[i_time]) - freezing_mass = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time] * particle_mass) - mixing_ratio = freezing_mass / (air_density * 1) - #mixing_ratio *= 1000 # g/g -> g/Kg - mixing_ratio_tList[i_time] = mixing_ratio - - dimensions = ("time",) - info = { - "units": "g/g", - } - self.database[ensemble_name]["ice_mixing_ratio"] = (mixing_ratio_tList, dimensions, info) - - return mixing_ratio_tList, dimensions, info - - def compute_ice_num_conc(self, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - if "ice_num_conc" in self.database[ensemble_name]: - ice_num_conc_tList, dimensions, info = self.database[ensemble_name]["ice_num_conc"] - else: - part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) - aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) - - ice_num_conc_tList = np.full((self.nTime), np.nan) - for i_time in range(self.nTime): - ice_num_conc = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time]) - ice_num_conc_tList[i_time] = ice_num_conc - dimensions = ("time", ) - info = { - "units": "m^-1", - } - self.database[ensemble_name]["ice_num_conc"] = (ice_num_conc_tList, dimensions, info) - - return ice_num_conc_tList, dimensions, info - - - def compute_ice_ratio(self, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - - if "ice_ratio" in self.database[ensemble_name]: - ice_ratio, dimensions, info = self.database[ensemble_name]["ice_ratio"] - else: - part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) - aero_num_conc_tList, _, _ = self.get_var("aero_num_conc", ensemble_name) - - ice_ratio_tList = np.full((self.nTime), np.nan) - for i_time in range(self.nTime): - ice_ratio = np.sum(part_frozen_tList[i_time] * aero_num_conc_tList[i_time]) / np.sum(aero_num_conc_tList[i_time]) - ice_ratio_tList[i_time] = ice_ratio - dimensions = ("time",) - info = { - #"units": "unitless", - "units": "1", - } - self.database[ensemble_name]["ice_ratio"] = (ice_ratio_tList, dimensions, info) - - return ice_ratio_tList, dimensions, info - - def compute_dry_diameter(self, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - - if "dry_diameter" in self.database[ensemble_name]: - dry_diameter_tList, dimensions, info = self.database[ensemble_name]["dry_diameter"] - else: - aero_particle_mass, dimensions, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) - aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) - aero_species_ind, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 - - #_, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) - aero_species_names = aero_species_info["names"].split(",") - - dry_diameter_tList = [] - for i_time in range(self.nTime): - - aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} - aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} - #diameter = self.aero_particle_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) - dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) - dry_diameter_tList.append(dry_diameter) - - dimensions = ("time", ) + dimensions - info = { - "units": "m", - } - self.database[ensemble_name]["dry_diameter"] = (dry_diameter_tList, dimensions, info) - return dry_diameter_tList, dimensions, info - - def compute_diameter(self, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - - if "diameter" in self.database[ensemble_name]: - diameter_tList, dimensions, info = self.database[ensemble_name]["diameter"] - else: - aero_particle_mass, dimensions, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) - aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) - aero_species_ind, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 - - #_, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) - aero_species_names = aero_species_info["names"].split(",") - - diameter_tList = [] - for i_time in range(self.nTime): - - aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} - aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind[i_time] - 1, aero_species_names)} - diameter = self.aero_particle_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) - #dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) - diameter_tList.append(diameter) - - dimensions = ("time", ) + dimensions - info = { - "units": "m", - } - self.database[ensemble_name]["diameter"] = (diameter_tList, dimensions, info) - return diameter_tList, dimensions, info - - def compute_dwetddry(self, ensemble_name = None): - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - if "dwetddry" in self.database[ensemble_name]: - dwetddry_tList, dimensions, info = self.database[ensemble_name]["dwetddry"] - else: - dwet_tList, dimensions, _ = self.compute_diameter(ensemble_name = ensemble_name) - ddry_tList, _, _ = self.compute_dry_diameter(ensemble_name = ensemble_name) - dwetddry_tList = [] - - for i_time in range(self.nTime): - dwetddry = dwet_tList[i_time] / ddry_tList[i_time] - dwetddry_tList.append(dwetddry) - info = { - "units": "1", - } - self.database[ensemble_name]["dwetddry"] = (dwetddry_tList, dimensions, info) - return dwetddry_tList, dimensions, info - - def compute_droplets_ratio(self, droplets_threshold = 1.4, ensemble_name = None): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - if "droplets_ratio" in self.database[ensemble_name]: - droplets_ratio_tList, dimensions, info = self.database[ensemble_name]["droplets_ratio"] - else: - dwetddry_tList, dimensions, info = self.compute_dwetddry(ensemble_name = ensemble_name) - droplets_ratio_tList = [] - for i_time in range(self.nTime): - droplets_ratio = np.sum(dwetddry_tList[i_time] >= droplets_threshold) / len(dwetddry_tList[i_time]) - droplets_ratio_tList.append(droplets_ratio) - - droplets_ratio_tList = np.array(droplets_ratio_tList) - dimensions = ("time",) - info = { - "units": "1", - } - self.database[ensemble_name]["droplets_ratio"] = droplets_ratio_tList, dimensions, info - return droplets_ratio_tList, dimensions, info - - - - - def get_var(self, varName, ensemble_name = None): - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - print("Warning! Undefine ensemble_name, using " + ensemble_name + " as a default value.") - if varName in self.database[ensemble_name]: - data_array, dimensions, info = self.database[ensemble_name][varName] - else: - print("Couldn't find \"" + varName + "\" from the database: \"" + ensemble_name + "\", search it from the files.") - data_array = [] - #shape = None - dimensions = None - info = None - for fileName in self.ensemble_fileList[ensemble_name]: - ncf = nc.Dataset(fileName) - data = ncf.variables[varName][:].filled(np.nan) - #len(data.shape) == len(ncf.dimensions - #if shape is None: - # shape = data.shape - #else: - # assert shape == data.shape - if dimensions is None: - dimensions = ncf.variables[varName].dimensions - else: - assert dimensions == ncf.variables[varName].dimensions - if info is None: - info = {} - for attr in ncf.variables[varName].ncattrs(): - info[attr] = ncf.variables[varName].getncattr(attr) - #assert len(shape) == len(dimensions) - data_array.append(data) - #data_array = np.array(data_array) - dimensions = ("time",) + dimensions - self.database[ensemble_name][varName] = (data_array, dimensions, info) - return data_array, dimensions, info - - def read_check_time(self): - self.timeList = None - for ensemble_name in self.ensemble_nameList: - timeList = [] - for fileName in self.ensemble_fileList[ensemble_name]: - ncf = nc.Dataset(fileName) - time = float(ncf.variables["time"][0].filled(np.nan)) - ncf.close() - timeList.append(time) - timeList = np.array(timeList) - if self.timeList is None: - self.timeList = timeList - else: - assert np.max(np.abs(self.timeList - timeList)) < 10e-8 - - def read_dimensions(self): - ncf = nc.Dataset(self.sample_file) - self.dimensions = {} - for dimension in ncf.dimensions: - dimension_name = ncf.dimensions[dimension].name - dimension_size = ncf.dimensions[dimension].size - self.dimensions[dimension_name] = dimension_size - ncf.close() - - - - def compute_ensemble_mean_std(self, varName, ensembles = None, getFun = None, getFun_kwargs = {}, return_info = False): - - if ensembles is None: - ensembles = self.ensemble_nameList - mean_list = [] - std_list = [] - for i_time in range(self.nTime): - combine_array = [] - shape_check = None - for ensemble_name in ensembles: - if not(varName in self.database[ensemble_name]): - if getFun is None: - self.get_var(varName, ensemble_name) - else: - getFun(ensemble_name = ensemble_name, **getFun_kwargs) - - assert varName in self.database[ensemble_name] - data = self.database[ensemble_name][varName][0][i_time] - if shape_check is None: - shape_check = data.shape - else: - assert shape_check == data.shape - combine_array.append(data) - combine_array = np.array(combine_array) - mean_value = np.nanmean(combine_array, axis = 0) - std_value = np.nanstd(combine_array, axis = 0) - mean_list.append(mean_value) - std_list.append(std_value) - mean_list = np.array(mean_list) - std_list = np.array(std_list) - if return_info: - info_dict = self.database[ensemble_name][varName][2] - return mean_list, std_list, info_dict - else: - return mean_list, std_list - - - - def vol2rad(self, vol): - return (3 * vol / 4 / np.pi) ** (1/3.0) - - def aero_particle_volume(self, aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - - def aero_particle_dry_volume(self, aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - if spec_name == "H2O": - continue - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - - def aero_particle_diameter(self, aero_particle_mass, aero_density, aero_species_name2ind): - vol = self.aero_particle_volume(aero_particle_mass, aero_density, aero_species_name2ind) - radius = self.vol2rad(vol) - diameter = 2 * radius - return diameter - - def aero_particle_dry_diameter(self, aero_particle_mass, aero_density, aero_species_name2ind): - vol = self.aero_particle_dry_volume(aero_particle_mass, aero_density, aero_species_name2ind) - radius = self.vol2rad(vol) - diameter = 2 * radius - return diameter - - def compute_saturated_vapor_pressure_water(self, T): - tmp = 54.842763 \ - - 6763.22 / T \ - - 4.210 * np.log(T) \ - + 0.000367 * T \ - + np.tanh( 0.0415 * (T - 218.8)) \ - * (53.878 - 1331.22 / T - 9.44523 * np.log(T) + 0.014025 * T) - es = np.exp(tmp) - return es - - def compute_saturated_vapor_pressure_ice(self, T): - tmp = 9.550426 \ - - 5723.265 / T \ - + 3.53068 * np.log(T) \ - - 0.00728332 * T - esi = np.exp(tmp) - return esi - - - def compute_histogram(self, time, ensemble_name = None, bins = 100): - - if ensemble_name is None: - ensemble_name = self.default_ensemble_name - - i_time = np.where(time - self.timeList >= 0 )[0][-1] - - aero_particle_mass, _, _ = self.get_var("aero_particle_mass", ensemble_name = ensemble_name) - aero_particle_mass = aero_particle_mass[i_time]# (aero_species, aero_particle) - - aero_density, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) - aero_density = aero_density[i_time] #(aero_species) - - aero_num_conc, _, _ = self.get_var("aero_num_conc", ensemble_name = ensemble_name) - aero_num_conc = aero_num_conc[i_time] # (aero_particle) - - aero_particle_vol = (aero_particle_mass.T / aero_density).T - - aero_species_ind, _, _ = self.get_var("aero_species", ensemble_name = ensemble_name)# - 1 - aero_species_ind = aero_species_ind[i_time] - 1 - - _, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) - aero_species_names = aero_species_info["names"].split(",") - - aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind, aero_species_names)} - aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind, aero_species_names)} - - diameter = self.aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - - part_frozen_tList, _, _ = self.get_var("aero_frozen", ensemble_name) - part_frozen = part_frozen_tList[i_time] - - diameter *= 10**6 - dry_diameter *= 10**6 - - hists_dict = {} - - hist, bin_edges = np.histogram(np.log10(diameter), weights=aero_num_conc, bins = bins) - hists_dict["diameter_log10"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter_log10"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(diameter), weights = aero_num_conc * part_frozen, bins = bins) - hists_dict["ice_diameter_log10"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights = aero_num_conc * part_frozen, bins = bins) - hists_dict["ice_dry_diameter_log10"] = (hist, bin_edges) - - hist, bin_edges = np.histogram(diameter, weights=aero_num_conc, bins = bins) - hists_dict["diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(diameter, weights=aero_num_conc * part_frozen, bins = bins) - hists_dict["ice_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc * part_frozen, bins = bins) - hists_dict["ice_dry_diameter"] = (hist, bin_edges) - - return hists_dict - - - - - - - - - - - diff --git a/scenarios/7_freezing/visual_tools/plots_lib.py b/scenarios/7_freezing/visual_tools/plots_lib.py deleted file mode 100755 index 5afb9575e..000000000 --- a/scenarios/7_freezing/visual_tools/plots_lib.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python - -import numpy as np - -class TSPlots(object): - def __init__(self, data_setting = None, casesList = None, casesDict = None): - - assert not(data_setting) is None - self.data_setting = data_setting - assert not( (casesList is None) and (casesDict is None) ) - if casesDict is None: - self.casesDict = {} - for obj_case in casesList: - self.casesDict[obj_case.caseName] = obj_case - else: - self.casesDict = casesDict - - def plot(self, ax, legend = False, grid = True): - for dataName in self.data_setting: - dataName_split = dataName.strip().split(":") - if len(dataName_split) == 2: - caseName, varName = dataName_split - assert caseName in self.casesDict - ensemble_name = self.casesDict[caseName].ensemble_nameList[0] - else: - caseName, ensemble_name, varName = dataName_split - assert caseName in self.casesDict - data, dimensions, info = self.casesDict[caseName].read_from_database(ensemble_name, varName) - assert len(dimensions) == 1 and dimensions[0] == "time" - if isinstance(data, list): - data = np.array(data) - timeList = self.casesDict[caseName].timeList - plot_kwargs = self.data_setting[dataName] - ax.plot(timeList, data, **plot_kwargs) From 5c950912e4792e1d2137b03b71549914230883d5 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:02:37 -0600 Subject: [PATCH 010/127] Delete scenarios/7_freezing/out_sese_default1 directory remove old directories --- .../out_sese_default1/run_part.spec | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 scenarios/7_freezing/out_sese_default1/run_part.spec diff --git a/scenarios/7_freezing/out_sese_default1/run_part.spec b/scenarios/7_freezing/out_sese_default1/run_part.spec deleted file mode 100644 index 9427d4423..000000000 --- a/scenarios/7_freezing/out_sese_default1/run_part.spec +++ /dev/null @@ -1,57 +0,0 @@ -run_type particle # particle-resolved run -output_prefix output/sese_default1/freezing_part # prefix of output files -n_repeat 3 # number of Monte Carlo repeats -n_part 1000 # total number of particles -restart no # whether to restart from saved state (yes/no) - -t_max 172800 # total simulation time (s) -del_t 5 # timestep (s) -t_output 100 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) - -do_camp_chem no # whether to run the campible chemistry module - -gas_data gas_data.dat # file containing gas data -gas_init gas_init.dat # initial gas mixing ratios - -aerosol_data aero_data.dat # file containing aerosol data -do_fractal no # whether to do fractal treatment -aerosol_init aero_init_dist.dat # aerosol initial condition file - -temp_profile temp.dat # temperature profile file -pressure_profile pressure.dat # pressure profile file -height_profile height.dat # height profile file -gas_emissions gas_emit.dat # gas emissions file -gas_background gas_back.dat # background gas mixing ratios file -aero_emissions aero_emit.dat # aerosol emissions file -aero_background aero_back.dat # aerosol background file -loss_function none # particle loss function - -rel_humidity 0.999 # initial relative humidity (1) -latitude 40 # latitude (degrees, -90 to 90) -longitude 0 # longitude (degrees, -180 to 180) -altitude 0 # altitude (m) -start_time 0 # start time (s since 00:00 UTC) -start_day 1 # start day of year (UTC) - -do_coagulation yes # whether to do coagulation (yes/no) -coag_kernel brown -do_condensation no # whether to do condensation (yes/no) -do_mosaic no # whether to do MOSAIC (yes/no) -do_nucleation no # whether to do nucleation (yes/no) -do_freezing yes # whether to do freezing (yes/no) -do_freezing_CNT yes -#abifm_m 28.13797 -#abifm_c -2.92414 -abifm_m 22.62 -abifm_c -1.35 - -#do_freezing_CNT no -#freezing_rate -.01123456789 - -rand_init 0 # random initialization (0 to auto-generate) -allow_doubling yes # whether to allow doubling (yes/no) -allow_halving yes # whether to allow halving (yes/no) -do_select_weighting no # whether to select weighting explicitly (yes/no) -record_removals no # whether to record particle removals (yes/no) -do_parallel no # whether to run in parallel (yes/no) From 614394865fc92cfaaddf82a8d76d7567d4dd41f1 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:02:50 -0600 Subject: [PATCH 011/127] Delete scenarios/7_freezing/data_temp directory remove old directories --- scenarios/7_freezing/data_temp/sdm_a.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_b.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_c.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_d.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_d1.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_e.dat | 4 ---- scenarios/7_freezing/data_temp/sdm_f.dat | 4 ---- scenarios/7_freezing/data_temp/temp.data.1 | 4 ---- scenarios/7_freezing/data_temp/temp.data.2 | 4 ---- scenarios/7_freezing/data_temp/temp.data.3 | 4 ---- scenarios/7_freezing/data_temp/temp.data.4 | 4 ---- scenarios/7_freezing/data_temp/temp.data.5 | 4 ---- scenarios/7_freezing/data_temp/temp.data.6 | 4 ---- 13 files changed, 52 deletions(-) delete mode 100644 scenarios/7_freezing/data_temp/sdm_a.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_b.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_c.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_d.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_d1.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_e.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_f.dat delete mode 100644 scenarios/7_freezing/data_temp/temp.data.1 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.2 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.3 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.4 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.5 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.6 diff --git a/scenarios/7_freezing/data_temp/sdm_a.dat b/scenarios/7_freezing/data_temp/sdm_a.dat deleted file mode 100644 index e0af14e23..000000000 --- a/scenarios/7_freezing/data_temp/sdm_a.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 265.000 264.333 263.667 263.000 262.333 261.667 261.000 260.333 259.667 259.000 258.333 257.667 257.000 256.333 255.667 255.000 254.333 253.667 253.000 252.333 251.667 251.000 250.333 249.667 249.000 248.333 247.667 247.000 246.333 245.667 245.000 244.333 243.667 243.000 242.333 241.667 241.000 240.333 239.667 239.000 238.333 237.667 237.000 236.333 235.667 235.000 234.333 233.667 233.000 232.333 231.667 231.000 230.333 229.667 229.000 228.333 227.667 227.000 226.333 225.667 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_b.dat b/scenarios/7_freezing/data_temp/sdm_b.dat deleted file mode 100644 index 7e443c1ef..000000000 --- a/scenarios/7_freezing/data_temp/sdm_b.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 250.000 249.833 249.667 249.500 249.333 249.167 249.000 248.833 248.667 248.500 248.333 248.167 248.000 247.833 247.667 247.500 247.333 247.167 247.000 246.833 246.667 246.500 246.333 246.167 246.000 245.833 245.667 245.500 245.333 245.167 245.000 244.833 244.667 244.500 244.333 244.167 244.000 243.833 243.667 243.500 243.333 243.167 243.000 242.833 242.667 242.500 242.333 242.167 242.000 241.833 241.667 241.500 241.333 241.167 241.000 240.833 240.667 240.500 240.333 240.167 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_c.dat b/scenarios/7_freezing/data_temp/sdm_c.dat deleted file mode 100644 index 0689fcb20..000000000 --- a/scenarios/7_freezing/data_temp/sdm_c.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d.dat b/scenarios/7_freezing/data_temp/sdm_d.dat deleted file mode 100644 index 9bb989131..000000000 --- a/scenarios/7_freezing/data_temp/sdm_d.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d1.dat b/scenarios/7_freezing/data_temp/sdm_d1.dat deleted file mode 100644 index fcea62c44..000000000 --- a/scenarios/7_freezing/data_temp/sdm_d1.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_e.dat b/scenarios/7_freezing/data_temp/sdm_e.dat deleted file mode 100644 index bde49568d..000000000 --- a/scenarios/7_freezing/data_temp/sdm_e.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.222 240.444 240.667 240.889 241.111 241.333 241.556 241.778 242.000 242.222 242.444 242.667 242.889 243.111 243.333 243.556 243.778 244.000 244.222 244.444 244.667 244.889 245.111 245.333 245.556 245.778 246.000 246.222 246.444 246.667 246.889 247.111 247.333 247.556 247.778 248.000 248.222 248.444 248.667 248.889 249.111 249.333 249.556 249.778 250.000 diff --git a/scenarios/7_freezing/data_temp/sdm_f.dat b/scenarios/7_freezing/data_temp/sdm_f.dat deleted file mode 100644 index 3f99f48bd..000000000 --- a/scenarios/7_freezing/data_temp/sdm_f.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.1 b/scenarios/7_freezing/data_temp/temp.data.1 deleted file mode 100644 index 6e49cce58..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.1 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 -temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 242.087 244.174 246.261 248.348 250.435 252.522 254.609 256.696 258.783 260.870 262.957 265.043 267.130 269.217 271.304 273.391 275.478 277.565 279.652 281.739 283.826 285.913 288.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.2 b/scenarios/7_freezing/data_temp/temp.data.2 deleted file mode 100644 index cefb6375e..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.2 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 3660 3720 3780 3840 3900 3960 4020 4080 4140 4200 4260 4320 4380 4440 4500 4560 4620 4680 4740 4800 4860 4920 4980 5040 5100 5160 5220 5280 5340 5400 5460 5520 5580 5640 5700 5760 5820 5880 5940 6000 6060 6120 6180 6240 6300 6360 6420 6480 6540 6600 6660 6720 6780 6840 6900 6960 7020 7080 7140 7200 -temp 270.000 269.625 269.250 268.875 268.500 268.125 267.750 267.375 267.000 266.625 266.250 265.875 265.500 265.125 264.750 264.375 264.000 263.625 263.250 262.875 262.500 262.125 261.750 261.375 261.000 260.625 260.250 259.875 259.500 259.125 258.750 258.375 258.000 257.625 257.250 256.875 256.500 256.125 255.750 255.375 255.000 254.625 254.250 253.875 253.500 253.125 252.750 252.375 252.000 251.625 251.250 250.875 250.500 250.125 249.750 249.375 249.000 248.625 248.250 247.875 247.500 247.125 246.750 246.375 246.000 245.625 245.250 244.875 244.500 244.125 243.750 243.375 243.000 242.625 242.250 241.875 241.500 241.125 240.750 240.375 240.000 239.625 239.250 238.875 238.500 238.125 237.750 237.375 237.000 236.625 236.250 235.875 235.500 235.125 234.750 234.375 234.000 233.625 233.250 232.875 232.500 232.125 231.750 231.375 231.000 230.625 230.250 229.875 229.500 229.125 228.750 228.375 228.000 227.625 227.250 226.875 226.500 226.125 225.750 225.375 225.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.3 b/scenarios/7_freezing/data_temp/temp.data.3 deleted file mode 100644 index 9f1303d6a..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.3 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 -temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.4 b/scenarios/7_freezing/data_temp/temp.data.4 deleted file mode 100644 index 2ee9c4ba6..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.4 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 284.000 280.000 276.000 272.000 268.000 264.000 260.000 256.000 252.000 248.000 244.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.5 b/scenarios/7_freezing/data_temp/temp.data.5 deleted file mode 100644 index bb5ab55ce..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.5 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 283.167 278.333 273.500 268.667 263.833 259.000 254.167 249.333 244.500 239.667 234.833 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.6 b/scenarios/7_freezing/data_temp/temp.data.6 deleted file mode 100644 index 329ae0d2a..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.6 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 282.333 276.667 271.000 265.333 259.667 254.000 248.333 242.667 237.000 231.333 225.667 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 From efb3cee371ca826f427ccff358e1f40152aab308 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:02:59 -0600 Subject: [PATCH 012/127] Delete scenarios/7_freezing/__pycache__ directory remove old directories --- .../__pycache__/case_obj_test.cpython-310.pyc | Bin 295 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc diff --git a/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc b/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc deleted file mode 100644 index c9e10415d16b860907e257b776b4c5cc0d47c2df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmYjLJxc{K5X|Q8VhXR`dC@ Date: Mon, 11 Nov 2024 13:07:00 -0600 Subject: [PATCH 013/127] remove old directories --- scenarios/7_freezing/README | 6 - .../__pycache__/case_obj_test.cpython-310.pyc | Bin 295 -> 0 bytes scenarios/7_freezing/aero_back.dat | 6 - scenarios/7_freezing/aero_back_dist.dat | 1 - scenarios/7_freezing/aero_data.dat | 30 - scenarios/7_freezing/aero_emit.dat | 6 - scenarios/7_freezing/aero_emit_dist.dat | 1 - scenarios/7_freezing/aero_init_comp.dat | 8 - scenarios/7_freezing/aero_init_comp1.dat | 8 - scenarios/7_freezing/aero_init_comp2.dat | 7 - scenarios/7_freezing/aero_init_comp3.dat | 5 - scenarios/7_freezing/aero_init_dist.dat | 18 - .../__pycache__/set_chi.cpython-310.pyc | Bin 6124 -> 11013 bytes .../7_freezing/aero_init_tools/run_setchi.py | 38 +- .../7_freezing/aero_init_tools/set_chi.py | 287 +- scenarios/7_freezing/analysis.txt | 1680 - scenarios/7_freezing/case_obj_test.py | 25 +- scenarios/7_freezing/data_temp/sdm_a.dat | 4 - scenarios/7_freezing/data_temp/sdm_b.dat | 4 - scenarios/7_freezing/data_temp/sdm_c.dat | 4 - scenarios/7_freezing/data_temp/sdm_d.dat | 4 - scenarios/7_freezing/data_temp/sdm_d1.dat | 4 - scenarios/7_freezing/data_temp/sdm_e.dat | 4 - scenarios/7_freezing/data_temp/sdm_f.dat | 4 - scenarios/7_freezing/data_temp/temp.data.1 | 4 - scenarios/7_freezing/data_temp/temp.data.2 | 4 - scenarios/7_freezing/data_temp/temp.data.3 | 4 - scenarios/7_freezing/data_temp/temp.data.4 | 4 - scenarios/7_freezing/data_temp/temp.data.5 | 4 - scenarios/7_freezing/data_temp/temp.data.6 | 4 - scenarios/7_freezing/freezing_run.sh | 4 +- scenarios/7_freezing/gas_back.dat | 7 - scenarios/7_freezing/gas_data.dat | 7 - scenarios/7_freezing/gas_emit.dat | 7 - scenarios/7_freezing/gas_init.dat | 3 - scenarios/7_freezing/gmon.out | Bin 742922 -> 0 bytes scenarios/7_freezing/height.dat | 4 - scenarios/7_freezing/make_pres.py | 2 +- scenarios/7_freezing/make_temp.py | 17 +- .../7_freezing/multicases_plot_freezing.py | 141 - scenarios/7_freezing/nohup.log | 69172 ---------------- .../out_sese_default1/run_part.spec | 57 - scenarios/7_freezing/output | 1 - scenarios/7_freezing/plot.gnuplot | 13 - scenarios/7_freezing/plot_freezing.py | 141 - scenarios/7_freezing/pressure.dat | 4 - scenarios/7_freezing/pressure.dat.bck | 4 - scenarios/7_freezing/profile.sh | 2 - scenarios/7_freezing/run_part.spec | 30 +- .../run_scripts/freezing_run_chi.sh | 6 +- scenarios/7_freezing/run_scripts/multi_run.sh | 15 - scenarios/7_freezing/temp.dat | 4 - scenarios/7_freezing/temp.dat.bck | 4 - .../__pycache__/Bench.cpython-310.pyc | Bin 6461 -> 6461 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 179 -> 181 bytes .../__pycache__/bar.cpython-310.pyc | Bin 1613 -> 765 bytes .../__pycache__/case.cpython-310.pyc | Bin 12635 -> 14684 bytes .../__pycache__/plots_lib.cpython-310.pyc | Bin 1269 -> 1269 bytes scenarios/7_freezing/visual_tools/bar.py | 3 +- scenarios/7_freezing/visual_tools/case.py | 96 +- 60 files changed, 438 insertions(+), 71484 deletions(-) delete mode 100644 scenarios/7_freezing/README delete mode 100644 scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc delete mode 100644 scenarios/7_freezing/aero_back.dat delete mode 100644 scenarios/7_freezing/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/aero_data.dat delete mode 100644 scenarios/7_freezing/aero_emit.dat delete mode 100644 scenarios/7_freezing/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/analysis.txt delete mode 100644 scenarios/7_freezing/data_temp/sdm_a.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_b.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_c.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_d.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_d1.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_e.dat delete mode 100644 scenarios/7_freezing/data_temp/sdm_f.dat delete mode 100644 scenarios/7_freezing/data_temp/temp.data.1 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.2 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.3 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.4 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.5 delete mode 100644 scenarios/7_freezing/data_temp/temp.data.6 delete mode 100644 scenarios/7_freezing/gas_back.dat delete mode 100644 scenarios/7_freezing/gas_data.dat delete mode 100644 scenarios/7_freezing/gas_emit.dat delete mode 100644 scenarios/7_freezing/gas_init.dat delete mode 100644 scenarios/7_freezing/gmon.out delete mode 100644 scenarios/7_freezing/height.dat delete mode 100755 scenarios/7_freezing/multicases_plot_freezing.py delete mode 100644 scenarios/7_freezing/nohup.log delete mode 100644 scenarios/7_freezing/out_sese_default1/run_part.spec delete mode 120000 scenarios/7_freezing/output delete mode 100644 scenarios/7_freezing/plot.gnuplot delete mode 100755 scenarios/7_freezing/plot_freezing.py delete mode 100644 scenarios/7_freezing/pressure.dat delete mode 100644 scenarios/7_freezing/pressure.dat.bck delete mode 100755 scenarios/7_freezing/profile.sh delete mode 100755 scenarios/7_freezing/run_scripts/multi_run.sh delete mode 100644 scenarios/7_freezing/temp.dat delete mode 100644 scenarios/7_freezing/temp.dat.bck diff --git a/scenarios/7_freezing/README b/scenarios/7_freezing/README deleted file mode 100644 index 1bff2f5b6..000000000 --- a/scenarios/7_freezing/README +++ /dev/null @@ -1,6 +0,0 @@ - -Freezing Test -============= - -This test reproduces immersion freezing simulations from Alpert & Knopf 2016 -(https://doi.org/10.5194/acp-16-2083-2016). diff --git a/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc b/scenarios/7_freezing/__pycache__/case_obj_test.cpython-310.pyc deleted file mode 100644 index c9e10415d16b860907e257b776b4c5cc0d47c2df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmYjLJxc{K5X|Q8VhXR`dC@e_|SjGL+deDyF=x zN=n{#J6*|`tg~9#wo`E=ooeOU`AS~WW~)#sNZVqi=#}tS+$-)I%APgunJPUGS}A)I zD&v*!S*GEc&B?v8SKc>G<0V67m2=-vjyH8LRhdRUr}D_>B|qcMs=`f6|3nolbE<^D z@(-=byf>pJJag}unp9K!mYRNGRTh*{SyVHXC1qBYF~jl7iJajrs=238?kzM=dUI<2 z0cJ$MQ^?PGa|_14S#dqrJ8{#{_dU0A!pnOL_*V2EZKIB%{(GG>-lDg3Gp+v`D?uxa zG@%x~<>s7PlJ-c&W8Sk-w_I81cqXYY24Z#9~*O9{*S(7yl0~ANw$+6 znpLN;>YsVj%2ki4(_A0dpw1*~SlD}P-;ghOe9%XkujBMyH&&i_#Pi))F{7OC1=T>; z>K-zV^1PjTcjxXFtG{`F^{OQ9|I?pe?ajRI1+K1jRJZN=o~PWP>(<$9^p`?r9gqJS zh$mc9vDA#RRO-G7Ua?jBzEQDNMrH9%D@Wz<&ZxX9;GI=PRl?g*Wi^3!PR*(*HI1Hm zHHojDi%RuY&G%p2Zd7kHI{u?en5E7+2fs-qGI(CZ7-j07dChox z`7NuT>*vG#-W;UGxtY>Cp|dw1<|rAr-U$kO$3l$d-~AG#;-2}Q8Rq)gTknKfjJXgx zpo`MRXfEuV6NdhNn8w(U1gZ(s3aa>k>vh9a%%2$PG-_Pgk27fZIC5w37^?KZ!s;{qLRdhL zCmI~-6Txio$&i{v&JU?_d^-0m*{_S-FFeJ5Da=tXyl?6m%yCvmE#BnX&V;3#<~q(^ z6&8(txic|RZ-2NxEbp!Cb9J8xbI%&L{zDb|6U^asiv3(T5uA(b7NNtQHu@9qo43}m zCv07Y?>dC~M(w%P`hM@1=9UdL|)caxmI zzUw%_P^QSNq4H){AwKgwXJmZ#8TCrWi{ov4^B zsLEwV*^c)vzcNa9Fdbfgpc^}fjaZ7p?b?nPWjFk4S2wnzoY&cHd%6~&s?~kh(^00j zv*UGCly3N(Ba6MLHjpoPck0za#$iJC+1kKNvJ+8yM>je_R33cQ?QRQWM=5`|9cAC# zsn)w1v(#H%->YDWD4V)AO0~Ss$|QEnYi;To9E_d@!3Nbg^(wPDX3eTT$IO#b$Mrb;OdgE>G|DPz z&UG<S|_-)*6u2=)#z-k zkuTcy>g6@R?saf{U4QNA>ZbO*9&3d$<@kecx8<+Vgw(eit5}Ou#f0FQ>J(=3-vr56 z8FR_Zn?-ZUI&RLJ3rJ;5+nmO`XilS+e`RyloU~@mvRyPCb5d%YOd0K2dk+0w^Q1MI zvXPoc+ur<`C0HFyTZhgc{<27=@rX6}0TPf%qX|2ptOsTvTBvD3hEG82BNamH_w67R z+VDqGu;vT5@}aS3!*-ExXWE!u39 zWW!97k~X3joDI$G(zITWxPac-=l+ksp8I;N5@3#lTFZ?&)>VzoO)yxe?p^6+DJB&1 z48)7#oz)jO+eMPkkbDjVQWl?LwE@13GP^rq5^x8q(BTSOq;SU3B1fwZ1VkpSCSqbs z&pdgDT<6`X%naJaE#jdU@EIRDfN*C_u5!L?@!g;GyKckF(Hb^z?zLPV;v`Ry} zr$f7$4&kw?%mbci3Z8@A%!VdCMOcGe=zw=F!wNfrLtf$tqis|c^`GyY0Y7EnDSjo$ zDMz>@r*dHy-bY^ABNdNH>k(%Ab|;UP1$89J(!ciZKY#GtS8BQg z6>#2#E)^$m+jHB{+3nr78$k2>ZgJUfgGj*czS!4&KginLev8n?wb9Td(Zt9Lu@>gwu2@p_{Ju8&7r zDF{19&VUnQWqN`ONi{l~`pc54-SA~`I)$t-xX8mwUbsB2dYM&UWb;h-MiXD9pJyhA zrNRinP*w_DLN%_8oHkTFWiGNwk1(>nhQ3uiKK<3aRfZPhUj~c}CblL)Z9KD*cg*9+ zSv1;fX&`fI{qv)(CC-z5d_w=B5tcav6Ka#dztJWG(>b0tn zT2!ca+dI2~M|1Vij1PRB0}G+n(O&@hJv<-K2$!K_rt!x&|B7aBcKk46J^7(ypsJB$ z_%RXzjvz1)d>BnAn46ZOvPq$Y+nL%oXN`Sqxk^2-3Ot%LYS@CulSUmwlq}1VF`VHT zPBMlQkFjq`{~StrJZb4!NOJKZ7Ly#p2aGDg3R)KB5X(#{dx30I;#*25`SgXMl+lK~NG*L7&vVu4~sI}0F_E!&;QpExLiZMO1Sy9Q~?!HUr7ESSe z^zzFfv5AEFv=&VJptn4}X=8oH94LAv15WmTh730=ae+(*kK#m`vVGW^CN?QnCvc=J zY#DeP1`}p=+307&RG7v)8`|=A*dDFyFaviB+#hC;gHcT60Y;ee(9g+8*)T^*=;xV} zUQW^raC2{s!2n0rYd2F^xLh%r(5Q)&5S)U{zxlQse$sLlr zBs9fGPFjB*Wk1B@yCBn69zu~f9XLgfdDbeMkBeJ`68O@#*?VmK#6N<`HpUK~@-p#D}tK*rlm5NBNb%#XkCE20KNDsQYA1F6_t46^uv)WOBqyEjA}eMy)s-2bO;FAXDFQKegi?n64&@bdY^fd+>tYm=hR=txW4OLhZTvcE-@&yV3jpSI>DIASn`z{y(r2zwQGTQN0{_o2D5Qee!+ z$humM^3^Irz}*(p#cK7|Zmkv9=ok12^q<6;5hJOonRQ4)X4KyzSsy2&!O2XMczjw^ z2g=BK&Y5yfIRz*0^k_)SsFCjmGP%d7$aN)e0xFe|k+UZxnxN-Wtd-{v7yusI( zU)ebQ_R5vKOu~sc_UfRwyvM5!he}f8)f+x0fjv2!)UF&Ec?ce%+1H0%Ik8|xS6unv z@d|$N75CCpSjl(=*MN$rKXbH#t74DQivF;#EHU{$L3p??Zx5>x8_0&au$H4uuMArZ z_i1#H)fnE9!&x0J^J{GK_R6s9=zxQ{J3Fg2t!sDVuA^iA@BKbB)~fadg^CB-@Xxy! zkBk5|xweDlV#*jZU+r{tyVg330zr(Hb!$%%+g;8IJ7u0E&};4qwFZC zULGxxbq&7sIC3Wr$J9R!PO2hJBEFfI0ml*8|CE8f%v2W7{1n#aqV5!xoCIu-0aQOd zG-?wY*WVC3rU`^;`oFO$p-ZQE^14V;BB7h8CrH2qF%-3OCMs%gixD=>f)|I=v#g#Y z5o>p74HsFqL?RJ)rUu5}@?zUY^hTc~VPvOWlE+9+lbj)WoJ4HpCz$#q$yt&^t0}fp zOy{RqAvRU4?FD89&$`4EEh)eNahhqP^>2`fDV08APoHI(7-JdsIc7gkvOXkYy=eLV z8IOMrgznWLpqYV_brRwF{|D48W_nWtXY3HQcTf&jzuL}e_}CmYUMad15vSg(#W9P>)atvox~ znd2B@;EiIXDfo-;4@9cfjT~h#kW**eFtGtCWP`LWt&C0W9;X|FSem%a)L3xg+7D{3UZQ@$%>F?n1p*lD8DA~ zW}uNK?#YZ1pEkP@yR9PpWGVq)7=7UPtLFuefjcYV%smtxIrb z?+$=WXuo-KE0;JAfhP!5lpBgXusJG(qUj>yT0mJ@o?_wfb|U8G!9Zh}1dn7O=bG@K zeutz+@)7bQKKIk;q+4jwn;0sQUxPsDHV5pG?0nqNO;o(Vp?gRiB3!E@apIWQP(rhz z*YFfNB0K~;f*FmQrk@i4I#yXCP=VP*m`F4L_6$%-Xwq}w1$zj@D!#sj{ig!MbvuNN zDfke8&dp{fFd?>?FuMg|jZrc{>m1Pu0Jh(wphJ-1wV3+#Fo)KOFjM>_hknb(=YS*- zoKJ)%2_Jcp0};%lRD#UJGf59i0c8%Z^TW8b2+W`$fo^im&vFSu2l;r+0@@YF+R3F6 zM6^6q#ehbs%SKG@L~PYWD2GC)|CEiWVxtrV?0shcgoHOYB5yH9AnN*1iNRkG_Z6keA!L&=yMqs0s|t z{+XMmULyv0YkmbN;1uQ&{rUz1ZEk-rgYAcNzT(9CR(usXsPD7spOJ_sBTx@j%}P2x zJSmV9EMkjs8$HmKJWs)x*4bIeRi?fSa+_O7N9}knZ}BprXyMP!n@InAZ*r(Q2A5dMJ^(jqAFPMQdIG=x>l@NWMwZC7}bdGNZr4^r7=BZszZ^>^+ikAV`aO zeS#I@e;#_Y=UG-Kd6HzAgx;&ZPqIEFatSo!?1{7iXCaF$BCTD@4UZvEw7@b?eTC*H`?XYle|Il+azz2dAi`TAyT9~jh)vg6Qt!~h2+`zwK zFjdJU@6=8!sHAq(4NWoEpC!Q>4NZ29Y~I@PdNiouA5c6Mt08gqc=d^!Si$Gy^kUYb zMv5kQ)fTHF`L`BLV^y(gHMuC&Z!wpZD^e7F6*>JjiEt79L;brX0v@h2bx6qSk@IYf zLw+9YZuswj5Zb2W#eWZR%!L&H4`9+VzA<^(_=e*_uca(2^Ix->(W}+suen-vEEx~2 H?Em~9R^a-n delta 2920 zcmZ`5ON<;xwW@l$r{_PrJ8SR9UeB)A_O`uVugwy`U&1=;BshZ<92>O~n)X!fx@YI- z>K@xW%xWO(L{TIkOiLW19AAadf+ClCT;B?xi=34;jlRj<7cpBnY6 zdY`KIsrO#Z8&^L$G2hDN(geo+cRuESnjz$Oh&(+EK)wo}{~ozNf4ooYDLZwEaE&MK z5}pw0EzQn|EZ5hWe1#i!jwj(~zRT>q$nX?T-=lURMMR-i6giRS*?Wu1&yW1tkzxMU%uhFe_({9%P_cDEjy0a^a973^F@92{i(elv3?c!Peuw> zI(*CU`9GqB^k|Pb;LCva=m3la{|RSruyKe4aI_#X(0f4LWIa|hxHe9JPmn)I24*b< z98GZ&|ILB@>0Y1I((x7$&#b~mMaIMQaZ<|;a@zzH8%kZir_~CtGLR^4Ch+)8eT{4y z!BCIX@>}#Gd2RAlwwc^Cd*)zxoABhiCf9n#V5FDahAX*wEiebAp1w`}_KSp@Tl96> z?c*h47_SxI1R`JJF941G<`4F*unhvbE4`A{}G+HwHv2e z-I0r}&h@$|&pdzX8#CqAR;S4qy17cL4EPTE5YmD?pmxH&p(beEM-!+T5qaF}x0rkEGzA zuGWQZR67m7(~!!E31H3GAh_1>nvv#Shr5Y4p?mTK04psIhhF*q!T)eBr<@aa0wJ4j z{S}b(XTu}Yhgen%U!Fcm{qWbhx4vT~DzOXbwDQBstI);z(PlXUAj&?DH>Rj^P&r|z zRI;kP9eyklv;wyt=W_U~{M?dU#A7~hpR&CUbblB?p622DhXKaFEDe7$eH3hbt?*&r z(kt>5o`5MVcMUD>ni1)@ZwM*m8IXvydTY&Q&wKJLV6brIxp=W*YvNAZW*0s9T=+KN zyB=xP8{Ypk@jPt1P4OWPk<#XjL@@wF+Mdfoabq(+hh*oO%X5(a>#;|+^!3qKuC9DmJUBpVn)s0j; z`*c6BO$=7ugLd{fI;V(KwV%Wn9=Jb*O+FsAFO`N~l%R}eS(cS(R!hU0{Vksf|9ogZ zESG-Y?=pD|Y;2d0x66-cStejxH@PeYw3u?7qSz3j0pwwl1q7;BvX&ni{)QijhRh*V z`GfsUegOfbSlrg+B(799ox&Bmr~0ad4E!>YhXCJkH%hiT!HQQG@(2o{;wMh-_-KGc zyA%94{Q2l~_|cJ~ZqbUB4L=*5?MF$+;jOCU$YZ$iBmxy*Y$*~GKaTVzTwO-+IDk(z zP^kd}>(MU(FiC=$d(C5}2{4mRo1^&&B@vkpGy|{cIBUQB1&&WH?A_^>zqw#BTYKU1 z6nYJRqr;5-qi7^P F{WpSEo!|ff diff --git a/scenarios/7_freezing/aero_init_tools/run_setchi.py b/scenarios/7_freezing/aero_init_tools/run_setchi.py index 81e457a7d..e646c31bb 100755 --- a/scenarios/7_freezing/aero_init_tools/run_setchi.py +++ b/scenarios/7_freezing/aero_init_tools/run_setchi.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from set_chi import classChi +from set_chi import classChi, classChi_bins import numpy as np import sys @@ -25,18 +25,32 @@ def read_mass_ratio_dict(compFile): chi = float(sys.argv[1]) init_fileName = sys.argv[2] -compFile = sys.argv[3] +isbin = sys.argv[3] +assert isbin in ["T", "F"] +if isbin == "T": + isbin = True +else: + isbin = False + +#compFile = sys.argv[3] print("===============") -print(chi, init_fileName, compFile) +print(chi, init_fileName, ("Bin mode" if isbin else "Global mode"))#, compFile) print("===============") -mass_ratio_dict = read_mass_ratio_dict(compFile) -objChi = classChi(init_fileName = init_fileName) -while True: - objChi.set_chi(chi = chi)#, mass_ratio_dict = mass_ratio_dict) - if np.abs(objChi.chi - chi) < 0.01: - print("Set chi = ", objChi.chi, ".") - break - else: - print("Chi expected = ", chi, "; chi received = ", objChi.chi, ", redo ...") +#mass_ratio_dict = read_mass_ratio_dict(compFile) +if isbin: + objChi = classChi_bins(init_fileName = init_fileName, Nbins = 100) +else: + objChi = classChi(init_fileName = init_fileName) +if isbin: + objChi.set_chi(chi = chi) + objChi.show_chi_bins() +else: + while True: + objChi.set_chi(chi = chi)#, mass_ratio_dict = mass_ratio_dict) + if np.abs(objChi.chi - chi) < 0.01: + print("Set chi = ", objChi.chi, ".") + break + else: + print("Chi expected = ", chi, "; chi received = ", objChi.chi, ", redo ...") objChi.output(outFile = "restart.nc") diff --git a/scenarios/7_freezing/aero_init_tools/set_chi.py b/scenarios/7_freezing/aero_init_tools/set_chi.py index b272c9bbe..044b89189 100755 --- a/scenarios/7_freezing/aero_init_tools/set_chi.py +++ b/scenarios/7_freezing/aero_init_tools/set_chi.py @@ -4,7 +4,192 @@ import netCDF4 as nc import matplotlib.pyplot as plt from pdb import set_trace +from copy import deepcopy import os +import time + +#np.random.seed(100) +seed = int(int(time.time() * 1e6)%1e8) +print("Set random seed to ", seed) +np.random.seed(seed) + +class classChi_bins(object): + def __init__(self, init_fileName, Nbins = 50): + + self.Nbins = Nbins + self.init_fileName = init_fileName + self.init_dir = "/".join(init_fileName.split("/")[:-1]) + ncf = nc.Dataset(init_fileName) + Npart = ncf.dimensions["aero_particle"].size + + aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) + self.species_dens = ncf.variables["aero_density"][:].filled(np.nan) + self.species_dens = self.species_dens[:, np.newaxis] + self.species_name = ncf.variables["aero_species"].names.strip().split(",") + self.Ns_orig, _ = aero_particle_mass.shape + H2O_ind = np.nan + exc_H2O_ind = [] + for ind, specName in enumerate(self.species_name): + if specName.lower() != "h2o": + exc_H2O_ind.append(ind) + else: + assert np.isnan(H2O_ind), "Double \"H2O\" found." + H2O_ind = ind + self.H2O_ind = H2O_ind + self.exc_H2O_ind = exc_H2O_ind + if ~np.isnan(self.H2O_ind): + self.H2O_mass = aero_particle_mass[self.H2O_ind, :] + + aero_particle_mass = aero_particle_mass[exc_H2O_ind, :] + self.species_dens = self.species_dens[exc_H2O_ind, :] + #set_trace() + #self.species_name = self.species_name[exc_H2O_ind] + + self.Ns, self.Npart = aero_particle_mass.shape + if np.isnan(self.H2O_ind): + print("No H2O found.") + assert self.Ns_orig == self.Ns + self.species_volume = aero_particle_mass / self.species_dens + #print(np.sum(self.species_volume, axis=1)) + self.Vp_core = np.sum(self.species_volume, axis = 0) + #self.Vp_core = np.sum(self.species_volume[self.exc_H2O_ind, :], axis = 0) + #assert len(self.species_name) == len(self.species_dens) + #self.aero_dens = {} + #for ind, speciesName in enumerate(self.species_name): + # self.aero_dens[speciesName] = self.species_dens[ind, 0] + ncf.close() + self.log10_Vp_core = np.log10(self.Vp_core) + _, bin_edges = np.histogram(self.log10_Vp_core, bins = self.Nbins) + self.bin_edges = bin_edges + self.index_dict = {} + for ind, (edge1, edge2) in enumerate(zip(bin_edges[:-1], bin_edges[1:])): + if ind == 0: + choosed_ind = np.where( (self.log10_Vp_core >= edge1) & (self.log10_Vp_core <= edge2) )[0] + else: + choosed_ind = np.where( (self.log10_Vp_core > edge1) & (self.log10_Vp_core <= edge2) )[0] + #print(edge1, edge2) + #print(choosed_ind) + self.index_dict[ind] = choosed_ind.copy() + count = 0 + for ind in self.index_dict: + count += len(self.index_dict[ind]) + print("Npart = ", self.Npart, "; counted = ", count) + + def set_chi(self, chi): + orig_species_total_volume = self.species_volume.sum(axis = 1) + for ibin in self.index_dict: + part_index = self.index_dict[ibin] + if len(part_index) < 2: + continue + species_volume_ibin = self.set_chi_ibin(chi, ibin) + #set_trace() + self.species_volume[:, part_index] = species_volume_ibin + self.update() + new_species_total_volume = self.species_volume.sum(axis = 1) + print("=" * 40) + print("Species total volume difference:") + print("orig = ", orig_species_total_volume) + print("new = ", new_species_total_volume) + print("=" * 40) + + def set_chi_ibin(self, chi, ibin): + + part_index = self.index_dict[ibin] + + + objChi = classChi(init_fileName = self.init_fileName, specific_part_ind = part_index) + count = 0 + max_count = 200 + best_objChi = None + min_diff = np.inf + while True: + count += 1 + #objChi.set_chi(chi = chi, mass_ratio_dict = mass_ratio_dict) + objChi.set_chi(chi = chi, Npars = 1) + diff = np.abs(objChi.chi - chi) + if diff < min_diff: + min_diff = diff + best_objChi = deepcopy(objChi) + if np.abs(objChi.chi - chi) < 0.01: + break + if count >= max_count: + print("Warning, exceed the maximum times of iteration, force to stop") + print("Current best chi = ", best_objChi.chi, "; diff = ", np.abs(best_objChi.chi - chi)) + objChi = best_objChi + break + else: + print("Chi expected = ", chi, "; chi received = ", objChi.chi, ", rerun ...") + assert np.abs(objChi.chi - chi) == min_diff + print("Final chi = ", objChi.chi) + return objChi.species_volume + + def update(self): + self.species_volume_ratio = self.species_volume / self.Vp_core + self.species_mass = self.species_volume * self.species_dens + self.aero_mass = np.sum(self.species_mass, axis = 0) + self.species_total_mass = np.sum(self.species_mass, axis = 1) + self.total_mass = np.sum(self.aero_mass) + self.P_ai = self.species_mass / self.aero_mass + self.P_i = self.aero_mass / self.total_mass + self.P_a = self.species_total_mass / self.total_mass + self.compute_chi() + + def compute_chi(self): + self.Hi = -np.sum(np.where(self.P_ai == 0.0, 0.0, self.P_ai * np.log(self.P_ai)), axis = 0) + self.Ha = np.sum(self.P_i * self.Hi) + self.Hy = -np.sum(np.where(self.P_a == 0.0, 0.0, self.P_a * np.log(self.P_a))) + self.Di = np.exp(self.Hi) + self.Da = np.exp(self.Ha) + self.Dy = np.exp(self.Hy) + self.Db = self.Dy / self.Da + self.chi = (self.Da - 1) / (self.Dy - 1) + + def show_chi_bins(self): + for ibin in self.index_dict: + part_index = self.index_dict[ibin] + if len(part_index) == 0: + print("bin #", ibin, ": no particle") + else: + chi_ibin = self.compute_chi_partial(part_index) + print("bin #", ibin, ": len = ", len(part_index), "; chi = ", chi_ibin) + + def compute_chi_partial(self, index_list): + + species_mass = self.species_mass[:, index_list] + aero_mass = self.aero_mass[index_list] + species_total_mass = np.sum(species_mass, axis = 1) + total_mass = np.sum(aero_mass) + + P_ai = species_mass / aero_mass + P_i = aero_mass / total_mass + P_a = species_total_mass / total_mass + + Hi = -np.sum(np.where(P_ai == 0.0, 0.0, P_ai * np.log(P_ai)), axis = 0) + Ha = np.sum(P_i * Hi) + Hy = -np.sum(np.where(P_a == 0.0, 0.0, P_a * np.log(P_a))) + Di = np.exp(Hi) + Da = np.exp(Ha) + Dy = np.exp(Hy) + Db = Dy / Da + chi = (Da - 1) / (Dy - 1) + return chi + + def output(self, outFile = None): + if outFile is None: + ncf = nc.Dataset(self.init_fileName, "r+") + else: + os.system("cp -p " + self.init_fileName + " " + self.init_dir + "/" + outFile) + ncf = nc.Dataset(self.init_dir + "/" + outFile, "r+") + print("Create " + self.init_dir + "/" + outFile) + aero_particle_mass = np.full((self.Ns_orig, self.Npart), 0.0) + if ~np.isnan(self.H2O_ind): + aero_particle_mass[self.H2O_ind, :] = self.H2O_mass + aero_particle_mass[self.exc_H2O_ind, :] = self.species_mass + else: + aero_particle_mass = self.species_mass + ncf.variables["aero_particle_mass"][:, :] = aero_particle_mass + ncf.close() + class classChi(object): @@ -31,11 +216,18 @@ def __init__(self, mean = 1e-6, logstd = 0.326, Npart = 1000, species = ["OIN", self.Vp = 1.0/6 * np.pi * self.Dp **3 """ - def __init__(self, init_fileName): + def __init__(self, init_fileName, specific_part_ind = None): + if specific_part_ind is None: + self.reginal_mode = False + else: + self.reginal_mode = True self.init_fileName = init_fileName self.init_dir = "/".join(init_fileName.split("/")[:-1]) ncf = nc.Dataset(init_fileName) - aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) + Npart = ncf.dimensions["aero_particle"].size + if not(self.reginal_mode): + specific_part_ind = np.arange(Npart) + aero_particle_mass = ncf.variables["aero_particle_mass"][:, specific_part_ind].filled(np.nan) self.species_dens = ncf.variables["aero_density"][:].filled(np.nan) self.species_dens = self.species_dens[:, np.newaxis] self.species_name = ncf.variables["aero_species"].names.strip().split(",") @@ -63,8 +255,9 @@ def __init__(self, init_fileName): print("No H2O found.") assert self.Ns_orig == self.Ns self.species_volume = aero_particle_mass / self.species_dens - print(np.sum(self.species_volume, axis=1)) - self.Vp = np.sum(self.species_volume, axis = 0) + #print(np.sum(self.species_volume, axis=1)) + self.Vp_core = np.sum(self.species_volume, axis = 0) + #self.Vp_core = np.sum(self.species_volume[self.exc_H2O_ind, :], axis = 0) #assert len(self.species_name) == len(self.species_dens) #self.aero_dens = {} #for ind, speciesName in enumerate(self.species_name): @@ -79,7 +272,7 @@ def init_random(self): self.species_volume_ratio = np.random.rand(self.Ns, self.Npart) self.species_volume_ratio_one_parm = np.sum(self.species_volume_ratio, axis = 0) self.species_volume_ratio = self.species_volume_ratio / self.species_volume_ratio_one_parm - self.species_volume = self.species_volume_ratio * self.Vp + self.species_volume = self.species_volume_ratio * self.Vp_core self.update() def init_external(self, species_total_volume_ratio): @@ -88,7 +281,7 @@ def init_external(self, species_total_volume_ratio): species_total_volume_ratio = species_total_volume_ratio / np.sum(species_total_volume_ratio) aero_ind = np.arange(self.Npart) np.random.shuffle(aero_ind) - species_volume_cumsum = np.cumsum(self.Vp[aero_ind]) + species_volume_cumsum = np.cumsum(self.Vp_core[aero_ind]) species_volume_cumratio = species_volume_cumsum / species_volume_cumsum[-1] threshold_ratio = np.cumsum(species_total_volume_ratio) threshold = [0] @@ -100,13 +293,23 @@ def init_external(self, species_total_volume_ratio): for i_spec in range(self.Ns): spec_index = aero_ind[threshold[i_spec]:threshold[i_spec+1]] self.species_volume_ratio[i_spec, spec_index] = 1.0 - self.species_volume = self.species_volume_ratio * self.Vp + self.species_volume = self.species_volume_ratio * self.Vp_core + orig_species_total_volume = species_total_volume_ratio * np.sum(self.Vp_core) + new_species_total_volume = self.species_volume.sum(axis = 1) + + #print("species_total_volume difference after init_external:") + #for orig, new in zip(orig_species_total_volume, new_species_total_volume): + # print(orig, new) + #print("="*30) + #print("Np = ", len(self.Vp_core)) + #print(orig_species_total_volume.sum(), new_species_total_volume.sum()) + #species_total_volume = (self.species_volume_ratio * self.Vp).sum(axis=1) #species_total_volume_ratio = species_total_volume / np.sum(species_total_volume) self.update() def update(self): - self.species_volume_ratio = self.species_volume / self.Vp + self.species_volume_ratio = self.species_volume / self.Vp_core self.species_mass = self.species_volume * self.species_dens self.aero_mass = np.sum(self.species_mass, axis = 0) self.species_total_mass = np.sum(self.species_mass, axis = 1) @@ -126,6 +329,7 @@ def compute_chi(self): self.Db = self.Dy / self.Da self.chi = (self.Da - 1) / (self.Dy - 1) + """ def mixing(self, Npars, chi_obj = None): assert Npars * 2 <= self.Npart aero_index = np.arange(self.Npart) @@ -146,8 +350,28 @@ def mixing(self, Npars, chi_obj = None): self.update() #set_trace() #print(np.sum(self.species_volume, axis = 0)) + """ - def set_chi(self, chi): + def mixing(self, Npars, chi_obj = None): + assert Npars * 2 <= self.Npart + aero_index = np.arange(self.Npart) + np.random.shuffle(aero_index) + parA_ind = aero_index[:Npars] + parB_ind = aero_index[-Npars:] + parA_vol = self.Vp_core[parA_ind] + parB_vol = self.Vp_core[parB_ind] + min_vol = np.min(np.array([parA_vol, parB_vol]), axis = 0) + exchange_ratio = np.random.rand(len(min_vol)) + if not(chi_obj is None): + exchange_ratio *= np.abs(self.chi - chi_obj) / np.abs(chi_obj) + exchange_vol = exchange_ratio * min_vol + exchange_species_vol_A = self.species_volume_ratio[:, parA_ind] * exchange_vol + exchange_species_vol_B = self.species_volume_ratio[:, parB_ind] * exchange_vol + self.species_volume[:, parB_ind] = self.species_volume[:, parB_ind] - exchange_species_vol_B + exchange_species_vol_A + self.species_volume[:, parA_ind] = self.species_volume[:, parA_ind] - exchange_species_vol_A + exchange_species_vol_B + self.update() + + def set_chi(self, chi, Npars = 10): #volume_ratio = [] #for specName in self.aero_dens: # if specName in mass_ratio_dict: @@ -157,23 +381,24 @@ def set_chi(self, chi): #volume_ratio = np.array(volume_ratio) #volume_ratio /= np.sum(volume_ratio) volume_ratio = np.sum(self.species_volume,axis=1)/np.sum(self.species_volume) - print("volume_ratio = ", volume_ratio) + #print("volume_ratio = ", volume_ratio) self.init_external(volume_ratio) chi_list = [] while True: #self.mixing(Npars = int(self.Npart / 200) if int(self.Npart / 200) > 1 else 1)#, chi_obj = chi_obj) - self.mixing(Npars = 2)#, chi_obj = chi_obj) + self.mixing(Npars = Npars)#, chi_obj = chi_obj) #a.compute_chi() print("chi = ", self.chi) - print(np.sum(self.species_volume, axis=1)) + #print(np.sum(self.species_volume, axis=1)) #print(np.sum(self.species_mass, axis=1)) #print(np.sum(self.species_volume, axis=0)[500]) chi_list.append(self.chi) if chi <= self.chi: break - print(self.species_mass) + #print(self.species_mass) def output(self, outFile = None): + assert self.reginal_mode == False if outFile is None: ncf = nc.Dataset(self.init_fileName, "r+") else: @@ -193,19 +418,45 @@ def output(self, outFile = None): -if __name__ == "__main__": - chi = 0.9 +#if __name__ == "__main__": +if __name__ == "__1__": + chi = 0.2 mass_ratio_dict = { #"OIN": 0.3, "ILT": 0.5, #"KLN": 0.2, "NVF": 0.5, } - aa = classChi(init_fileName = "/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/output/chiexp_0.2/freezing_part_0001_00000001.nc") + aa = classChi(init_fileName = "/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/output/chiexp_indsize_0.8/freezing_part_0001_00000001.nc", specific_part_ind = np.arange(900, 902)) + count = 0 + max_count = 200 + best_aa = None + min_diff = np.inf while True: - aa.set_chi(chi = chi, mass_ratio_dict = mass_ratio_dict) + count += 1 + #aa.set_chi(chi = chi, mass_ratio_dict = mass_ratio_dict) + aa.set_chi(chi = chi) + diff = np.abs(aa.chi - chi) + if diff < min_diff: + min_diff = diff + best_aa = deepcopy(aa) if np.abs(aa.chi - chi) < 0.01: break + if count >= max_count: + print("Warning, exceed the maximum times of iteration, force to stop") + print("Current best chi = ", best_aa.chi, "; diff = ", np.abs(best_aa.chi - chi)) + aa = best_aa + break else: print("Chi expected = ", chi, "; chi received = ", aa.chi, ", rerun ...") - aa.output(outFile = "freezing_part_0001_restart.nc") + assert np.abs(aa.chi - chi) == min_diff + print("Final chi = ", aa.chi) + #aa.output(outFile = "freezing_part_0001_restart.nc") +if __name__ == "__main__": + aa = classChi_bins(init_fileName = "./freezing_part_0001_00000001.nc", Nbins = 100) + aa.set_chi(chi = 0.6) + #print(aa.chi) + aa.show_chi_bins() + print("Overall chi = ", aa.chi) + #aa.output(outFile = "freezing_part_0001_restart.nc") + diff --git a/scenarios/7_freezing/analysis.txt b/scenarios/7_freezing/analysis.txt deleted file mode 100644 index 76a804132..000000000 --- a/scenarios/7_freezing/analysis.txt +++ /dev/null @@ -1,1680 +0,0 @@ -Flat profile: - -Each sample counts as 0.01 seconds. - % cumulative self self total - time seconds seconds calls ms/call ms/call name - 28.57 0.12 0.12 2010 0.06 0.14 __pmc_aero_state_MOD_aero_state_output_netcdf - 14.29 0.18 0.06 2016231 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius - 4.76 0.20 0.02 4032462 0.00 0.00 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius - 4.76 0.22 0.02 2072122 0.00 0.00 __pmc_fractal_MOD_fractal_is_spherical - 4.76 0.24 0.02 2045320 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_radius - 4.76 0.26 0.02 2006200 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_mass - 4.76 0.28 0.02 9076 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_realloc - 4.76 0.30 0.02 4000 0.01 0.01 __pmc_aero_state_MOD_aero_state_masses - 4.76 0.32 0.02 2000 0.01 0.05 __pmc_freezing_MOD_freeze - 2.38 0.33 0.01 2062091 0.00 0.00 __pmc_aero_data_MOD_aero_data_vol2rad - 2.38 0.34 0.01 2045320 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_volume - 2.38 0.35 0.01 2016231 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc - 2.38 0.36 0.01 358827 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_n_entry - 2.38 0.37 0.01 30113 0.00 0.00 __pmc_rand_MOD_rand_normal - 2.38 0.38 0.01 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_volume - 2.38 0.39 0.01 4020 0.00 0.00 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species - 2.38 0.40 0.01 75 0.13 0.13 __pmc_spec_line_MOD_spec_line_set_size - 2.38 0.41 0.01 __pmc_fractal_MOD_fractal_vol_to_mobility_rad - 1.19 0.42 0.01 570840 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_check - 1.19 0.42 0.01 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_check_msg - 0.00 0.42 0.00 2062091 0.00 0.00 __pmc_fractal_MOD_fractal_vol2rad - 0.00 0.42 0.00 2062091 0.00 0.00 __pmc_util_MOD_sphere_vol2rad - 0.00 0.42 0.00 2016231 0.00 0.00 __pmc_aero_state_MOD_aero_state_particle_num_conc - 0.00 0.42 0.00 2006200 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_species_mass - 0.00 0.42 0.00 1282969 0.00 0.00 __pmc_rand_MOD_pmc_random - 0.00 0.42 0.00 1200910 0.00 0.00 __pmc_rand_MOD_pmc_random_geometric - 0.00 0.42 0.00 322340 0.00 0.00 __pmc_util_MOD_assert - 0.00 0.42 0.00 196800 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_append - 0.00 0.42 0.00 196800 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_enlarge - 0.00 0.42 0.00 126000 0.00 0.00 __pmc_freezing_MOD_abifm_max - 0.00 0.42 0.00 100489 0.00 0.00 __pmc_aero_data_MOD_aero_data_n_spec - 0.00 0.42 0.00 90028 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_size - 0.00 0.42 0.00 84420 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_atts - 0.00 0.42 0.00 78291 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_n_part - 0.00 0.42 0.00 68260 0.00 0.00 __pmc_aero_state_MOD_aero_state_n_part - 0.00 0.42 0.00 49200 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_append - 0.00 0.42 0.00 48244 0.00 0.00 __pmc_gas_data_MOD_gas_data_n_spec - 0.00 0.42 0.00 30150 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real - 0.00 0.42 0.00 30141 0.00 0.00 __pmc_aero_data_MOD_aero_data_n_source - 0.00 0.42 0.00 24629 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin - 0.00 0.42 0.00 24629 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_find - 0.00 0.42 0.00 24619 0.00 0.00 __pmc_util_MOD_linspace_find - 0.00 0.42 0.00 24619 0.00 0.00 __pmc_util_MOD_logspace_find - 0.00 0.42 0.00 20152 0.00 0.00 __pmc_util_MOD_integer_to_string - 0.00 0.42 0.00 20100 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real_1d - 0.00 0.42 0.00 18090 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer_1d - 0.00 0.42 0.00 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_diameter - 0.00 0.42 0.00 16771 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_dry_radius - 0.00 0.42 0.00 16771 0.00 0.00 __pmc_freezing_MOD_abifm_particle - 0.00 0.42 0.00 14070 0.00 0.00 __pmc_aero_state_MOD_aero_state_total_particles - 0.00 0.42 0.00 14070 0.00 0.00 __pmc_util_MOD_integer_to_string_max_len - 0.00 0.42 0.00 14030 0.00 0.00 __pmc_util_MOD_find_1d - 0.00 0.42 0.00 14003 0.00 0.00 __pmc_gas_state_MOD_gas_state_is_allocated - 0.00 0.42 0.00 13302 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_shift - 0.00 0.42 0.00 12091 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_size - 0.00 0.42 0.00 12058 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_rank - 0.00 0.42 0.00 12031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_class - 0.00 0.42 0.00 12000 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer - 0.00 0.42 0.00 10070 0.00 0.00 __pmc_aero_state_MOD_aero_state_total_particles_all_procs - 0.00 0.42 0.00 10070 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer - 0.00 0.42 0.00 10036 0.00 0.00 __pmc_util_MOD_ensure_real_array_size - 0.00 0.42 0.00 10034 0.00 0.00 __pmc_util_MOD_ensure_integer_array_size - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_data_MOD_aero_data_rad2vol - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_sample_radius - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_sample_vols - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_new_id - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_create_time - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_source - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_vols - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_set_weight - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_MOD_aero_particle_zero - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_add_particle - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_group - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_aero_state_MOD_aero_state_add_particle - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_fractal_MOD_fractal_rad2vol - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_rand_MOD_rand_normal_array_1d - 0.00 0.42 0.00 10031 0.00 0.00 __pmc_util_MOD_sphere_rad2vol - 0.00 0.42 0.00 9189 0.00 0.00 __pmc_util_MOD_pow2_above - 0.00 0.42 0.00 8050 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_n_mode - 0.00 0.42 0.00 6030 0.00 0.00 __pmc_aero_info_array_MOD_aero_info_array_n_item - 0.00 0.42 0.00 6030 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer - 0.00 0.42 0.00 6030 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_real_2d - 0.00 0.42 0.00 6030 0.00 0.00 __pmc_util_MOD_interp_1d - 0.00 0.42 0.00 6030 0.00 0.00 __pmc_util_MOD_time_to_string_max_len - 0.00 0.42 0.00 6020 0.00 0.00 __pmc_aero_info_array_MOD_aero_info_array_zero - 0.00 0.42 0.00 4148 0.00 0.00 __pmc_util_MOD_assert_msg - 0.00 0.42 0.00 4020 0.00 0.00 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source - 0.00 0.42 0.00 4020 0.00 0.00 __pmc_aero_weight_MOD_aero_weight_scale - 0.00 0.42 0.00 4020 0.00 0.00 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species - 0.00 0.42 0.00 4020 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_integer_2d - 0.00 0.42 0.00 4010 0.00 0.01 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_interp_1d - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_env_state_MOD_env_state_sat_vapor_pressure - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_add_scaled - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_interp_1d - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_gas_state_MOD_gas_state_scale - 0.00 0.42 0.00 4000 0.00 0.00 __pmc_util_MOD_check_event - 0.00 0.42 0.00 2189 0.00 0.00 __pmc_integer_varray_MOD_integer_varray_zero - 0.00 0.42 0.00 2049 0.00 0.01 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed - 0.00 0.42 0.00 2020 0.00 0.01 __pmc_aero_state_MOD_aero_state_sort - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_data_MOD_aero_data_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_zero - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_rebalance - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_state_MOD_aero_state_zero - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_env_state_MOD_env_state_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_fractal_MOD_fractal_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_gas_data_MOD_gas_data_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_gas_state_MOD_gas_state_output_netcdf - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_open_write - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_netcdf_MOD_pmc_nc_write_info - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_output_MOD_make_filename - 0.00 0.42 0.00 2010 0.00 0.14 __pmc_output_MOD_output_state - 0.00 0.42 0.00 2010 0.00 0.14 __pmc_output_MOD_output_state_to_file - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_output_MOD_write_time - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_run_part_MOD_print_part_progress - 0.00 0.42 0.00 2010 0.00 0.00 __pmc_util_MOD_iso8601_date_and_time - 0.00 0.42 0.00 2002 0.00 0.00 __pmc_aero_data_MOD_aero_data_spec_by_name - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_n_bin - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_state_MOD_aero_state_copy_weight - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_state_MOD_aero_state_sample_particles - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_scale - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_air_molar_den - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_freezing_MOD_abifm_max_spec - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_freezing_MOD_unfreeze - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_gas_state_MOD_gas_state_ensure_nonnegative - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_rand_MOD_rand_binomial - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_particle_loss - 0.00 0.42 0.00 2000 0.00 0.01 __pmc_scenario_MOD_scenario_update_aero_state - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_update_env_state - 0.00 0.42 0.00 2000 0.00 0.00 __pmc_scenario_MOD_scenario_update_gas_state - 0.00 0.42 0.00 916 0.00 0.00 __pmc_spec_line_MOD_spec_line_strip_leading_spaces - 0.00 0.42 0.00 304 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_read_iostat - 0.00 0.42 0.00 301 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_real - 0.00 0.42 0.00 175 0.00 0.00 __pmc_spec_file_MOD_spec_file_read_line_raw - 0.00 0.42 0.00 163 0.00 0.00 __pmc_spec_line_MOD_spec_line_strip_comment - 0.00 0.42 0.00 163 0.00 0.00 __pmc_spec_line_MOD_spec_line_tabs_to_spaces - 0.00 0.42 0.00 130 0.00 0.00 __pmc_util_MOD_real_to_string - 0.00 0.42 0.00 113 0.00 0.00 __pmc_aero_particle_array_MOD_aero_particle_array_realloc - 0.00 0.42 0.00 104 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges - 0.00 0.42 0.00 87 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_line - 0.00 0.42 0.00 87 0.00 0.00 __pmc_spec_file_MOD_spec_file_read_next_data_line - 0.00 0.42 0.00 84 0.00 0.00 __pmc_integer_rmap2_MOD_integer_rmap2_zero - 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_interp_linear_disc - 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_linspace - 0.00 0.42 0.00 84 0.00 0.00 __pmc_util_MOD_logspace - 0.00 0.42 0.00 52 0.00 0.00 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid - 0.00 0.42 0.00 52 0.00 0.00 __pmc_bin_grid_MOD_bin_grid_make - 0.00 0.42 0.00 51 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_line_length - 0.00 0.42 0.00 51 0.00 0.00 __pmc_spec_file_MOD_spec_file_check_line_name - 0.00 0.42 0.00 50 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_n_class - 0.00 0.42 0.00 50 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_line_no_eof - 0.00 0.42 0.00 42 0.00 0.33 __pmc_aero_sorted_MOD_aero_sorted_sort_particles - 0.00 0.42 0.00 40 0.00 0.00 __pmc_aero_mode_MOD_aero_mode_number - 0.00 0.42 0.00 33 0.00 0.00 __pmc_rand_MOD_pmc_rand_int - 0.00 0.42 0.00 32 0.00 0.00 __pmc_rand_MOD_rand_hex_char - 0.00 0.42 0.00 30 0.00 0.00 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type - 0.00 0.42 0.00 30 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_n_group - 0.00 0.42 0.00 30 0.00 0.00 __pmc_util_MOD_check_time_multiple - 0.00 0.42 0.00 20 0.00 0.01 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add - 0.00 0.42 0.00 20 0.00 0.01 __pmc_aero_state_MOD_aero_state_scale_weight - 0.00 0.42 0.00 20 0.00 0.00 __pmc_aero_state_MOD_aero_state_weight_class_for_source - 0.00 0.42 0.00 20 0.00 0.00 __pmc_rand_MOD_rand_poisson - 0.00 0.42 0.00 17 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_string - 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_close - 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_open - 0.00 0.42 0.00 15 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_logical - 0.00 0.42 0.00 15 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_logical - 0.00 0.42 0.00 15 0.00 0.00 __pmc_util_MOD_free_unit - 0.00 0.42 0.00 15 0.00 0.00 __pmc_util_MOD_get_unit - 0.00 0.42 0.00 13 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_real - 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_line_array - 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_line_list - 0.00 0.42 0.00 11 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_real_named_array - 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_state_MOD_aero_state_set_n_part_ideal - 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_state_MOD_aero_state_set_weight - 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass - 0.00 0.42 0.00 10 0.00 0.00 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes - 0.00 0.42 0.00 10 0.00 0.00 __pmc_rand_MOD_prob_round - 0.00 0.42 0.00 10 0.00 40.00 __pmc_run_part_MOD_run_part - 0.00 0.42 0.00 10 0.00 0.00 __pmc_scenario_MOD_scenario_contains_aero_mode_type - 0.00 0.42 0.00 10 0.00 0.00 __pmc_scenario_MOD_scenario_init_env_state - 0.00 0.42 0.00 4 0.00 0.37 __pmc_aero_mode_MOD_spec_file_read_aero_mode - 0.00 0.42 0.00 3 0.00 0.50 __pmc_aero_dist_MOD_spec_file_read_aero_dist - 0.00 0.42 0.00 3 0.00 0.00 __pmc_gas_state_MOD_gas_state_set_size - 0.00 0.42 0.00 3 0.00 0.00 __pmc_gas_state_MOD_gas_state_zero - 0.00 0.42 0.00 3 0.00 0.11 __pmc_spec_file_MOD_spec_file_read_integer - 0.00 0.42 0.00 3 0.00 0.34 __pmc_spec_file_MOD_spec_file_read_timed_real_array - 0.00 0.42 0.00 3 0.00 0.00 __pmc_spec_file_MOD_spec_file_string_to_integer - 0.00 0.42 0.00 3 0.00 0.00 __pmc_util_MOD_string_array_find - 0.00 0.42 0.00 2 0.00 0.96 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates - 0.00 0.42 0.00 2 0.00 0.34 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates - 0.00 0.42 0.00 2 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_bcast_integer - 0.00 0.42 0.00 2 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_bcast_string - 0.00 0.42 0.00 2 0.00 0.00 __pmc_rand_MOD_pmc_rand_finalize - 0.00 0.42 0.00 2 0.00 0.00 __pmc_rand_MOD_pmc_srand - 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_almost_equal - 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_ensure_string_array_size - 0.00 0.42 0.00 2 0.00 0.00 __pmc_util_MOD_warn_assert_msg - 0.00 0.42 0.00 1 0.00 410.00 MAIN__ - 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_set_mosaic_map - 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_set_water_index - 0.00 0.42 0.00 1 0.00 0.00 __pmc_aero_data_MOD_aero_data_source_by_name - 0.00 0.42 0.00 1 0.00 0.34 __pmc_aero_data_MOD_spec_file_read_aero_data - 0.00 0.42 0.00 1 0.00 0.34 __pmc_aero_mode_MOD_spec_file_read_vol_frac - 0.00 0.42 0.00 1 0.00 0.69 __pmc_env_state_MOD_spec_file_read_env_state - 0.00 0.42 0.00 1 0.00 0.00 __pmc_fractal_MOD_fractal_set_spherical - 0.00 0.42 0.00 1 0.00 0.11 __pmc_fractal_MOD_spec_file_read_fractal - 0.00 0.42 0.00 1 0.00 0.00 __pmc_gas_data_MOD_gas_data_set_mosaic_map - 0.00 0.42 0.00 1 0.00 0.34 __pmc_gas_data_MOD_spec_file_read_gas_data - 0.00 0.42 0.00 1 0.00 0.34 __pmc_gas_state_MOD_spec_file_read_gas_state - 0.00 0.42 0.00 1 0.00 0.00 __pmc_mosaic_MOD_mosaic_support - 0.00 0.42 0.00 1 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_finalize - 0.00 0.42 0.00 1 0.00 0.00 __pmc_mpi_MOD_pmc_mpi_init - 0.00 0.42 0.00 1 0.00 0.00 __pmc_rand_MOD_uuid4_str - 0.00 0.42 0.00 1 0.00 4.56 __pmc_scenario_MOD_spec_file_read_scenario - 0.00 0.42 0.00 1 0.00 0.00 __pmc_util_MOD_diam2rad - - % the percentage of the total running time of the -time program used by this function. - -cumulative a running sum of the number of seconds accounted - seconds for by this function and those listed above it. - - self the number of seconds accounted for by this -seconds function alone. This is the major sort for this - listing. - -calls the number of times this function was invoked, if - this function is profiled, else blank. - - self the average number of milliseconds spent in this -ms/call function per call, if this function is profiled, - else blank. - - total the average number of milliseconds spent in this -ms/call function and its descendents per call, if this - function is profiled, else blank. - -name the name of the function. This is the minor sort - for this listing. The index shows the location of - the function in the gprof listing. If the index is - in parenthesis it shows where it would appear in - the gprof listing if it were to be printed. - -Copyright (C) 2012-2016 Free Software Foundation, Inc. - -Copying and distribution of this file, with or without modification, -are permitted in any medium without royalty provided the copyright -notice and this notice are preserved. - - Call graph (explanation follows) - - -granularity: each sample hit covers 2 byte(s) for 2.38% of 0.42 seconds - -index % time self children called name - 2 MAIN__ [1] - 0.00 0.41 1/1 main [2] -[1] 97.6 0.00 0.41 1+2 MAIN__ [1] - 0.00 0.40 10/10 __pmc_run_part_MOD_run_part [3] - 0.00 0.00 1/1 __pmc_scenario_MOD_spec_file_read_scenario [47] - 0.00 0.00 14/15 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 6/17 __pmc_spec_file_MOD_spec_file_read_string [52] - 0.00 0.00 1/1 __pmc_env_state_MOD_spec_file_read_env_state [66] - 0.00 0.00 5/13 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 1/3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] - 0.00 0.00 1/1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] - 0.00 0.00 1/1 __pmc_gas_state_MOD_spec_file_read_gas_state [71] - 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 2/3 __pmc_spec_file_MOD_spec_file_read_integer [72] - 0.00 0.00 1/1 __pmc_fractal_MOD_spec_file_read_fractal [89] - 0.00 0.00 10/4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] - 0.00 0.00 10/2010 __pmc_aero_state_MOD_aero_state_zero [424] - 0.00 0.00 10/30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] - 0.00 0.00 10/10 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] - 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_weight [475] - 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] - 0.00 0.00 10/10 __pmc_scenario_MOD_scenario_init_env_state [480] - 0.00 0.00 5/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] - 0.00 0.00 5/15 __pmc_spec_file_MOD_spec_file_open [470] - 0.00 0.00 5/15 __pmc_spec_file_MOD_spec_file_close [469] - 0.00 0.00 2/2 __pmc_mpi_MOD_pmc_mpi_bcast_string [486] - 0.00 0.00 2/2 __pmc_rand_MOD_pmc_srand [488] - 0.00 0.00 2/2 __pmc_rand_MOD_pmc_rand_finalize [487] - 0.00 0.00 1/1 __pmc_mpi_MOD_pmc_mpi_init [499] - 0.00 0.00 1/1 __pmc_mpi_MOD_pmc_mpi_finalize [498] - 0.00 0.00 1/1 __pmc_mosaic_MOD_mosaic_support [497] - 0.00 0.00 1/1 __pmc_rand_MOD_uuid4_str [500] - 2 MAIN__ [1] ------------------------------------------------ - -[2] 97.6 0.00 0.41 main [2] - 0.00 0.41 1/1 MAIN__ [1] ------------------------------------------------ - 0.00 0.40 10/10 MAIN__ [1] -[3] 95.2 0.00 0.40 10 __pmc_run_part_MOD_run_part [3] - 0.00 0.29 2010/2010 __pmc_output_MOD_output_state [4] - 0.02 0.07 2000/2000 __pmc_freezing_MOD_freeze [9] - 0.00 0.02 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] - 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_rebalance [85] - 0.00 0.00 2010/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] - 0.00 0.00 12000/12000 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [394] - 0.00 0.00 4010/6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] - 0.00 0.00 4000/4000 __pmc_util_MOD_check_event [421] - 0.00 0.00 2010/2010 __pmc_run_part_MOD_print_part_progress [426] - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_env_state [441] - 0.00 0.00 2000/2000 __pmc_freezing_MOD_unfreeze [436] - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] - 0.00 0.00 30/30 __pmc_util_MOD_check_time_multiple [467] - 0.00 0.00 10/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] - 0.00 0.00 10/12091 __pmc_mpi_MOD_pmc_mpi_size [391] ------------------------------------------------ - 0.00 0.29 2010/2010 __pmc_run_part_MOD_run_part [3] -[4] 68.8 0.00 0.29 2010 __pmc_output_MOD_output_state [4] - 0.00 0.29 2010/2010 __pmc_output_MOD_output_state_to_file [5] - 0.00 0.00 2010/12091 __pmc_mpi_MOD_pmc_mpi_size [391] - 0.00 0.00 2010/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] ------------------------------------------------ - 0.00 0.29 2010/2010 __pmc_output_MOD_output_state [4] -[5] 68.8 0.00 0.29 2010 __pmc_output_MOD_output_state_to_file [5] - 0.12 0.16 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.01 2010/2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] - 0.00 0.01 2010/2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] - 0.00 0.00 2010/2010 __pmc_env_state_MOD_env_state_output_netcdf [60] - 0.00 0.00 2010/2010 __pmc_output_MOD_write_time [76] - 0.00 0.00 2010/2010 __pmc_gas_state_MOD_gas_state_output_netcdf [81] - 0.00 0.00 2010/2010 __pmc_gas_data_MOD_gas_data_output_netcdf [82] - 0.00 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] - 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] - 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 2010/2010 __pmc_output_MOD_make_filename [425] ------------------------------------------------ - 0.12 0.16 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[6] 65.6 0.12 0.16 2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.15 2016231/2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] - 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] - 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] - 0.00 0.00 10050/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 8040/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] - 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] - 0.00 0.00 2010/4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] - 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] - 0.00 0.00 42210/68260 __pmc_aero_state_MOD_aero_state_n_part [380] - 0.00 0.00 6030/6030 __pmc_aero_info_array_MOD_aero_info_array_n_item [410] - 0.00 0.00 2010/30141 __pmc_aero_data_MOD_aero_data_n_source [382] - 0.00 0.00 2010/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.15 2016231/2016231 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[7] 35.4 0.00 0.15 2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] - 0.01 0.14 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] ------------------------------------------------ - 0.01 0.14 2016231/2016231 __pmc_aero_state_MOD_aero_state_particle_num_conc [7] -[8] 35.4 0.01 0.14 2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] - 0.06 0.02 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] - 0.02 0.04 2016231/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] ------------------------------------------------ - 0.02 0.07 2000/2000 __pmc_run_part_MOD_run_part [3] -[9] 21.6 0.02 0.07 2000 __pmc_freezing_MOD_freeze [9] - 0.02 0.02 4000/4000 __pmc_aero_state_MOD_aero_state_masses [12] - 0.00 0.02 2000/2020 __pmc_aero_state_MOD_aero_state_sort [25] - 0.00 0.01 16771/16771 __pmc_freezing_MOD_abifm_particle [29] - 0.00 0.00 126000/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] - 0.00 0.00 1200910/1200910 __pmc_rand_MOD_pmc_random_geometric [374] - 0.00 0.00 126000/126000 __pmc_freezing_MOD_abifm_max [376] - 0.00 0.00 16771/1282969 __pmc_rand_MOD_pmc_random [373] - 0.00 0.00 6000/68260 __pmc_aero_state_MOD_aero_state_n_part [380] - 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [434] - 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [433] - 0.00 0.00 2000/2000 __pmc_freezing_MOD_abifm_max_spec [435] - 0.00 0.00 2000/2000 __pmc_aero_sorted_MOD_aero_sorted_n_bin [429] - 0.00 0.00 2000/12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] ------------------------------------------------ - 0.06 0.02 2016231/2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] -[10] 19.0 0.06 0.02 2016231 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] - 0.02 0.00 4032462/4032462 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [17] ------------------------------------------------ - 0.00 0.00 4460/2045320 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] - 0.00 0.00 24629/2045320 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] - 0.02 0.04 2016231/2045320 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [8] -[11] 14.2 0.02 0.04 2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] - 0.01 0.02 2045320/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] - 0.01 0.00 2045320/2045320 __pmc_aero_particle_MOD_aero_particle_volume [31] ------------------------------------------------ - 0.02 0.02 4000/4000 __pmc_freezing_MOD_freeze [9] -[12] 9.5 0.02 0.02 4000 __pmc_aero_state_MOD_aero_state_masses [12] - 0.02 0.00 2006200/2006200 __pmc_aero_particle_MOD_aero_particle_mass [19] - 0.00 0.00 2006200/2006200 __pmc_aero_particle_MOD_aero_particle_species_mass [372] - 0.00 0.00 8000/68260 __pmc_aero_state_MOD_aero_state_n_part [380] - 0.00 0.00 6000/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] - 0.00 0.00 2000/2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] - 0.00 0.00 2000/4148 __pmc_util_MOD_assert_msg [414] ------------------------------------------------ - 0.00 0.00 16771/2062091 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] - 0.01 0.02 2045320/2062091 __pmc_aero_particle_MOD_aero_particle_radius [11] -[13] 7.1 0.01 0.02 2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] - 0.00 0.02 2062091/2062091 __pmc_fractal_MOD_fractal_vol2rad [23] ------------------------------------------------ - 0.00 0.01 20004/49200 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.01 29196/49200 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] -[14] 5.4 0.00 0.02 49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] - 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_append [20] - 0.00 0.00 98400/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] - 0.00 0.00 246000/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.02 2000/2000 __pmc_run_part_MOD_run_part [3] -[15] 4.8 0.00 0.02 2000 __pmc_scenario_MOD_scenario_update_aero_state [15] - 0.00 0.02 4000/4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] - 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] - 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 4000/4000 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_particle_loss [440] - 0.00 0.00 2000/2000 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] ------------------------------------------------ - 0.00 0.00 10/4010 MAIN__ [1] - 0.00 0.02 4000/4010 __pmc_scenario_MOD_scenario_update_aero_state [15] -[16] 4.8 0.00 0.02 4010 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] - 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_particle [39] - 0.00 0.01 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] - 0.00 0.00 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] - 0.00 0.00 10031/10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] - 0.00 0.00 20/20 __pmc_rand_MOD_rand_poisson [95] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_zero [403] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_vols [401] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_new_id [398] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_weight [402] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_create_time [399] - 0.00 0.00 10031/10031 __pmc_aero_particle_MOD_aero_particle_set_source [400] - 0.00 0.00 8020/8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] - 0.00 0.00 4010/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] - 0.00 0.00 40/40 __pmc_aero_mode_MOD_aero_mode_number [462] - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] ------------------------------------------------ - 0.02 0.00 4032462/4032462 __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [10] -[17] 4.8 0.02 0.00 4032462 __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [17] ------------------------------------------------ - 0.00 0.00 10031/2072122 __pmc_fractal_MOD_fractal_rad2vol [93] - 0.02 0.00 2062091/2072122 __pmc_fractal_MOD_fractal_vol2rad [23] -[18] 4.8 0.02 0.00 2072122 __pmc_fractal_MOD_fractal_is_spherical [18] ------------------------------------------------ - 0.02 0.00 2006200/2006200 __pmc_aero_state_MOD_aero_state_masses [12] -[19] 4.8 0.02 0.00 2006200 __pmc_aero_particle_MOD_aero_particle_mass [19] ------------------------------------------------ - 0.00 0.02 196800/196800 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] -[20] 4.8 0.00 0.02 196800 __pmc_integer_varray_MOD_integer_varray_append [20] - 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_enlarge [21] ------------------------------------------------ - 0.00 0.02 196800/196800 __pmc_integer_varray_MOD_integer_varray_append [20] -[21] 4.8 0.00 0.02 196800 __pmc_integer_varray_MOD_integer_varray_enlarge [21] - 0.02 0.00 9076/9076 __pmc_integer_varray_MOD_integer_varray_realloc [22] - 0.00 0.00 9076/9189 __pmc_util_MOD_pow2_above [408] ------------------------------------------------ - 0.02 0.00 9076/9076 __pmc_integer_varray_MOD_integer_varray_enlarge [21] -[22] 4.8 0.02 0.00 9076 __pmc_integer_varray_MOD_integer_varray_realloc [22] - 0.00 0.00 7478/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.02 2062091/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] -[23] 4.7 0.00 0.02 2062091 __pmc_fractal_MOD_fractal_vol2rad [23] - 0.02 0.00 2062091/2072122 __pmc_fractal_MOD_fractal_is_spherical [18] - 0.00 0.00 2062091/2062091 __pmc_util_MOD_sphere_vol2rad [371] ------------------------------------------------ - 0.00 0.00 29/2049 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.02 2020/2049 __pmc_aero_state_MOD_aero_state_sort [25] -[24] 4.2 0.00 0.02 2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] - 0.00 0.01 42/42 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] - 0.00 0.00 126357/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] - 0.00 0.00 4460/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] - 0.00 0.00 6078/90028 __pmc_bin_grid_MOD_bin_grid_size [378] - 0.00 0.00 2049/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 52/52 __pmc_bin_grid_MOD_bin_grid_make [458] - 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] ------------------------------------------------ - 0.00 0.00 20/2020 __pmc_aero_state_MOD_aero_state_scale_weight [80] - 0.00 0.02 2000/2020 __pmc_freezing_MOD_freeze [9] -[25] 4.1 0.00 0.02 2020 __pmc_aero_state_MOD_aero_state_sort [25] - 0.00 0.02 2020/2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] ------------------------------------------------ - 0.00 0.01 42/42 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] -[26] 3.3 0.00 0.01 42 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] - 0.00 0.01 29196/49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] - 0.00 0.00 14598/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] - 0.00 0.00 84/84 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] ------------------------------------------------ - 0.00 0.01 16771/16771 __pmc_freezing_MOD_abifm_particle [29] -[27] 2.4 0.00 0.01 16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] - 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] ------------------------------------------------ - 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] -[28] 2.4 0.00 0.01 16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] - 0.01 0.00 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] - 0.00 0.00 16771/2062091 __pmc_aero_data_MOD_aero_data_vol2rad [13] ------------------------------------------------ - 0.00 0.01 16771/16771 __pmc_freezing_MOD_freeze [9] -[29] 2.4 0.00 0.01 16771 __pmc_freezing_MOD_abifm_particle [29] - 0.00 0.01 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_diameter [27] - 0.00 0.00 33542/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.01 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_output_netcdf [42] -[30] 2.4 0.01 0.00 4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] - 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 24120/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.01 0.00 2045320/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] -[31] 2.4 0.01 0.00 2045320 __pmc_aero_particle_MOD_aero_particle_volume [31] ------------------------------------------------ - 0.00 0.00 20/30113 __pmc_rand_MOD_rand_poisson [95] - 0.00 0.00 10031/30113 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] - 0.01 0.00 20062/30113 __pmc_rand_MOD_rand_normal_array_1d [41] -[32] 2.4 0.01 0.00 30113 __pmc_rand_MOD_rand_normal [32] - 0.00 0.00 60226/1282969 __pmc_rand_MOD_pmc_random [373] - 0.00 0.00 30113/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.01 0.00 16771/16771 __pmc_aero_particle_MOD_aero_particle_dry_radius [28] -[33] 2.4 0.01 0.00 16771 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] - 0.00 0.00 16771/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.00 4/87 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 33/87 __pmc_spec_file_MOD_spec_file_read_line_list [49] - 0.00 0.01 50/87 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] -[34] 2.4 0.00 0.01 87 __pmc_spec_file_MOD_spec_file_read_line [34] - 0.01 0.00 75/75 __pmc_spec_line_MOD_spec_line_set_size [35] - 0.00 0.00 753/916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] - 0.00 0.00 87/87 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] ------------------------------------------------ - 0.01 0.00 75/75 __pmc_spec_file_MOD_spec_file_read_line [34] -[35] 2.4 0.01 0.00 75 __pmc_spec_line_MOD_spec_line_set_size [35] ------------------------------------------------ - -[36] 2.4 0.01 0.00 __pmc_fractal_MOD_fractal_vol_to_mobility_rad [36] ------------------------------------------------ - 0.00 0.00 20/358827 __pmc_aero_state_MOD_aero_state_scale_weight [80] - 0.00 0.00 8050/358827 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 98400/358827 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] - 0.00 0.00 126000/358827 __pmc_freezing_MOD_freeze [9] - 0.00 0.00 126357/358827 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] -[37] 2.4 0.01 0.00 358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] ------------------------------------------------ - 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_particle [39] -[38] 2.3 0.00 0.01 10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.01 20004/49200 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] - 0.00 0.00 10031/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] - 0.00 0.00 29/2049 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] - 0.00 0.00 20062/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 10031/90028 __pmc_bin_grid_MOD_bin_grid_size [378] - 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_n_group [406] - 0.00 0.00 10031/12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] - 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] ------------------------------------------------ - 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[39] 2.3 0.00 0.01 10031 __pmc_aero_state_MOD_aero_state_add_particle [39] - 0.00 0.01 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] ------------------------------------------------ - 0.00 0.01 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[40] 1.6 0.00 0.01 10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] - 0.00 0.01 10031/10031 __pmc_rand_MOD_rand_normal_array_1d [41] ------------------------------------------------ - 0.00 0.01 10031/10031 __pmc_aero_mode_MOD_aero_mode_sample_vols [40] -[41] 1.6 0.00 0.01 10031 __pmc_rand_MOD_rand_normal_array_1d [41] - 0.01 0.00 20062/30113 __pmc_rand_MOD_rand_normal [32] ------------------------------------------------ - 0.00 0.01 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[42] 1.5 0.00 0.01 2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] - 0.01 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] - 0.00 0.00 10050/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 2010/2010 __pmc_fractal_MOD_fractal_output_netcdf [73] - 0.00 0.00 4020/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] ------------------------------------------------ - 0.00 0.00 2/50 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 3/50 __pmc_spec_file_MOD_spec_file_read_integer [72] - 0.00 0.00 13/50 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 15/50 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 17/50 __pmc_spec_file_MOD_spec_file_read_string [52] -[43] 1.4 0.00 0.01 50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.01 50/87 __pmc_spec_file_MOD_spec_file_read_line [34] ------------------------------------------------ - 0.00 0.01 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[44] 1.2 0.00 0.01 2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] - 0.01 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_check_msg [45] - 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_check [46] ------------------------------------------------ - 0.01 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_open_write [44] -[45] 1.2 0.01 0.00 2010 __pmc_netcdf_MOD_pmc_nc_check_msg [45] ------------------------------------------------ - 0.00 0.00 2010/570840 __pmc_output_MOD_output_state_to_file [5] - 0.00 0.00 2010/570840 __pmc_netcdf_MOD_pmc_nc_open_write [44] - 0.00 0.00 6030/570840 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] - 0.00 0.00 12060/570840 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] - 0.00 0.00 12060/570840 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] - 0.00 0.00 14070/570840 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] - 0.00 0.00 14070/570840 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] - 0.00 0.00 14070/570840 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] - 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_write_info [88] - 0.00 0.00 16080/570840 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] - 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] - 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_write_integer [74] - 0.00 0.00 72360/570840 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 80400/570840 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 120600/570840 __pmc_netcdf_MOD_pmc_nc_write_real [55] - 0.00 0.00 142710/570840 __pmc_netcdf_MOD_pmc_nc_write_atts [59] -[46] 1.2 0.01 0.00 570840 __pmc_netcdf_MOD_pmc_nc_check [46] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[47] 1.1 0.00 0.00 1 __pmc_scenario_MOD_spec_file_read_scenario [47] - 0.00 0.00 2/2 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] - 0.00 0.00 8/17 __pmc_spec_file_MOD_spec_file_read_string [52] - 0.00 0.00 2/2 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] - 0.00 0.00 7/15 __pmc_spec_file_MOD_spec_file_open [470] - 0.00 0.00 7/15 __pmc_spec_file_MOD_spec_file_close [469] ------------------------------------------------ - 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] -[48] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_line_array [48] - 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_list [49] ------------------------------------------------ - 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_array [48] -[49] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_line_list [49] - 0.00 0.00 33/87 __pmc_spec_file_MOD_spec_file_read_line [34] ------------------------------------------------ - 0.00 0.00 1/11 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] - 0.00 0.00 1/11 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 1/11 __pmc_gas_data_MOD_spec_file_read_gas_data [70] - 0.00 0.00 1/11 __pmc_gas_state_MOD_spec_file_read_gas_state [71] - 0.00 0.00 2/11 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 2/11 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] - 0.00 0.00 3/11 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] -[50] 0.9 0.00 0.00 11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 11/11 __pmc_spec_file_MOD_spec_file_read_line_array [48] - 0.00 0.00 288/301 __pmc_spec_file_MOD_spec_file_string_to_real [445] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[51] 0.8 0.00 0.00 10031 __pmc_aero_mode_MOD_aero_mode_sample_radius [51] - 0.00 0.00 10031/30113 __pmc_rand_MOD_rand_normal [32] ------------------------------------------------ - 0.00 0.00 3/17 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 6/17 MAIN__ [1] - 0.00 0.00 8/17 __pmc_scenario_MOD_spec_file_read_scenario [47] -[52] 0.5 0.00 0.00 17 __pmc_spec_file_MOD_spec_file_read_string [52] - 0.00 0.00 17/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] ------------------------------------------------ - 0.00 0.00 2/2 __pmc_scenario_MOD_spec_file_read_scenario [47] -[53] 0.5 0.00 0.00 2 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 2/3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] - 0.00 0.00 2/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 2/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.00 2/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 2/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] - 0.00 0.00 2/15 __pmc_spec_file_MOD_spec_file_open [470] - 0.00 0.00 2/15 __pmc_spec_file_MOD_spec_file_close [469] ------------------------------------------------ - 0.00 0.00 1/15 __pmc_fractal_MOD_spec_file_read_fractal [89] - 0.00 0.00 14/15 MAIN__ [1] -[54] 0.4 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 15/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] - 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_string_to_logical [471] ------------------------------------------------ - 0.00 0.00 4020/30150 __pmc_output_MOD_write_time [76] - 0.00 0.00 6030/30150 __pmc_fractal_MOD_fractal_output_netcdf [73] - 0.00 0.00 20100/30150 __pmc_env_state_MOD_env_state_output_netcdf [60] -[55] 0.4 0.00 0.00 30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] - 0.00 0.00 120600/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 30150/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 4/4 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] -[56] 0.4 0.00 0.00 4 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 4/87 __pmc_spec_file_MOD_spec_file_read_line [34] - 0.00 0.00 3/17 __pmc_spec_file_MOD_spec_file_read_string [52] - 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] - 0.00 0.00 3/13 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 1/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 1/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] - 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_source_by_name [494] - 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_open [470] - 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_close [469] - 0.00 0.00 1/1 __pmc_util_MOD_diam2rad [501] ------------------------------------------------ - 0.00 0.00 1/3 MAIN__ [1] - 0.00 0.00 2/3 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] -[57] 0.4 0.00 0.00 3 __pmc_aero_dist_MOD_spec_file_read_aero_dist [57] - 0.00 0.00 4/4 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] ------------------------------------------------ - 0.00 0.00 3/13 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 5/13 MAIN__ [1] - 0.00 0.00 5/13 __pmc_env_state_MOD_spec_file_read_env_state [66] -[58] 0.4 0.00 0.00 13 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 13/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] - 0.00 0.00 13/301 __pmc_spec_file_MOD_spec_file_string_to_real [445] ------------------------------------------------ - 0.00 0.00 4020/84420 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] - 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] - 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_integer [74] - 0.00 0.00 18090/84420 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 20100/84420 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 30150/84420 __pmc_netcdf_MOD_pmc_nc_write_real [55] -[59] 0.3 0.00 0.00 84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] - 0.00 0.00 142710/570840 __pmc_netcdf_MOD_pmc_nc_check [46] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[60] 0.3 0.00 0.00 2010 __pmc_env_state_MOD_env_state_output_netcdf [60] - 0.00 0.00 20100/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] - 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] ------------------------------------------------ - 0.00 0.00 3/3 __pmc_scenario_MOD_spec_file_read_scenario [47] -[61] 0.2 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_read_timed_real_array [61] - 0.00 0.00 3/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] ------------------------------------------------ - 0.00 0.00 2010/20100 __pmc_gas_state_MOD_gas_state_output_netcdf [81] - 0.00 0.00 8040/20100 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 10050/20100 __pmc_aero_data_MOD_aero_data_output_netcdf [42] -[62] 0.2 0.00 0.00 20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 80400/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 20100/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 2010/18090 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] - 0.00 0.00 2010/18090 __pmc_gas_data_MOD_gas_data_output_netcdf [82] - 0.00 0.00 4020/18090 __pmc_aero_data_MOD_aero_data_output_netcdf [42] - 0.00 0.00 10050/18090 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[63] 0.2 0.00 0.00 18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 72360/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 18090/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 10031/24629 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.00 14598/24629 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] -[64] 0.2 0.00 0.00 24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] - 0.00 0.00 24629/2045320 __pmc_aero_particle_MOD_aero_particle_radius [11] - 0.00 0.00 24629/24629 __pmc_bin_grid_MOD_bin_grid_find [383] ------------------------------------------------ - 0.00 0.00 2/2 __pmc_scenario_MOD_spec_file_read_scenario [47] -[65] 0.2 0.00 0.00 2 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] - 0.00 0.00 2/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 2/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] - 0.00 0.00 2/3 __pmc_gas_state_MOD_gas_state_set_size [481] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[66] 0.2 0.00 0.00 1 __pmc_env_state_MOD_spec_file_read_env_state [66] - 0.00 0.00 5/13 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 1/3 __pmc_spec_file_MOD_spec_file_read_integer [72] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[67] 0.1 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] - 0.00 0.00 4020/6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] - 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] - 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] - 0.00 0.00 2010/4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[68] 0.1 0.00 0.00 1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 5/10036 __pmc_util_MOD_ensure_real_array_size [396] - 0.00 0.00 4/130 __pmc_util_MOD_real_to_string [449] - 0.00 0.00 2/10034 __pmc_util_MOD_ensure_integer_array_size [397] - 0.00 0.00 2/4148 __pmc_util_MOD_assert_msg [414] - 0.00 0.00 2/2 __pmc_util_MOD_almost_equal [489] - 0.00 0.00 2/2 __pmc_util_MOD_warn_assert_msg [491] - 0.00 0.00 1/2 __pmc_util_MOD_ensure_string_array_size [490] - 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] - 0.00 0.00 1/1 __pmc_aero_data_MOD_aero_data_set_water_index [493] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] -[69] 0.1 0.00 0.00 1 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] - 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 2/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] - 0.00 0.00 2/2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[70] 0.1 0.00 0.00 1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] - 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 1/2 __pmc_util_MOD_ensure_string_array_size [490] - 0.00 0.00 1/10034 __pmc_util_MOD_ensure_integer_array_size [397] - 0.00 0.00 1/1 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[71] 0.1 0.00 0.00 1 __pmc_gas_state_MOD_spec_file_read_gas_state [71] - 0.00 0.00 1/11 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] - 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] - 0.00 0.00 1/3 __pmc_gas_state_MOD_gas_state_set_size [481] ------------------------------------------------ - 0.00 0.00 1/3 __pmc_env_state_MOD_spec_file_read_env_state [66] - 0.00 0.00 2/3 MAIN__ [1] -[72] 0.1 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_read_integer [72] - 0.00 0.00 3/50 __pmc_spec_file_MOD_spec_file_read_line_no_eof [43] - 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_check_line_name [460] - 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_check_line_length [459] - 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_string_to_integer [483] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_data_MOD_aero_data_output_netcdf [42] -[73] 0.1 0.00 0.00 2010 __pmc_fractal_MOD_fractal_output_netcdf [73] - 0.00 0.00 6030/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] ------------------------------------------------ - 0.00 0.00 2010/6030 __pmc_env_state_MOD_env_state_output_netcdf [60] - 0.00 0.00 2010/6030 __pmc_output_MOD_output_state_to_file [5] - 0.00 0.00 2010/6030 __pmc_output_MOD_write_time [76] -[74] 0.1 0.00 0.00 6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] - 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 2010/6030 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 4020/6030 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] -[75] 0.1 0.00 0.00 6030 __pmc_netcdf_MOD_pmc_nc_write_real_2d [75] - 0.00 0.00 24120/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 6030/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[76] 0.1 0.00 0.00 2010 __pmc_output_MOD_write_time [76] - 0.00 0.00 4020/30150 __pmc_netcdf_MOD_pmc_nc_write_real [55] - 0.00 0.00 2010/6030 __pmc_netcdf_MOD_pmc_nc_write_integer [74] ------------------------------------------------ - 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_sample_particles [94] - 0.00 0.00 2000/14070 __pmc_scenario_MOD_scenario_update_aero_state [15] - 0.00 0.00 10070/14070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] -[77] 0.1 0.00 0.00 14070 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 8050/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] - 0.00 0.00 8060/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 6020/68260 __pmc_aero_state_MOD_aero_state_n_part [380] ------------------------------------------------ - 0.00 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 2010/4020 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] -[78] 0.0 0.00 0.00 4020 __pmc_netcdf_MOD_pmc_nc_write_integer_2d [78] - 0.00 0.00 16080/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 4020/84420 __pmc_netcdf_MOD_pmc_nc_write_atts [59] ------------------------------------------------ - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[79] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_scale_weight [80] - 0.00 0.00 20/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] - 0.00 0.00 40/12091 __pmc_mpi_MOD_pmc_mpi_size [391] - 0.00 0.00 20/30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] - 0.00 0.00 20/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] ------------------------------------------------ - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] -[80] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_scale_weight [80] - 0.00 0.00 20/2020 __pmc_aero_state_MOD_aero_state_sort [25] - 0.00 0.00 20/358827 __pmc_integer_varray_MOD_integer_varray_n_entry [37] - 0.00 0.00 20/4020 __pmc_aero_weight_MOD_aero_weight_scale [415] - 0.00 0.00 10/10 __pmc_rand_MOD_prob_round [478] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[81] 0.0 0.00 0.00 2010 __pmc_gas_state_MOD_gas_state_output_netcdf [81] - 0.00 0.00 2010/20100 __pmc_netcdf_MOD_pmc_nc_write_real_1d [62] - 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[82] 0.0 0.00 0.00 2010 __pmc_gas_data_MOD_gas_data_output_netcdf [82] - 0.00 0.00 2010/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] ------------------------------------------------ - 0.00 0.00 20/10070 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] - 0.00 0.00 2010/10070 __pmc_run_part_MOD_run_part [3] - 0.00 0.00 8040/10070 __pmc_aero_state_MOD_aero_state_rebalance [85] -[83] 0.0 0.00 0.00 10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] - 0.00 0.00 10070/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 10070/10070 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [395] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[84] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] - 0.00 0.00 2010/18090 __pmc_netcdf_MOD_pmc_nc_write_integer_1d [63] - 0.00 0.00 6030/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 6030/68260 __pmc_aero_state_MOD_aero_state_n_part [380] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_run_part_MOD_run_part [3] -[85] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_rebalance [85] - 0.00 0.00 8040/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] ------------------------------------------------ - 0.00 0.00 2010/4020 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 2010/4020 __pmc_aero_data_MOD_aero_data_output_netcdf [42] -[86] 0.0 0.00 0.00 4020 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] - 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 18090/30141 __pmc_aero_data_MOD_aero_data_n_source [382] ------------------------------------------------ - 0.00 0.00 2010/4020 __pmc_gas_data_MOD_gas_data_output_netcdf [82] - 0.00 0.00 2010/4020 __pmc_gas_state_MOD_gas_state_output_netcdf [81] -[87] 0.0 0.00 0.00 4020 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] - 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 48240/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[88] 0.0 0.00 0.00 2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] - 0.00 0.00 14070/570840 __pmc_netcdf_MOD_pmc_nc_check [46] - 0.00 0.00 2010/2010 __pmc_util_MOD_iso8601_date_and_time [427] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[89] 0.0 0.00 0.00 1 __pmc_fractal_MOD_spec_file_read_fractal [89] - 0.00 0.00 1/15 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 1/1 __pmc_fractal_MOD_fractal_set_spherical [495] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] -[90] 0.0 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [90] - 0.00 0.00 12060/570840 __pmc_netcdf_MOD_pmc_nc_check [46] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [67] -[91] 0.0 0.00 0.00 2010 __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [91] - 0.00 0.00 12060/570840 __pmc_netcdf_MOD_pmc_nc_check [46] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[92] 0.0 0.00 0.00 10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] - 0.00 0.00 10031/10031 __pmc_fractal_MOD_fractal_rad2vol [93] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_data_MOD_aero_data_rad2vol [92] -[93] 0.0 0.00 0.00 10031 __pmc_fractal_MOD_fractal_rad2vol [93] - 0.00 0.00 10031/2072122 __pmc_fractal_MOD_fractal_is_spherical [18] - 0.00 0.00 10031/10031 __pmc_util_MOD_sphere_rad2vol [407] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] -[94] 0.0 0.00 0.00 2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] - 0.00 0.00 2000/14070 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 2000/2010 __pmc_aero_state_MOD_aero_state_zero [424] - 0.00 0.00 2000/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_copy_weight [430] - 0.00 0.00 2000/2000 __pmc_rand_MOD_rand_binomial [439] ------------------------------------------------ - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[95] 0.0 0.00 0.00 20 __pmc_rand_MOD_rand_poisson [95] - 0.00 0.00 20/30113 __pmc_rand_MOD_rand_normal [32] - 0.00 0.00 20/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.00 2062091/2062091 __pmc_fractal_MOD_fractal_vol2rad [23] -[371] 0.0 0.00 0.00 2062091 __pmc_util_MOD_sphere_vol2rad [371] ------------------------------------------------ - 0.00 0.00 2006200/2006200 __pmc_aero_state_MOD_aero_state_masses [12] -[372] 0.0 0.00 0.00 2006200 __pmc_aero_particle_MOD_aero_particle_species_mass [372] ------------------------------------------------ - 0.00 0.00 10/1282969 __pmc_rand_MOD_prob_round [478] - 0.00 0.00 33/1282969 __pmc_rand_MOD_pmc_rand_int [463] - 0.00 0.00 16771/1282969 __pmc_freezing_MOD_freeze [9] - 0.00 0.00 60226/1282969 __pmc_rand_MOD_rand_normal [32] - 0.00 0.00 1205929/1282969 __pmc_rand_MOD_pmc_random_geometric [374] -[373] 0.0 0.00 0.00 1282969 __pmc_rand_MOD_pmc_random [373] ------------------------------------------------ - 0.00 0.00 1200910/1200910 __pmc_freezing_MOD_freeze [9] -[374] 0.0 0.00 0.00 1200910 __pmc_rand_MOD_pmc_random_geometric [374] - 0.00 0.00 1205929/1282969 __pmc_rand_MOD_pmc_random [373] ------------------------------------------------ - 0.00 0.00 20/322340 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] - 0.00 0.00 20/322340 __pmc_rand_MOD_rand_poisson [95] - 0.00 0.00 84/322340 __pmc_util_MOD_linspace [455] - 0.00 0.00 99/322340 __pmc_rand_MOD_pmc_rand_int [463] - 0.00 0.00 103/322340 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] - 0.00 0.00 252/322340 __pmc_util_MOD_logspace [456] - 0.00 0.00 2000/322340 __pmc_aero_state_MOD_aero_state_sample_particles [94] - 0.00 0.00 2049/322340 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] - 0.00 0.00 6000/322340 __pmc_rand_MOD_rand_binomial [439] - 0.00 0.00 7478/322340 __pmc_integer_varray_MOD_integer_varray_realloc [22] - 0.00 0.00 8060/322340 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 20062/322340 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.00 30113/322340 __pmc_rand_MOD_rand_normal [32] - 0.00 0.00 246000/322340 __pmc_integer_rmap2_MOD_integer_rmap2_append [14] -[375] 0.0 0.00 0.00 322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.00 126000/126000 __pmc_freezing_MOD_freeze [9] -[376] 0.0 0.00 0.00 126000 __pmc_freezing_MOD_abifm_max [376] ------------------------------------------------ - 0.00 0.00 1/100489 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] - 0.00 0.00 2/100489 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] - 0.00 0.00 2000/100489 __pmc_freezing_MOD_abifm_max_spec [435] - 0.00 0.00 2002/100489 __pmc_aero_data_MOD_aero_data_spec_by_name [428] - 0.00 0.00 2010/100489 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 4010/100489 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] - 0.00 0.00 6000/100489 __pmc_aero_state_MOD_aero_state_masses [12] - 0.00 0.00 10031/100489 __pmc_aero_particle_MOD_aero_particle_zero [403] - 0.00 0.00 16771/100489 __pmc_aero_particle_MOD_aero_particle_dry_volume [33] - 0.00 0.00 24120/100489 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [30] - 0.00 0.00 33542/100489 __pmc_freezing_MOD_abifm_particle [29] -[377] 0.0 0.00 0.00 100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.00 52/90028 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] - 0.00 0.00 6078/90028 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] - 0.00 0.00 10031/90028 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] - 0.00 0.00 73867/90028 __pmc_bin_grid_MOD_bin_grid_find [383] -[378] 0.0 0.00 0.00 90028 __pmc_bin_grid_MOD_bin_grid_size [378] ------------------------------------------------ - 0.00 0.00 10031/78291 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] - 0.00 0.00 68260/78291 __pmc_aero_state_MOD_aero_state_n_part [380] -[379] 0.0 0.00 0.00 78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] ------------------------------------------------ - 0.00 0.00 6000/68260 __pmc_freezing_MOD_freeze [9] - 0.00 0.00 6020/68260 __pmc_aero_state_MOD_aero_state_total_particles [77] - 0.00 0.00 6030/68260 __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [84] - 0.00 0.00 8000/68260 __pmc_aero_state_MOD_aero_state_masses [12] - 0.00 0.00 42210/68260 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[380] 0.0 0.00 0.00 68260 __pmc_aero_state_MOD_aero_state_n_part [380] - 0.00 0.00 68260/78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] ------------------------------------------------ - 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] - 0.00 0.00 1/48244 __pmc_gas_state_MOD_spec_file_read_gas_state [71] - 0.00 0.00 2/48244 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] - 0.00 0.00 48240/48244 __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [87] -[381] 0.0 0.00 0.00 48244 __pmc_gas_data_MOD_gas_data_n_spec [381] ------------------------------------------------ - 0.00 0.00 10/30141 __pmc_aero_state_MOD_aero_state_set_weight [475] - 0.00 0.00 2010/30141 __pmc_aero_state_MOD_aero_state_output_netcdf [6] - 0.00 0.00 10031/30141 __pmc_aero_particle_MOD_aero_particle_zero [403] - 0.00 0.00 18090/30141 __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [86] -[382] 0.0 0.00 0.00 30141 __pmc_aero_data_MOD_aero_data_n_source [382] ------------------------------------------------ - 0.00 0.00 24629/24629 __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [64] -[383] 0.0 0.00 0.00 24629 __pmc_bin_grid_MOD_bin_grid_find [383] - 0.00 0.00 73867/90028 __pmc_bin_grid_MOD_bin_grid_size [378] - 0.00 0.00 24619/24619 __pmc_util_MOD_logspace_find [385] ------------------------------------------------ - 0.00 0.00 24619/24619 __pmc_util_MOD_logspace_find [385] -[384] 0.0 0.00 0.00 24619 __pmc_util_MOD_linspace_find [384] ------------------------------------------------ - 0.00 0.00 24619/24619 __pmc_bin_grid_MOD_bin_grid_find [383] -[385] 0.0 0.00 0.00 24619 __pmc_util_MOD_logspace_find [385] - 0.00 0.00 24619/24619 __pmc_util_MOD_linspace_find [384] ------------------------------------------------ - 0.00 0.00 52/20152 __pmc_bin_grid_MOD_bin_grid_make [458] - 0.00 0.00 6030/20152 __pmc_util_MOD_time_to_string_max_len [412] - 0.00 0.00 14070/20152 __pmc_util_MOD_integer_to_string_max_len [387] -[386] 0.0 0.00 0.00 20152 __pmc_util_MOD_integer_to_string [386] ------------------------------------------------ - 0.00 0.00 14070/14070 __pmc_run_part_MOD_print_part_progress [426] -[387] 0.0 0.00 0.00 14070 __pmc_util_MOD_integer_to_string_max_len [387] - 0.00 0.00 14070/20152 __pmc_util_MOD_integer_to_string [386] ------------------------------------------------ - 0.00 0.00 4000/14030 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] - 0.00 0.00 4000/14030 __pmc_gas_state_MOD_gas_state_interp_1d [419] - 0.00 0.00 6030/14030 __pmc_util_MOD_interp_1d [411] -[388] 0.0 0.00 0.00 14030 __pmc_util_MOD_find_1d [388] ------------------------------------------------ - 0.00 0.00 3/14003 __pmc_gas_state_MOD_gas_state_zero [482] - 0.00 0.00 2000/14003 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] - 0.00 0.00 4000/14003 __pmc_gas_state_MOD_gas_state_scale [420] - 0.00 0.00 8000/14003 __pmc_gas_state_MOD_gas_state_add_scaled [418] -[389] 0.0 0.00 0.00 14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] ------------------------------------------------ - 0.00 0.00 13302/13302 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] -[390] 0.0 0.00 0.00 13302 __pmc_aero_particle_MOD_aero_particle_shift [390] ------------------------------------------------ - 0.00 0.00 10/12091 __pmc_run_part_MOD_run_part [3] - 0.00 0.00 40/12091 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] - 0.00 0.00 2010/12091 __pmc_output_MOD_output_state [4] - 0.00 0.00 10031/12091 __pmc_aero_particle_MOD_aero_particle_new_id [398] -[391] 0.0 0.00 0.00 12091 __pmc_mpi_MOD_pmc_mpi_size [391] ------------------------------------------------ - 0.00 0.00 2/12058 __pmc_rand_MOD_pmc_srand [488] - 0.00 0.00 5/12058 MAIN__ [1] - 0.00 0.00 10/12058 __pmc_run_part_MOD_run_part [3] - 0.00 0.00 2010/12058 __pmc_output_MOD_output_state [4] - 0.00 0.00 10031/12058 __pmc_aero_particle_MOD_aero_particle_new_id [398] -[392] 0.0 0.00 0.00 12058 __pmc_mpi_MOD_pmc_mpi_rank [392] ------------------------------------------------ - 0.00 0.00 2000/12031 __pmc_freezing_MOD_freeze [9] - 0.00 0.00 10031/12031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] -[393] 0.0 0.00 0.00 12031 __pmc_aero_sorted_MOD_aero_sorted_n_class [393] ------------------------------------------------ - 0.00 0.00 12000/12000 __pmc_run_part_MOD_run_part [3] -[394] 0.0 0.00 0.00 12000 __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [394] ------------------------------------------------ - 0.00 0.00 10070/10070 __pmc_aero_state_MOD_aero_state_total_particles_all_procs [83] -[395] 0.0 0.00 0.00 10070 __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [395] ------------------------------------------------ - 0.00 0.00 5/10036 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 10031/10036 __pmc_aero_particle_MOD_aero_particle_zero [403] -[396] 0.0 0.00 0.00 10036 __pmc_util_MOD_ensure_real_array_size [396] ------------------------------------------------ - 0.00 0.00 1/10034 __pmc_gas_data_MOD_spec_file_read_gas_data [70] - 0.00 0.00 2/10034 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 10031/10034 __pmc_aero_particle_MOD_aero_particle_zero [403] -[397] 0.0 0.00 0.00 10034 __pmc_util_MOD_ensure_integer_array_size [397] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[398] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_new_id [398] - 0.00 0.00 10031/12091 __pmc_mpi_MOD_pmc_mpi_size [391] - 0.00 0.00 10031/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[399] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_create_time [399] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[400] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_source [400] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[401] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_vols [401] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[402] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_set_weight [402] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[403] 0.0 0.00 0.00 10031 __pmc_aero_particle_MOD_aero_particle_zero [403] - 0.00 0.00 10031/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] - 0.00 0.00 10031/10036 __pmc_util_MOD_ensure_real_array_size [396] - 0.00 0.00 10031/30141 __pmc_aero_data_MOD_aero_data_n_source [382] - 0.00 0.00 10031/10034 __pmc_util_MOD_ensure_integer_array_size [397] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] -[404] 0.0 0.00 0.00 10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] - 0.00 0.00 10031/78291 __pmc_aero_particle_array_MOD_aero_particle_array_n_part [379] - 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [404] -[405] 0.0 0.00 0.00 10031 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] - 0.00 0.00 113/9189 __pmc_util_MOD_pow2_above [408] - 0.00 0.00 113/113 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_aero_sorted_MOD_aero_sorted_add_particle [38] -[406] 0.0 0.00 0.00 10031 __pmc_aero_sorted_MOD_aero_sorted_n_group [406] ------------------------------------------------ - 0.00 0.00 10031/10031 __pmc_fractal_MOD_fractal_rad2vol [93] -[407] 0.0 0.00 0.00 10031 __pmc_util_MOD_sphere_rad2vol [407] ------------------------------------------------ - 0.00 0.00 113/9189 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] - 0.00 0.00 9076/9189 __pmc_integer_varray_MOD_integer_varray_enlarge [21] -[408] 0.0 0.00 0.00 9189 __pmc_util_MOD_pow2_above [408] ------------------------------------------------ - 0.00 0.00 30/8050 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] - 0.00 0.00 8020/8050 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[409] 0.0 0.00 0.00 8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] ------------------------------------------------ - 0.00 0.00 6030/6030 __pmc_aero_state_MOD_aero_state_output_netcdf [6] -[410] 0.0 0.00 0.00 6030 __pmc_aero_info_array_MOD_aero_info_array_n_item [410] ------------------------------------------------ - 0.00 0.00 30/6030 __pmc_scenario_MOD_scenario_init_env_state [480] - 0.00 0.00 6000/6030 __pmc_scenario_MOD_scenario_update_env_state [441] -[411] 0.0 0.00 0.00 6030 __pmc_util_MOD_interp_1d [411] - 0.00 0.00 6030/14030 __pmc_util_MOD_find_1d [388] ------------------------------------------------ - 0.00 0.00 6030/6030 __pmc_run_part_MOD_print_part_progress [426] -[412] 0.0 0.00 0.00 6030 __pmc_util_MOD_time_to_string_max_len [412] - 0.00 0.00 6030/20152 __pmc_util_MOD_integer_to_string [386] ------------------------------------------------ - 0.00 0.00 2010/6020 __pmc_aero_state_MOD_aero_state_zero [424] - 0.00 0.00 4010/6020 __pmc_run_part_MOD_run_part [3] -[413] 0.0 0.00 0.00 6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] ------------------------------------------------ - 0.00 0.00 2/4148 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 136/4148 __pmc_bin_grid_MOD_bin_grid_make [458] - 0.00 0.00 2000/4148 __pmc_aero_state_MOD_aero_state_masses [12] - 0.00 0.00 2010/4148 __pmc_util_MOD_iso8601_date_and_time [427] -[414] 0.0 0.00 0.00 4148 __pmc_util_MOD_assert_msg [414] ------------------------------------------------ - 0.00 0.00 20/4020 __pmc_aero_state_MOD_aero_state_scale_weight [80] - 0.00 0.00 4000/4020 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] -[415] 0.0 0.00 0.00 4020 __pmc_aero_weight_MOD_aero_weight_scale [415] ------------------------------------------------ - 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_aero_state [15] -[416] 0.0 0.00 0.00 4000 __pmc_aero_dist_MOD_aero_dist_interp_1d [416] - 0.00 0.00 4000/14030 __pmc_util_MOD_find_1d [388] ------------------------------------------------ - 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_env_state [441] -[417] 0.0 0.00 0.00 4000 __pmc_env_state_MOD_env_state_sat_vapor_pressure [417] ------------------------------------------------ - 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] -[418] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_add_scaled [418] - 0.00 0.00 8000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] ------------------------------------------------ - 0.00 0.00 4000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] -[419] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_interp_1d [419] - 0.00 0.00 4000/14030 __pmc_util_MOD_find_1d [388] ------------------------------------------------ - 0.00 0.00 2000/4000 __pmc_scenario_MOD_scenario_update_gas_state [442] - 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] -[420] 0.0 0.00 0.00 4000 __pmc_gas_state_MOD_gas_state_scale [420] - 0.00 0.00 4000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] ------------------------------------------------ - 0.00 0.00 4000/4000 __pmc_run_part_MOD_run_part [3] -[421] 0.0 0.00 0.00 4000 __pmc_util_MOD_check_event [421] ------------------------------------------------ - 0.00 0.00 2189/2189 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] -[422] 0.0 0.00 0.00 2189 __pmc_integer_varray_MOD_integer_varray_zero [422] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_aero_state_MOD_aero_state_zero [424] -[423] 0.0 0.00 0.00 2010 __pmc_aero_particle_array_MOD_aero_particle_array_zero [423] ------------------------------------------------ - 0.00 0.00 10/2010 MAIN__ [1] - 0.00 0.00 2000/2010 __pmc_aero_state_MOD_aero_state_sample_particles [94] -[424] 0.0 0.00 0.00 2010 __pmc_aero_state_MOD_aero_state_zero [424] - 0.00 0.00 2010/2010 __pmc_aero_particle_array_MOD_aero_particle_array_zero [423] - 0.00 0.00 2010/6020 __pmc_aero_info_array_MOD_aero_info_array_zero [413] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_output_MOD_output_state_to_file [5] -[425] 0.0 0.00 0.00 2010 __pmc_output_MOD_make_filename [425] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_run_part_MOD_run_part [3] -[426] 0.0 0.00 0.00 2010 __pmc_run_part_MOD_print_part_progress [426] - 0.00 0.00 14070/14070 __pmc_util_MOD_integer_to_string_max_len [387] - 0.00 0.00 6030/6030 __pmc_util_MOD_time_to_string_max_len [412] ------------------------------------------------ - 0.00 0.00 2010/2010 __pmc_netcdf_MOD_pmc_nc_write_info [88] -[427] 0.0 0.00 0.00 2010 __pmc_util_MOD_iso8601_date_and_time [427] - 0.00 0.00 2010/4148 __pmc_util_MOD_assert_msg [414] ------------------------------------------------ - 0.00 0.00 2/2002 __pmc_aero_mode_MOD_spec_file_read_vol_frac [69] - 0.00 0.00 2000/2002 __pmc_aero_state_MOD_aero_state_masses [12] -[428] 0.0 0.00 0.00 2002 __pmc_aero_data_MOD_aero_data_spec_by_name [428] - 0.00 0.00 2002/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] -[429] 0.0 0.00 0.00 2000 __pmc_aero_sorted_MOD_aero_sorted_n_bin [429] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] -[430] 0.0 0.00 0.00 2000 __pmc_aero_state_MOD_aero_state_copy_weight [430] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] -[431] 0.0 0.00 0.00 2000 __pmc_aero_weight_array_MOD_aero_weight_array_scale [431] - 0.00 0.00 4000/4020 __pmc_aero_weight_MOD_aero_weight_scale [415] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] -[432] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_air_molar_den [432] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] -[433] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [433] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] -[434] 0.0 0.00 0.00 2000 __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [434] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_freezing_MOD_freeze [9] -[435] 0.0 0.00 0.00 2000 __pmc_freezing_MOD_abifm_max_spec [435] - 0.00 0.00 2000/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] -[436] 0.0 0.00 0.00 2000 __pmc_freezing_MOD_unfreeze [436] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] -[437] 0.0 0.00 0.00 2000 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] - 0.00 0.00 2000/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_gas_state [442] -[438] 0.0 0.00 0.00 2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] - 0.00 0.00 2000/2000 __pmc_env_state_MOD_env_state_air_molar_den [432] - 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_scale [420] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_aero_state_MOD_aero_state_sample_particles [94] -[439] 0.0 0.00 0.00 2000 __pmc_rand_MOD_rand_binomial [439] - 0.00 0.00 6000/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_scenario_MOD_scenario_update_aero_state [15] -[440] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_particle_loss [440] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] -[441] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_update_env_state [441] - 0.00 0.00 6000/6030 __pmc_util_MOD_interp_1d [411] - 0.00 0.00 4000/4000 __pmc_env_state_MOD_env_state_sat_vapor_pressure [417] ------------------------------------------------ - 0.00 0.00 2000/2000 __pmc_run_part_MOD_run_part [3] -[442] 0.0 0.00 0.00 2000 __pmc_scenario_MOD_scenario_update_gas_state [442] - 0.00 0.00 4000/4000 __pmc_gas_state_MOD_gas_state_interp_1d [419] - 0.00 0.00 4000/4000 __pmc_gas_state_MOD_gas_state_add_scaled [418] - 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [438] - 0.00 0.00 2000/4000 __pmc_gas_state_MOD_gas_state_scale [420] - 0.00 0.00 2000/2000 __pmc_gas_state_MOD_gas_state_ensure_nonnegative [437] ------------------------------------------------ - 0.00 0.00 163/916 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] - 0.00 0.00 753/916 __pmc_spec_file_MOD_spec_file_read_line [34] -[443] 0.0 0.00 0.00 916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] ------------------------------------------------ - 0.00 0.00 3/304 __pmc_spec_file_MOD_spec_file_string_to_integer [483] - 0.00 0.00 301/304 __pmc_spec_file_MOD_spec_file_string_to_real [445] -[444] 0.0 0.00 0.00 304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] ------------------------------------------------ - 0.00 0.00 13/301 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 288/301 __pmc_spec_file_MOD_spec_file_read_real_named_array [50] -[445] 0.0 0.00 0.00 301 __pmc_spec_file_MOD_spec_file_string_to_real [445] - 0.00 0.00 301/304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] ------------------------------------------------ - 0.00 0.00 175/175 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] -[446] 0.0 0.00 0.00 175 __pmc_spec_file_MOD_spec_file_read_line_raw [446] ------------------------------------------------ - 0.00 0.00 163/163 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] -[447] 0.0 0.00 0.00 163 __pmc_spec_line_MOD_spec_line_strip_comment [447] ------------------------------------------------ - 0.00 0.00 163/163 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] -[448] 0.0 0.00 0.00 163 __pmc_spec_line_MOD_spec_line_tabs_to_spaces [448] ------------------------------------------------ - 0.00 0.00 4/130 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 126/130 __pmc_bin_grid_MOD_bin_grid_make [458] -[449] 0.0 0.00 0.00 130 __pmc_util_MOD_real_to_string [449] ------------------------------------------------ - 0.00 0.00 113/113 __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [405] -[450] 0.0 0.00 0.00 113 __pmc_aero_particle_array_MOD_aero_particle_array_realloc [450] - 0.00 0.00 13302/13302 __pmc_aero_particle_MOD_aero_particle_shift [390] - 0.00 0.00 103/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.00 104/104 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] -[451] 0.0 0.00 0.00 104 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [451] ------------------------------------------------ - 0.00 0.00 87/87 __pmc_spec_file_MOD_spec_file_read_line [34] -[452] 0.0 0.00 0.00 87 __pmc_spec_file_MOD_spec_file_read_next_data_line [452] - 0.00 0.00 175/175 __pmc_spec_file_MOD_spec_file_read_line_raw [446] - 0.00 0.00 163/163 __pmc_spec_line_MOD_spec_line_strip_comment [447] - 0.00 0.00 163/163 __pmc_spec_line_MOD_spec_line_tabs_to_spaces [448] - 0.00 0.00 163/916 __pmc_spec_line_MOD_spec_line_strip_leading_spaces [443] ------------------------------------------------ - 0.00 0.00 84/84 __pmc_aero_sorted_MOD_aero_sorted_sort_particles [26] -[453] 0.0 0.00 0.00 84 __pmc_integer_rmap2_MOD_integer_rmap2_zero [453] - 0.00 0.00 2189/2189 __pmc_integer_varray_MOD_integer_varray_zero [422] ------------------------------------------------ - 0.00 0.00 84/84 __pmc_bin_grid_MOD_bin_grid_make [458] -[454] 0.0 0.00 0.00 84 __pmc_util_MOD_interp_linear_disc [454] ------------------------------------------------ - 0.00 0.00 84/84 __pmc_util_MOD_logspace [456] -[455] 0.0 0.00 0.00 84 __pmc_util_MOD_linspace [455] - 0.00 0.00 84/322340 __pmc_util_MOD_assert [375] ------------------------------------------------ - 0.00 0.00 84/84 __pmc_bin_grid_MOD_bin_grid_make [458] -[456] 0.0 0.00 0.00 84 __pmc_util_MOD_logspace [456] - 0.00 0.00 252/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 84/84 __pmc_util_MOD_linspace [455] ------------------------------------------------ - 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] -[457] 0.0 0.00 0.00 52 __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [457] - 0.00 0.00 104/104 __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [451] - 0.00 0.00 52/90028 __pmc_bin_grid_MOD_bin_grid_size [378] ------------------------------------------------ - 0.00 0.00 52/52 __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [24] -[458] 0.0 0.00 0.00 52 __pmc_bin_grid_MOD_bin_grid_make [458] - 0.00 0.00 136/4148 __pmc_util_MOD_assert_msg [414] - 0.00 0.00 126/130 __pmc_util_MOD_real_to_string [449] - 0.00 0.00 84/84 __pmc_util_MOD_logspace [456] - 0.00 0.00 84/84 __pmc_util_MOD_interp_linear_disc [454] - 0.00 0.00 52/20152 __pmc_util_MOD_integer_to_string [386] ------------------------------------------------ - 0.00 0.00 1/51 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 2/51 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_read_integer [72] - 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_read_string [52] -[459] 0.0 0.00 0.00 51 __pmc_spec_file_MOD_spec_file_check_line_length [459] ------------------------------------------------ - 0.00 0.00 1/51 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 2/51 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 3/51 __pmc_spec_file_MOD_spec_file_read_integer [72] - 0.00 0.00 13/51 __pmc_spec_file_MOD_spec_file_read_real [58] - 0.00 0.00 15/51 __pmc_spec_file_MOD_spec_file_read_logical [54] - 0.00 0.00 17/51 __pmc_spec_file_MOD_spec_file_read_string [52] -[460] 0.0 0.00 0.00 51 __pmc_spec_file_MOD_spec_file_check_line_name [460] ------------------------------------------------ - 0.00 0.00 10/50 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] - 0.00 0.00 20/50 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] - 0.00 0.00 20/50 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] -[461] 0.0 0.00 0.00 50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] ------------------------------------------------ - 0.00 0.00 40/40 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[462] 0.0 0.00 0.00 40 __pmc_aero_mode_MOD_aero_mode_number [462] ------------------------------------------------ - 0.00 0.00 1/33 __pmc_rand_MOD_uuid4_str [500] - 0.00 0.00 32/33 __pmc_rand_MOD_rand_hex_char [464] -[463] 0.0 0.00 0.00 33 __pmc_rand_MOD_pmc_rand_int [463] - 0.00 0.00 99/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 33/1282969 __pmc_rand_MOD_pmc_random [373] ------------------------------------------------ - 0.00 0.00 32/32 __pmc_rand_MOD_uuid4_str [500] -[464] 0.0 0.00 0.00 32 __pmc_rand_MOD_rand_hex_char [464] - 0.00 0.00 32/33 __pmc_rand_MOD_pmc_rand_int [463] ------------------------------------------------ - 0.00 0.00 10/30 MAIN__ [1] - 0.00 0.00 20/30 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] -[465] 0.0 0.00 0.00 30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] - 0.00 0.00 30/8050 __pmc_aero_dist_MOD_aero_dist_n_mode [409] ------------------------------------------------ - 0.00 0.00 10/30 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] - 0.00 0.00 20/30 __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [79] -[466] 0.0 0.00 0.00 30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] ------------------------------------------------ - 0.00 0.00 30/30 __pmc_run_part_MOD_run_part [3] -[467] 0.0 0.00 0.00 30 __pmc_util_MOD_check_time_multiple [467] ------------------------------------------------ - 0.00 0.00 20/20 __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [16] -[468] 0.0 0.00 0.00 20 __pmc_aero_state_MOD_aero_state_weight_class_for_source [468] - 0.00 0.00 20/322340 __pmc_util_MOD_assert [375] - 0.00 0.00 20/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] ------------------------------------------------ - 0.00 0.00 1/15 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 2/15 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 5/15 MAIN__ [1] - 0.00 0.00 7/15 __pmc_scenario_MOD_spec_file_read_scenario [47] -[469] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_close [469] - 0.00 0.00 15/15 __pmc_util_MOD_free_unit [472] ------------------------------------------------ - 0.00 0.00 1/15 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] - 0.00 0.00 2/15 __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [53] - 0.00 0.00 5/15 MAIN__ [1] - 0.00 0.00 7/15 __pmc_scenario_MOD_spec_file_read_scenario [47] -[470] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_open [470] - 0.00 0.00 15/15 __pmc_util_MOD_get_unit [473] ------------------------------------------------ - 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_read_logical [54] -[471] 0.0 0.00 0.00 15 __pmc_spec_file_MOD_spec_file_string_to_logical [471] ------------------------------------------------ - 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_close [469] -[472] 0.0 0.00 0.00 15 __pmc_util_MOD_free_unit [472] ------------------------------------------------ - 0.00 0.00 15/15 __pmc_spec_file_MOD_spec_file_open [470] -[473] 0.0 0.00 0.00 15 __pmc_util_MOD_get_unit [473] ------------------------------------------------ - 0.00 0.00 10/10 MAIN__ [1] -[474] 0.0 0.00 0.00 10 __pmc_aero_state_MOD_aero_state_set_n_part_ideal [474] - 0.00 0.00 10/30 __pmc_aero_weight_array_MOD_aero_weight_array_n_group [466] - 0.00 0.00 10/50 __pmc_aero_weight_array_MOD_aero_weight_array_n_class [461] ------------------------------------------------ - 0.00 0.00 10/10 MAIN__ [1] -[475] 0.0 0.00 0.00 10 __pmc_aero_state_MOD_aero_state_set_weight [475] - 0.00 0.00 10/30141 __pmc_aero_data_MOD_aero_data_n_source [382] - 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] ------------------------------------------------ - 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_set_weight [475] -[476] 0.0 0.00 0.00 10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] - 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [477] ------------------------------------------------ - 0.00 0.00 10/10 __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [476] -[477] 0.0 0.00 0.00 10 __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [477] ------------------------------------------------ - 0.00 0.00 10/10 __pmc_aero_state_MOD_aero_state_scale_weight [80] -[478] 0.0 0.00 0.00 10 __pmc_rand_MOD_prob_round [478] - 0.00 0.00 10/1282969 __pmc_rand_MOD_pmc_random [373] ------------------------------------------------ - 0.00 0.00 10/10 MAIN__ [1] -[479] 0.0 0.00 0.00 10 __pmc_scenario_MOD_scenario_contains_aero_mode_type [479] - 0.00 0.00 20/30 __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [465] ------------------------------------------------ - 0.00 0.00 10/10 MAIN__ [1] -[480] 0.0 0.00 0.00 10 __pmc_scenario_MOD_scenario_init_env_state [480] - 0.00 0.00 30/6030 __pmc_util_MOD_interp_1d [411] ------------------------------------------------ - 0.00 0.00 1/3 __pmc_gas_state_MOD_spec_file_read_gas_state [71] - 0.00 0.00 2/3 __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [65] -[481] 0.0 0.00 0.00 3 __pmc_gas_state_MOD_gas_state_set_size [481] - 0.00 0.00 3/3 __pmc_gas_state_MOD_gas_state_zero [482] ------------------------------------------------ - 0.00 0.00 3/3 __pmc_gas_state_MOD_gas_state_set_size [481] -[482] 0.0 0.00 0.00 3 __pmc_gas_state_MOD_gas_state_zero [482] - 0.00 0.00 3/14003 __pmc_gas_state_MOD_gas_state_is_allocated [389] ------------------------------------------------ - 0.00 0.00 3/3 __pmc_spec_file_MOD_spec_file_read_integer [72] -[483] 0.0 0.00 0.00 3 __pmc_spec_file_MOD_spec_file_string_to_integer [483] - 0.00 0.00 3/304 __pmc_spec_file_MOD_spec_file_check_read_iostat [444] ------------------------------------------------ - 0.00 0.00 1/3 __pmc_aero_data_MOD_aero_data_set_water_index [493] - 0.00 0.00 2/3 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] -[484] 0.0 0.00 0.00 3 __pmc_util_MOD_string_array_find [484] ------------------------------------------------ - 0.00 0.00 2/2 __pmc_rand_MOD_pmc_srand [488] -[485] 0.0 0.00 0.00 2 __pmc_mpi_MOD_pmc_mpi_bcast_integer [485] ------------------------------------------------ - 0.00 0.00 2/2 MAIN__ [1] -[486] 0.0 0.00 0.00 2 __pmc_mpi_MOD_pmc_mpi_bcast_string [486] ------------------------------------------------ - 0.00 0.00 2/2 MAIN__ [1] -[487] 0.0 0.00 0.00 2 __pmc_rand_MOD_pmc_rand_finalize [487] ------------------------------------------------ - 0.00 0.00 2/2 MAIN__ [1] -[488] 0.0 0.00 0.00 2 __pmc_rand_MOD_pmc_srand [488] - 0.00 0.00 2/12058 __pmc_mpi_MOD_pmc_mpi_rank [392] - 0.00 0.00 2/2 __pmc_mpi_MOD_pmc_mpi_bcast_integer [485] ------------------------------------------------ - 0.00 0.00 2/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] -[489] 0.0 0.00 0.00 2 __pmc_util_MOD_almost_equal [489] ------------------------------------------------ - 0.00 0.00 1/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] - 0.00 0.00 1/2 __pmc_gas_data_MOD_spec_file_read_gas_data [70] -[490] 0.0 0.00 0.00 2 __pmc_util_MOD_ensure_string_array_size [490] ------------------------------------------------ - 0.00 0.00 2/2 __pmc_aero_data_MOD_spec_file_read_aero_data [68] -[491] 0.0 0.00 0.00 2 __pmc_util_MOD_warn_assert_msg [491] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] -[492] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_set_mosaic_map [492] - 0.00 0.00 2/3 __pmc_util_MOD_string_array_find [484] - 0.00 0.00 1/100489 __pmc_aero_data_MOD_aero_data_n_spec [377] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_aero_data_MOD_spec_file_read_aero_data [68] -[493] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_set_water_index [493] - 0.00 0.00 1/3 __pmc_util_MOD_string_array_find [484] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] -[494] 0.0 0.00 0.00 1 __pmc_aero_data_MOD_aero_data_source_by_name [494] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_fractal_MOD_spec_file_read_fractal [89] -[495] 0.0 0.00 0.00 1 __pmc_fractal_MOD_fractal_set_spherical [495] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_gas_data_MOD_spec_file_read_gas_data [70] -[496] 0.0 0.00 0.00 1 __pmc_gas_data_MOD_gas_data_set_mosaic_map [496] - 0.00 0.00 1/48244 __pmc_gas_data_MOD_gas_data_n_spec [381] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[497] 0.0 0.00 0.00 1 __pmc_mosaic_MOD_mosaic_support [497] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[498] 0.0 0.00 0.00 1 __pmc_mpi_MOD_pmc_mpi_finalize [498] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[499] 0.0 0.00 0.00 1 __pmc_mpi_MOD_pmc_mpi_init [499] ------------------------------------------------ - 0.00 0.00 1/1 MAIN__ [1] -[500] 0.0 0.00 0.00 1 __pmc_rand_MOD_uuid4_str [500] - 0.00 0.00 32/32 __pmc_rand_MOD_rand_hex_char [464] - 0.00 0.00 1/33 __pmc_rand_MOD_pmc_rand_int [463] ------------------------------------------------ - 0.00 0.00 1/1 __pmc_aero_mode_MOD_spec_file_read_aero_mode [56] -[501] 0.0 0.00 0.00 1 __pmc_util_MOD_diam2rad [501] ------------------------------------------------ - - This table describes the call tree of the program, and was sorted by - the total amount of time spent in each function and its children. - - Each entry in this table consists of several lines. The line with the - index number at the left hand margin lists the current function. - The lines above it list the functions that called this function, - and the lines below it list the functions this one called. - This line lists: - index A unique number given to each element of the table. - Index numbers are sorted numerically. - The index number is printed next to every function name so - it is easier to look up where the function is in the table. - - % time This is the percentage of the `total' time that was spent - in this function and its children. Note that due to - different viewpoints, functions excluded by options, etc, - these numbers will NOT add up to 100%. - - self This is the total amount of time spent in this function. - - children This is the total amount of time propagated into this - function by its children. - - called This is the number of times the function was called. - If the function called itself recursively, the number - only includes non-recursive calls, and is followed by - a `+' and the number of recursive calls. - - name The name of the current function. The index number is - printed after it. If the function is a member of a - cycle, the cycle number is printed between the - function's name and the index number. - - - For the function's parents, the fields have the following meanings: - - self This is the amount of time that was propagated directly - from the function into this parent. - - children This is the amount of time that was propagated from - the function's children into this parent. - - called This is the number of times this parent called the - function `/' the total number of times the function - was called. Recursive calls to the function are not - included in the number after the `/'. - - name This is the name of the parent. The parent's index - number is printed after it. If the parent is a - member of a cycle, the cycle number is printed between - the name and the index number. - - If the parents of the function cannot be determined, the word - `' is printed in the `name' field, and all the other - fields are blank. - - For the function's children, the fields have the following meanings: - - self This is the amount of time that was propagated directly - from the child into the function. - - children This is the amount of time that was propagated from the - child's children to the function. - - called This is the number of times the function called - this child `/' the total number of times the child - was called. Recursive calls by the child are not - listed in the number after the `/'. - - name This is the name of the child. The child's index - number is printed after it. If the child is a - member of a cycle, the cycle number is printed - between the name and the index number. - - If there are any cycles (circles) in the call graph, there is an - entry for the cycle-as-a-whole. This entry shows who called the - cycle (as parents) and the members of the cycle (as children.) - The `+' recursive calls entry shows the number of function calls that - were internal to the cycle, and the calls entry for each member shows, - for that member, how many times it was called from other members of - the cycle. - -Copyright (C) 2012-2016 Free Software Foundation, Inc. - -Copying and distribution of this file, with or without modification, -are permitted in any medium without royalty provided the copyright -notice and this notice are preserved. - -Index by function name - - [1] MAIN__ [8] __pmc_aero_weight_array_MOD_aero_weight_array_num_conc [5] __pmc_output_MOD_output_state_to_file - [382] __pmc_aero_data_MOD_aero_data_n_source [10] __pmc_aero_weight_array_MOD_aero_weight_array_num_conc_at_radius [76] __pmc_output_MOD_write_time - [377] __pmc_aero_data_MOD_aero_data_n_spec [67] __pmc_aero_weight_array_MOD_aero_weight_array_output_netcdf [487] __pmc_rand_MOD_pmc_rand_finalize - [86] __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_source [431] __pmc_aero_weight_array_MOD_aero_weight_array_scale [463] __pmc_rand_MOD_pmc_rand_int - [30] __pmc_aero_data_MOD_aero_data_netcdf_dim_aero_species [476] __pmc_aero_weight_array_MOD_aero_weight_array_set_nummass [373] __pmc_rand_MOD_pmc_random - [42] __pmc_aero_data_MOD_aero_data_output_netcdf [477] __pmc_aero_weight_array_MOD_aero_weight_array_set_sizes [374] __pmc_rand_MOD_pmc_random_geometric - [92] __pmc_aero_data_MOD_aero_data_rad2vol [90] __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_class [488] __pmc_rand_MOD_pmc_srand - [492] __pmc_aero_data_MOD_aero_data_set_mosaic_map [91] __pmc_aero_weight_array_MOD_aero_weight_netcdf_dim_aero_weight_group [478] __pmc_rand_MOD_prob_round - [493] __pmc_aero_data_MOD_aero_data_set_water_index [383] __pmc_bin_grid_MOD_bin_grid_find [439] __pmc_rand_MOD_rand_binomial - [494] __pmc_aero_data_MOD_aero_data_source_by_name [458] __pmc_bin_grid_MOD_bin_grid_make [464] __pmc_rand_MOD_rand_hex_char - [428] __pmc_aero_data_MOD_aero_data_spec_by_name [378] __pmc_bin_grid_MOD_bin_grid_size [32] __pmc_rand_MOD_rand_normal - [13] __pmc_aero_data_MOD_aero_data_vol2rad [432] __pmc_env_state_MOD_env_state_air_molar_den [41] __pmc_rand_MOD_rand_normal_array_1d - [68] __pmc_aero_data_MOD_spec_file_read_aero_data [60] __pmc_env_state_MOD_env_state_output_netcdf [95] __pmc_rand_MOD_rand_poisson - [465] __pmc_aero_dist_MOD_aero_dist_contains_aero_mode_type [417] __pmc_env_state_MOD_env_state_sat_vapor_pressure [500] __pmc_rand_MOD_uuid4_str - [416] __pmc_aero_dist_MOD_aero_dist_interp_1d [433] __pmc_env_state_MOD_env_state_saturated_vapor_pressure_ice [426] __pmc_run_part_MOD_print_part_progress - [409] __pmc_aero_dist_MOD_aero_dist_n_mode [434] __pmc_env_state_MOD_env_state_saturated_vapor_pressure_water [3] __pmc_run_part_MOD_run_part - [57] __pmc_aero_dist_MOD_spec_file_read_aero_dist [66] __pmc_env_state_MOD_spec_file_read_env_state [479] __pmc_scenario_MOD_scenario_contains_aero_mode_type - [53] __pmc_aero_dist_MOD_spec_file_read_aero_dists_times_rates [18] __pmc_fractal_MOD_fractal_is_spherical [480] __pmc_scenario_MOD_scenario_init_env_state - [410] __pmc_aero_info_array_MOD_aero_info_array_n_item [73] __pmc_fractal_MOD_fractal_output_netcdf [440] __pmc_scenario_MOD_scenario_particle_loss - [413] __pmc_aero_info_array_MOD_aero_info_array_zero [93] __pmc_fractal_MOD_fractal_rad2vol [15] __pmc_scenario_MOD_scenario_update_aero_state - [462] __pmc_aero_mode_MOD_aero_mode_number [495] __pmc_fractal_MOD_fractal_set_spherical [441] __pmc_scenario_MOD_scenario_update_env_state - [51] __pmc_aero_mode_MOD_aero_mode_sample_radius [23] __pmc_fractal_MOD_fractal_vol2rad [442] __pmc_scenario_MOD_scenario_update_gas_state - [40] __pmc_aero_mode_MOD_aero_mode_sample_vols [36] __pmc_fractal_MOD_fractal_vol_to_mobility_rad [47] __pmc_scenario_MOD_spec_file_read_scenario - [56] __pmc_aero_mode_MOD_spec_file_read_aero_mode [89] __pmc_fractal_MOD_spec_file_read_fractal [459] __pmc_spec_file_MOD_spec_file_check_line_length - [69] __pmc_aero_mode_MOD_spec_file_read_vol_frac [376] __pmc_freezing_MOD_abifm_max [460] __pmc_spec_file_MOD_spec_file_check_line_name - [27] __pmc_aero_particle_MOD_aero_particle_dry_diameter [435] __pmc_freezing_MOD_abifm_max_spec [444] __pmc_spec_file_MOD_spec_file_check_read_iostat - [28] __pmc_aero_particle_MOD_aero_particle_dry_radius [29] __pmc_freezing_MOD_abifm_particle [469] __pmc_spec_file_MOD_spec_file_close - [33] __pmc_aero_particle_MOD_aero_particle_dry_volume [9] __pmc_freezing_MOD_freeze [470] __pmc_spec_file_MOD_spec_file_open - [19] __pmc_aero_particle_MOD_aero_particle_mass [436] __pmc_freezing_MOD_unfreeze [72] __pmc_spec_file_MOD_spec_file_read_integer - [398] __pmc_aero_particle_MOD_aero_particle_new_id [381] __pmc_gas_data_MOD_gas_data_n_spec [34] __pmc_spec_file_MOD_spec_file_read_line - [11] __pmc_aero_particle_MOD_aero_particle_radius [87] __pmc_gas_data_MOD_gas_data_netcdf_dim_gas_species [48] __pmc_spec_file_MOD_spec_file_read_line_array - [399] __pmc_aero_particle_MOD_aero_particle_set_create_time [82] __pmc_gas_data_MOD_gas_data_output_netcdf [49] __pmc_spec_file_MOD_spec_file_read_line_list - [400] __pmc_aero_particle_MOD_aero_particle_set_source [496] __pmc_gas_data_MOD_gas_data_set_mosaic_map [43] __pmc_spec_file_MOD_spec_file_read_line_no_eof - [401] __pmc_aero_particle_MOD_aero_particle_set_vols [70] __pmc_gas_data_MOD_spec_file_read_gas_data [446] __pmc_spec_file_MOD_spec_file_read_line_raw - [402] __pmc_aero_particle_MOD_aero_particle_set_weight [418] __pmc_gas_state_MOD_gas_state_add_scaled [54] __pmc_spec_file_MOD_spec_file_read_logical - [390] __pmc_aero_particle_MOD_aero_particle_shift [437] __pmc_gas_state_MOD_gas_state_ensure_nonnegative [452] __pmc_spec_file_MOD_spec_file_read_next_data_line - [372] __pmc_aero_particle_MOD_aero_particle_species_mass [419] __pmc_gas_state_MOD_gas_state_interp_1d [58] __pmc_spec_file_MOD_spec_file_read_real - [31] __pmc_aero_particle_MOD_aero_particle_volume [389] __pmc_gas_state_MOD_gas_state_is_allocated [50] __pmc_spec_file_MOD_spec_file_read_real_named_array - [403] __pmc_aero_particle_MOD_aero_particle_zero [438] __pmc_gas_state_MOD_gas_state_mole_dens_to_ppb [52] __pmc_spec_file_MOD_spec_file_read_string - [404] __pmc_aero_particle_array_MOD_aero_particle_array_add_particle [81] __pmc_gas_state_MOD_gas_state_output_netcdf [61] __pmc_spec_file_MOD_spec_file_read_timed_real_array - [405] __pmc_aero_particle_array_MOD_aero_particle_array_enlarge [420] __pmc_gas_state_MOD_gas_state_scale [483] __pmc_spec_file_MOD_spec_file_string_to_integer - [379] __pmc_aero_particle_array_MOD_aero_particle_array_n_part [481] __pmc_gas_state_MOD_gas_state_set_size [471] __pmc_spec_file_MOD_spec_file_string_to_logical - [450] __pmc_aero_particle_array_MOD_aero_particle_array_realloc [482] __pmc_gas_state_MOD_gas_state_zero [445] __pmc_spec_file_MOD_spec_file_string_to_real - [423] __pmc_aero_particle_array_MOD_aero_particle_array_zero [71] __pmc_gas_state_MOD_spec_file_read_gas_state [35] __pmc_spec_line_MOD_spec_line_set_size - [38] __pmc_aero_sorted_MOD_aero_sorted_add_particle [65] __pmc_gas_state_MOD_spec_file_read_gas_states_times_rates [447] __pmc_spec_line_MOD_spec_line_strip_comment - [429] __pmc_aero_sorted_MOD_aero_sorted_n_bin [14] __pmc_integer_rmap2_MOD_integer_rmap2_append [443] __pmc_spec_line_MOD_spec_line_strip_leading_spaces - [393] __pmc_aero_sorted_MOD_aero_sorted_n_class [451] __pmc_integer_rmap2_MOD_integer_rmap2_set_ranges [448] __pmc_spec_line_MOD_spec_line_tabs_to_spaces - [406] __pmc_aero_sorted_MOD_aero_sorted_n_group [453] __pmc_integer_rmap2_MOD_integer_rmap2_zero [489] __pmc_util_MOD_almost_equal - [64] __pmc_aero_sorted_MOD_aero_sorted_particle_in_bin [20] __pmc_integer_varray_MOD_integer_varray_append [375] __pmc_util_MOD_assert - [24] __pmc_aero_sorted_MOD_aero_sorted_remake_if_needed [21] __pmc_integer_varray_MOD_integer_varray_enlarge [414] __pmc_util_MOD_assert_msg - [457] __pmc_aero_sorted_MOD_aero_sorted_set_bin_grid [37] __pmc_integer_varray_MOD_integer_varray_n_entry [421] __pmc_util_MOD_check_event - [26] __pmc_aero_sorted_MOD_aero_sorted_sort_particles [22] __pmc_integer_varray_MOD_integer_varray_realloc [467] __pmc_util_MOD_check_time_multiple - [16] __pmc_aero_state_MOD_aero_state_add_aero_dist_sample [422] __pmc_integer_varray_MOD_integer_varray_zero [501] __pmc_util_MOD_diam2rad - [39] __pmc_aero_state_MOD_aero_state_add_particle [497] __pmc_mosaic_MOD_mosaic_support [397] __pmc_util_MOD_ensure_integer_array_size - [430] __pmc_aero_state_MOD_aero_state_copy_weight [395] __pmc_mpi_MOD_pmc_mpi_allreduce_sum_integer [396] __pmc_util_MOD_ensure_real_array_size - [12] __pmc_aero_state_MOD_aero_state_masses [485] __pmc_mpi_MOD_pmc_mpi_bcast_integer [490] __pmc_util_MOD_ensure_string_array_size - [380] __pmc_aero_state_MOD_aero_state_n_part [486] __pmc_mpi_MOD_pmc_mpi_bcast_string [388] __pmc_util_MOD_find_1d - [84] __pmc_aero_state_MOD_aero_state_netcdf_dim_aero_particle [498] __pmc_mpi_MOD_pmc_mpi_finalize [472] __pmc_util_MOD_free_unit - [6] __pmc_aero_state_MOD_aero_state_output_netcdf [499] __pmc_mpi_MOD_pmc_mpi_init [473] __pmc_util_MOD_get_unit - [7] __pmc_aero_state_MOD_aero_state_particle_num_conc [392] __pmc_mpi_MOD_pmc_mpi_rank [386] __pmc_util_MOD_integer_to_string - [79] __pmc_aero_state_MOD_aero_state_prepare_weight_for_add [394] __pmc_mpi_MOD_pmc_mpi_reduce_sum_integer [387] __pmc_util_MOD_integer_to_string_max_len - [85] __pmc_aero_state_MOD_aero_state_rebalance [391] __pmc_mpi_MOD_pmc_mpi_size [411] __pmc_util_MOD_interp_1d - [94] __pmc_aero_state_MOD_aero_state_sample_particles [46] __pmc_netcdf_MOD_pmc_nc_check [454] __pmc_util_MOD_interp_linear_disc - [80] __pmc_aero_state_MOD_aero_state_scale_weight [45] __pmc_netcdf_MOD_pmc_nc_check_msg [427] __pmc_util_MOD_iso8601_date_and_time - [474] __pmc_aero_state_MOD_aero_state_set_n_part_ideal [44] __pmc_netcdf_MOD_pmc_nc_open_write [455] __pmc_util_MOD_linspace - [475] __pmc_aero_state_MOD_aero_state_set_weight [59] __pmc_netcdf_MOD_pmc_nc_write_atts [384] __pmc_util_MOD_linspace_find - [25] __pmc_aero_state_MOD_aero_state_sort [88] __pmc_netcdf_MOD_pmc_nc_write_info [456] __pmc_util_MOD_logspace - [77] __pmc_aero_state_MOD_aero_state_total_particles [74] __pmc_netcdf_MOD_pmc_nc_write_integer [385] __pmc_util_MOD_logspace_find - [83] __pmc_aero_state_MOD_aero_state_total_particles_all_procs [63] __pmc_netcdf_MOD_pmc_nc_write_integer_1d [408] __pmc_util_MOD_pow2_above - [468] __pmc_aero_state_MOD_aero_state_weight_class_for_source [78] __pmc_netcdf_MOD_pmc_nc_write_integer_2d [449] __pmc_util_MOD_real_to_string - [424] __pmc_aero_state_MOD_aero_state_zero [55] __pmc_netcdf_MOD_pmc_nc_write_real [407] __pmc_util_MOD_sphere_rad2vol - [17] __pmc_aero_weight_MOD_aero_weight_num_conc_at_radius [62] __pmc_netcdf_MOD_pmc_nc_write_real_1d [371] __pmc_util_MOD_sphere_vol2rad - [415] __pmc_aero_weight_MOD_aero_weight_scale [75] __pmc_netcdf_MOD_pmc_nc_write_real_2d [484] __pmc_util_MOD_string_array_find - [461] __pmc_aero_weight_array_MOD_aero_weight_array_n_class [425] __pmc_output_MOD_make_filename [412] __pmc_util_MOD_time_to_string_max_len - [466] __pmc_aero_weight_array_MOD_aero_weight_array_n_group [4] __pmc_output_MOD_output_state [491] __pmc_util_MOD_warn_assert_msg diff --git a/scenarios/7_freezing/case_obj_test.py b/scenarios/7_freezing/case_obj_test.py index 37524524b..ebbf6abe9 100755 --- a/scenarios/7_freezing/case_obj_test.py +++ b/scenarios/7_freezing/case_obj_test.py @@ -1,14 +1,21 @@ #!/usr/bin/env python from visual_tools.case import PartMC_Case +import numpy as np +from pdb import set_trace -a = PartMC_Case("sdm_a") -mixing, dim, info = a.compute_ice_ratio("0001") -print(dim) -print(info) -print(mixing) +#a = PartMC_Case("out_sdm_a", OutDir = "output") +a = PartMC_Case("pap1_bin_chis_constT_0.5", OutDir = "/data/keeling/a/wenhant2/d/modeldata/partmc_cases/pap1_bin_chis_10", disable_check_time = True) +ice_ratio, dim, info = a.compute_ice_ratio("0001") +#print(dim) +#print(info) +#print(ice_ratio) +for ensem in ["0001", "0002", "0003"]: + Dp = a.compute_dry_diameter("0001") + print(10**np.mean(np.log10(Dp[0]))) + print(np.std(np.log10(Dp[0]))) -import matplotlib.pyplot as plt -plt.plot(mixing) -plt.grid() -plt.show() +#import matplotlib.pyplot as plt +#plt.plot(ice_ratio) +#plt.grid() +#plt.show() diff --git a/scenarios/7_freezing/data_temp/sdm_a.dat b/scenarios/7_freezing/data_temp/sdm_a.dat deleted file mode 100644 index e0af14e23..000000000 --- a/scenarios/7_freezing/data_temp/sdm_a.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 265.000 264.333 263.667 263.000 262.333 261.667 261.000 260.333 259.667 259.000 258.333 257.667 257.000 256.333 255.667 255.000 254.333 253.667 253.000 252.333 251.667 251.000 250.333 249.667 249.000 248.333 247.667 247.000 246.333 245.667 245.000 244.333 243.667 243.000 242.333 241.667 241.000 240.333 239.667 239.000 238.333 237.667 237.000 236.333 235.667 235.000 234.333 233.667 233.000 232.333 231.667 231.000 230.333 229.667 229.000 228.333 227.667 227.000 226.333 225.667 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_b.dat b/scenarios/7_freezing/data_temp/sdm_b.dat deleted file mode 100644 index 7e443c1ef..000000000 --- a/scenarios/7_freezing/data_temp/sdm_b.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 250.000 249.833 249.667 249.500 249.333 249.167 249.000 248.833 248.667 248.500 248.333 248.167 248.000 247.833 247.667 247.500 247.333 247.167 247.000 246.833 246.667 246.500 246.333 246.167 246.000 245.833 245.667 245.500 245.333 245.167 245.000 244.833 244.667 244.500 244.333 244.167 244.000 243.833 243.667 243.500 243.333 243.167 243.000 242.833 242.667 242.500 242.333 242.167 242.000 241.833 241.667 241.500 241.333 241.167 241.000 240.833 240.667 240.500 240.333 240.167 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_c.dat b/scenarios/7_freezing/data_temp/sdm_c.dat deleted file mode 100644 index 0689fcb20..000000000 --- a/scenarios/7_freezing/data_temp/sdm_c.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d.dat b/scenarios/7_freezing/data_temp/sdm_d.dat deleted file mode 100644 index 9bb989131..000000000 --- a/scenarios/7_freezing/data_temp/sdm_d.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 diff --git a/scenarios/7_freezing/data_temp/sdm_d1.dat b/scenarios/7_freezing/data_temp/sdm_d1.dat deleted file mode 100644 index fcea62c44..000000000 --- a/scenarios/7_freezing/data_temp/sdm_d1.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 270.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 225.000 diff --git a/scenarios/7_freezing/data_temp/sdm_e.dat b/scenarios/7_freezing/data_temp/sdm_e.dat deleted file mode 100644 index bde49568d..000000000 --- a/scenarios/7_freezing/data_temp/sdm_e.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 277.333 274.667 272.000 269.333 266.667 264.000 261.333 258.667 256.000 253.333 250.667 248.000 245.333 242.667 240.000 240.222 240.444 240.667 240.889 241.111 241.333 241.556 241.778 242.000 242.222 242.444 242.667 242.889 243.111 243.333 243.556 243.778 244.000 244.222 244.444 244.667 244.889 245.111 245.333 245.556 245.778 246.000 246.222 246.444 246.667 246.889 247.111 247.333 247.556 247.778 248.000 248.222 248.444 248.667 248.889 249.111 249.333 249.556 249.778 250.000 diff --git a/scenarios/7_freezing/data_temp/sdm_f.dat b/scenarios/7_freezing/data_temp/sdm_f.dat deleted file mode 100644 index 3f99f48bd..000000000 --- a/scenarios/7_freezing/data_temp/sdm_f.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 271.500 263.000 254.500 246.000 237.500 241.750 246.000 250.250 254.500 258.750 263.000 267.250 271.500 275.750 280.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.1 b/scenarios/7_freezing/data_temp/temp.data.1 deleted file mode 100644 index 6e49cce58..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.1 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 -temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 242.087 244.174 246.261 248.348 250.435 252.522 254.609 256.696 258.783 260.870 262.957 265.043 267.130 269.217 271.304 273.391 275.478 277.565 279.652 281.739 283.826 285.913 288.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.2 b/scenarios/7_freezing/data_temp/temp.data.2 deleted file mode 100644 index cefb6375e..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.2 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 3660 3720 3780 3840 3900 3960 4020 4080 4140 4200 4260 4320 4380 4440 4500 4560 4620 4680 4740 4800 4860 4920 4980 5040 5100 5160 5220 5280 5340 5400 5460 5520 5580 5640 5700 5760 5820 5880 5940 6000 6060 6120 6180 6240 6300 6360 6420 6480 6540 6600 6660 6720 6780 6840 6900 6960 7020 7080 7140 7200 -temp 270.000 269.625 269.250 268.875 268.500 268.125 267.750 267.375 267.000 266.625 266.250 265.875 265.500 265.125 264.750 264.375 264.000 263.625 263.250 262.875 262.500 262.125 261.750 261.375 261.000 260.625 260.250 259.875 259.500 259.125 258.750 258.375 258.000 257.625 257.250 256.875 256.500 256.125 255.750 255.375 255.000 254.625 254.250 253.875 253.500 253.125 252.750 252.375 252.000 251.625 251.250 250.875 250.500 250.125 249.750 249.375 249.000 248.625 248.250 247.875 247.500 247.125 246.750 246.375 246.000 245.625 245.250 244.875 244.500 244.125 243.750 243.375 243.000 242.625 242.250 241.875 241.500 241.125 240.750 240.375 240.000 239.625 239.250 238.875 238.500 238.125 237.750 237.375 237.000 236.625 236.250 235.875 235.500 235.125 234.750 234.375 234.000 233.625 233.250 232.875 232.500 232.125 231.750 231.375 231.000 230.625 230.250 229.875 229.500 229.125 228.750 228.375 228.000 227.625 227.250 226.875 226.500 226.125 225.750 225.375 225.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.3 b/scenarios/7_freezing/data_temp/temp.data.3 deleted file mode 100644 index 9f1303d6a..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.3 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 -temp 288.000 286.000 284.000 282.000 280.000 278.000 276.000 274.000 272.000 270.000 268.000 266.000 264.000 262.000 260.000 258.000 256.000 254.000 252.000 250.000 248.000 246.000 244.000 242.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.4 b/scenarios/7_freezing/data_temp/temp.data.4 deleted file mode 100644 index 2ee9c4ba6..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.4 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 284.000 280.000 276.000 272.000 268.000 264.000 260.000 256.000 252.000 248.000 244.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 240.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.5 b/scenarios/7_freezing/data_temp/temp.data.5 deleted file mode 100644 index bb5ab55ce..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.5 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 283.167 278.333 273.500 268.667 263.833 259.000 254.167 249.333 244.500 239.667 234.833 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 230.000 diff --git a/scenarios/7_freezing/data_temp/temp.data.6 b/scenarios/7_freezing/data_temp/temp.data.6 deleted file mode 100644 index 329ae0d2a..000000000 --- a/scenarios/7_freezing/data_temp/temp.data.6 +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 3600 7200 10800 14400 18000 21600 25200 28800 32400 36000 39600 43200 46800 50400 54000 57600 61200 64800 68400 72000 75600 79200 82800 86400 90000 93600 97200 100800 104400 108000 111600 115200 118800 122400 126000 129600 133200 136800 140400 144000 147600 151200 154800 158400 162000 165600 169200 172800 176400 180000 183600 187200 190800 194400 198000 201600 205200 208800 212400 216000 219600 223200 226800 230400 234000 237600 241200 244800 248400 252000 255600 259200 -temp 288.000 282.333 276.667 271.000 265.333 259.667 254.000 248.333 242.667 237.000 231.333 225.667 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 220.000 diff --git a/scenarios/7_freezing/freezing_run.sh b/scenarios/7_freezing/freezing_run.sh index 7703a7e28..f63c1575c 100755 --- a/scenarios/7_freezing/freezing_run.sh +++ b/scenarios/7_freezing/freezing_run.sh @@ -1,6 +1,6 @@ #!/bin/bash -caseName=git_trans_t1 +caseName=dev_test2 # exit on error set -e # turn on command echoing @@ -16,4 +16,6 @@ cp -p run_part.spec output/$caseName cp -p *.dat output/$caseName ../../build/partmc run_part.spec +mv freezing_timing.txt output/$caseName + #for i in out/freezing_part_*.nc; do ../../build/extract_aero_particles $i; done; diff --git a/scenarios/7_freezing/gas_back.dat b/scenarios/7_freezing/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/gas_data.dat b/scenarios/7_freezing/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/gas_emit.dat b/scenarios/7_freezing/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/gas_init.dat b/scenarios/7_freezing/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/gmon.out b/scenarios/7_freezing/gmon.out deleted file mode 100644 index 0135bc6988de6a2e55054be9f0fe110de139a153..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 742922 zcmeI*3zThlT_5m0_vUf)049J!AditinnD5xaJ9i=JxDN6Aq)W{5R?&arqAbp)yM(t!}j17s8ss1JJf|M&mjz5h4=+(iz+ri=gq0t5&UAV7cs0RjXF5FkK+009C72oNAZ z;MOSMw@kOjqi&xG5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAVA>OD&X%F+**&k{l0k%?74YQZ!|mCkP(JO0t5&UAV7cs0RjXF5FkK+ z009C72xNild+&5ye`DPt9*;3zcF@`ahikOA-TX#P4|i_kNqjSH#_cT=AV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009EGG=ZhOL;Yh}KG;4krK)k|-ot8lus&~!ZF|!o@%^S4 z&lm&<5FkK+009C72oNAZfB*pk1a7$kaeuJfB`lAv{jDqaq>}jFs_wIBQEK9TS3u=^+|jk+x2}#eq35wN=apP};0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5;&o2$U^uS?uq zXJ}qGhJfRKW2owr009C72oU)873lw^wc%f*8}G;PZ?l!Zlpb}*q@p|RFWtNUZ?f-? zED#_-;3g9|Dvfk>9xvAVmAF>rI6dqeuUIBPfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+z_+cy(qYd0aO)1UyTd43>h>N+l@bC3 z2oNAZfB*pk1PBlyK;U2k2Y*L@sIBAe#uC?o~uaA9APg(ddma|5FkK+009C72oNAZfB*pk z1PI))0_7gv4cn{U2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7ZYTkt z@3^5P^+SLF0RjXF5FkK+009C72oNA}{RP~ey8dQb5FkK+009C72oNAZfB*pk1PI)E z1l&Kn^&IP4(w+|IZTvg%!+QMHiGE+lSuB@-JHG46ztdkHkI(iw;^_BN>d((OvgHgqX8%mf`BS#UhT%LIpO3MvwCHQfnSbQy zc@{klf1{yq70-vEK6;AEVdP=d(r?uHPM`=3XLWxzm2;=0tutsiUx%}5Sco3lVpJTln02flvFPEE zqhU&$J}S?>`k6e;^7v7^;kq#VbR73EUM@dZ`sT-u`Z%sTH?O_C+A^-ct}%z2VGo9x z_J28Q_!=t4vnoF|`?`JIsf+JJU2*NVJ*xkfz6PHn^kd!YyOS5&hL&}&x#8mBsP3-a z%epfbOXHah%g6069hS!D-grjCJcgriUHiVjTMOS(fjC1>&vUp_dVKfd`*5_&ITa=2 z^S(c49-Lb)r^mN1zK@T1`#c!;I6gz8tMN0jzB`z-P#qz27ihJ2&YfSv)?lFrC%fDQ#594*+ zy%+1_vvIVO)j1m4CoHmf&oUgp{utHgQGWy%LoL3_-#e?Xl(Fr;iz{P{7RM=;%btwq z)b~_=0`|+pkw0eis+&!YaCKFnYkXS{zGFKXiJ=*5-2 z>+Z1lZ~SbopP^lM+g#msuS`q5+%QHhGt6`Rtn2rs|LSKK`}DEyE-8s`dl&oDe+{!7 z_cNZ)c-*qQXa7&JrTwyH=}z5pcUtN@o}*`rd#pHSb5eXKDKw#WUpgKe*S z`sUYeiZROUZpyLBnAh*|aA$b9b=PO~q0eEd-TqsD=C8j0RjXF z5V*ApEG^#kmESZJgFV-JCpf&a>X*j9OB#NURa$$zH46-9$_=A1oL|v%|9x1xVaCu4 zftym`(9e;&qF$?Kda!Nd%K9G8wXg7f?YOV;a_OgJbzf!cKkTve-TyoqzG8Wtlx>HT z4K+8$jLS@h$1+}d?6;JW<1xOM?eRE#>R{MfS`B?$B0%6-BoA)jqPrt-J0XZb@5c{6mgr(JPNP#Ti!KbCl2A#n`v4K6NGPjv-f#$dQ9PR4nKbBD4gc7>T}i#w_D+EE9@?b(RYs-DQ)Gj8ffLo zQCWp+t#IB7Cr^py)qz{fVb$kGE1dj9WAxQlxbf7etj?tpo^{7_yZ$R7Z|2JHxz8xv z%Hb*FaJ$v#Zmapu%VP8o-v9g4K*#ojZT)P7=R75jW(s$5_{0+)I#flTH&k}&RgMjE9^cLqgQ*hlEZ3BtF6lQRyb=l-)epVReUaS6&{ zIg?X3{diPf_V%be{)k2OdJa#1Q=GIZoaOMT?;M5m9RAKEPMcJ@@`>oP0$FW^>#cC* z)6sl+8hzg7w*8b^;Z`eLxxCf96>hh}$!8kPXRWZiqER`?;h!B7N@?<&t;+7Rt>!sA z``B^wR%Q3OM)S2+xZMgTS2mi@T48rpR6hFXxU9wDXoWkiaC&uPpv_jed`(oI_Ved- z{Z|@jlEY_TF$!06IQ{ccxR%4}w3+4bb*DXO=yS7GIsM`^RXq2UIP1MP&PSEgziEUkf7b}RZ$$XG_l%nFbTR3w&-tE4I6ET3 zs`ia(`jj$>CqGh5Xi)XLn1JtE2LS{47qD%hyEs zu6zMZ;rt8r=u!C>je$0E_|ow}YsbdfR(|ZJ<|Qmw+7zzm%2zxfTBLB6!}nyR6mI75 z$a}^fMR=QhTIUN(fZR61%byp|qoDiFJiz$!yL@6J+|1$Y-x1BzQ)cy~sQkW{j-H$A zIV|$&Xm%$@W!*f7zde2$&U08b-)V)@+^p(zmc#NhF3qz$HAerhXN6Jy2LVwz<=J3d);;NX!jU1N4@#d2km76*I@T;SF3U_i?4)J&QC+*t(YUC8I z!%dUqfn*Db=`9KL!SuH>V5(a*)`XYSkEEv-!AWoz{Ua+<^XrDhJ# z*dD!`*vMi1+Pl@~R;$n5R-fH{V@g$@lN{Fb%waXpjT~0}^|^e%n9_&O z8twZ^4y$=ib6CxDEr-=S=dI=?tOnX?_1WD&rd0Jg&EeWtW8+ePGOXsXn&)~Bt9i~^ zeQvk<+-dc>{M|8X)#v<&BYfM#a(KlfM&T@nUpapi?zEb(UlM)3 z`NC1yiw)k$jn|B))T-QVh0D)qOld8L zum0WWGyUY+Y=zscaQT_hXVrYQ6>hY`tyb8rN1s>!@6nW|Ijja+Z-w(#*gZS?tZsQN zx57y)Ty2Hxt#FpZ`mWK7V)P@9jy>AbU%|HWZpdU=_ho=4q(h~`x|ZH4Qta5IPH)kQovTj6dFt6Mb7 zuZYpBn>o`~xRJwZpsiN8lf&n{FZxbXn&x+U?|WT@>B+U0!w>xOIDA#CRPVXgUmaof z?rfHuRpI7qqOy3#>(AFV!qrwdYlT~_aF+L^8ffH18_l=! zot<(jzT^)tU%Xb#;q5Pr7AfrB5i8~VjPRWioslveW1yJ|OQIV`7lQrc~Wo1bkAG|ypa zo|JZ5m6Oj!^Qv32>3fFR2&2#md zM)S3AMEElok1rSbUR7zHuE|@+Ma9u?iO2Z^7I!swa`>)i#nUi_YsW{$d6!0*?uTsV z@TEDt?2o%WODlJZ%7^`QJYKqZ8ZT|;@S)e5I~X;rqu)w@Pz zHKmBfoA+;cgDU z{Hah%;c}izIdCal&tY{>V6zqOCl)fAg56G@5oGi!gl_{me zvEB-2Ijmm3&h8k^tJm|}Ijs6z{f@>!YdQS)r^m)L`c4kZKu0Z3v!&I17)qEb=Q;eF zyF~M}N85R&di}X_*Qh81rI#`5t#EQuRF=u7KBqY>%~QDEs@!T-b|=@PzxFYUJz74c z5l#;XU$m%MS~;~brS(?0*$Q`B;cgDAJ=$4m3^dEUQJoY9Z7m3)7;x}!VI;YB|h-Na9> zN5@JDQ=coXaGviDSC!K|zY?Z-uI2&mKc4(7|30Sd``-Rcp65Gd$9z3zadaPUTplY= z-i^n<@59NJu~KfMrQaW|<*?jFOW{Ti%Wbq2Zst$mmFA0Ih%N5d<*+nQ;Z6=q^As-U zPxU?U^D&DQ&T?4#Os{R`IV^pqa65;k&lGmo)VrC&Sq@8|p_IeYX9~A-So%z1m*@B5 zzl^?9xSCh~<6lL%Z*jd?TF)ybOqDD7Fg)@9MP)i1^S_Oia;r0i)4!|3HR#XIsDVNjViZuU!{3eE=ThZ z=EtY@eXiw|b8_<^@5A*Re)O%;X9{OIEPY00{t(;uz9W8Iq+>Mwju_}C$Kgu;)pfZh zrzh8HE8J*>+xd68U%Geno!-l=-6vMckF#{0pXKny;}5USACa5o-<8Mji_eSjwik^0 zT+ZRyj~RuN5{{d%Jt```>v5yX<@57OuKe29pS3ueIlRMTV`BKxShin9UsR%gMxcj!c&-8X+>+OwjcJS0l9HN_}(ur=DE8aQ@Y}><1t>G ze5eu5a#-H3rplEMH!3%BSXEB`xKX*9!|!=SJd0DG(~mSN=O3-Z^s{*RsS=ls;3q@fUUF?Rurj7aQTqZiMCZPVc04TH(rHHY!(J;d&1LX}(pH`rQ4iM)OI& zzfg_7-U@efSavi0=$U?{-lKRMn8T{it^D+>ny=^o<)C~>EXi-@@D2Hcaw*(tRZedI z&;@JPy&ymS)ENup)x7fC`SXCO`ECwhn_nWO%H=ym^QH4+CsH`c;e+!J{S zcbp;7Jcsk+M&YCt&h8w|-?S2s`z~Hw!8Y$6D<|G79@jqct4A(P?^%cc{S&`=^wRX~ z2+Qbq{*5QyW@)?J;>;hEi<^z#7nQ{`g&VDKrxi}7jpnmfxSPZB(ZuxHX60Wrns5AI zBiwm-Bkay=gzGsh2QCe?mBVu2;)U5Gqj@=SDO}HCHP5XaUi5@G?x}LR+8VtTZnnam zM@943JTP~&cyqWkIlt9s4$J8s$Ea1go5O1IE02yo%UKt@nZpWX{zFk&o(S<~u)G~emE8|FDyKQDDtB{u-xtOcAvK>rHky}{HieV?>&EJq>{=__XocH3tZoc; z7sfzUIBkVn&x*=(pB|6t_ea|~JbV0`rnO6>qWu0Sy~UX2ur&Y76%W|6w3)--%FRAMt=J*8L&0+O+VEWThS%oVvh_HSZ|Jw-9yW&CVniofNqfxo}!bauhiz9r~Qy)Au z-^$^?`-xGwlf!EC=}V${d1so=x>*kIllLrz^Or~EbM6t3@4aeqty_C#to%~GI`$X9 F{|`I>@DBh0 diff --git a/scenarios/7_freezing/height.dat b/scenarios/7_freezing/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/make_pres.py b/scenarios/7_freezing/make_pres.py index f4f7e1348..af7d4fed7 100755 --- a/scenarios/7_freezing/make_pres.py +++ b/scenarios/7_freezing/make_pres.py @@ -64,7 +64,7 @@ def make_file(timeList, TList, fileName = "pressure.dat"): #tList = [0, 14 * min_SI, 15 * min_SI, total_time], #tempList = [270 , 270 , 225 , 225], tList = [0, total_time], - tempList = [100000, 100000], + tempList = [50000, 50000], ) #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_P_black.csv") * 100 diff --git a/scenarios/7_freezing/make_temp.py b/scenarios/7_freezing/make_temp.py index 7c3633ea3..3993937bf 100755 --- a/scenarios/7_freezing/make_temp.py +++ b/scenarios/7_freezing/make_temp.py @@ -4,6 +4,7 @@ from pdb import set_trace from scipy.interpolate import interp1d import pandas as pd +from sys import argv min_SI = 60 hour_SI = 3600 @@ -12,8 +13,13 @@ #total_hour = 24 #timeList = np.arange(0, 3600 * (total_hour + 1), 3600) -total_time = 3600 -dtime = 60 +if len(argv) > 1: + assert len(argv) == 3 + total_time = float(argv[1]) + dtime = float(argv[2]) +else: + total_time = 600 + dtime = 1 timeList = np.arange(0, total_time + dtime, dtime) Nt = len(timeList) @@ -40,7 +46,7 @@ def make_file(timeList, TList, fileName = "temp.dat"): fw.write("# temp (K)\n") fw.write("time ") for time in timeList: - fw.write("%d " % (time)) + fw.write("%.3f " % (time)) fw.write("\n") fw.write("temp ") for T in TList: @@ -64,11 +70,14 @@ def make_file(timeList, TList, fileName = "temp.dat"): #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], #tList = [0, 14 * min_SI, 15 * min_SI, total_time], #tempList = [270 , 270 , 225 , 225], + #tList = [0, total_time/2, total_time/2 + 1, total_time], + #tempList = [263.15, 243.15, 263.15, 243.15], tList = [0, total_time], - tempList = [270, 225], + tempList = [253.15, 253.15], ) #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_Tg_black.csv") + #change_curve_file("/data/nriemer/d/wenhant2/datasets/LT_Tempfile/evaporation_temp.csv") ] TList = np.concatenate(TLists) assert len(timeList) == len(TList) diff --git a/scenarios/7_freezing/multicases_plot_freezing.py b/scenarios/7_freezing/multicases_plot_freezing.py deleted file mode 100755 index de164d5bc..000000000 --- a/scenarios/7_freezing/multicases_plot_freezing.py +++ /dev/null @@ -1,141 +0,0 @@ -#!/usr/bin/env python -import os -import glob -import netCDF4 as nc -import numpy as np -import matplotlib.pyplot as plt -from pdb import set_trace - -#sim_days = 2 -log_show = False -#draw_ice_type = "num_conc" -draw_ice_type = "mix" -#OutDir = "out_base" -#OutDir = "out_coag" -#OutDir = "out_cold" -#OutDir = "out_poster" -#OutDir = "out_poster2" -OutDir = "./output" -fontsize_label = 15 -assert draw_ice_type in ["num_conc", "mix"] -#casesName = ["out_case1", "out_case2", "out_case3"] -#casesName = ["out_case1", "out_case2", "out_case3"] -#casesName = ["out_new2", "out_new3", "out_new4", "out_old2", "out_old3", "out_old4"] -#casesLabel = ["new", "new", "new", "old", "old", "old"] -#casesColor = ["red", "red", "red", "blue", "blue", "blue"] - -casesName = ["mix_OIN100", "mix_ILT100", "mix_OIN50_ILT50"] -casesLabel = ["mix_OIN100", "mix_ILT100", "mix_OIN50_ILT50"] -#casesLabel = ["condense_t1", "test_m2"] -casesColor = ["red", "blue", "green"] - -t_max = 3600 * 2 -t_output = 100 -nFile = int(t_max / t_output) + 1 - - -def plot_case(caseName, caseLabel, caseColor, ax1, ax2, ax3): - print("Processing " + caseName + " ...") - temperature_data = [] - pressure_data = [] - relhum_data = [] - freezing_data = [] - P_frozen_data = [] - num_conc_data = [] - freezing_total = [] - freezing_total2 = [] - freezing_mass_data = [] - freezing_mass_data2 = [] - - #t_list = list(range(1, 864 *sim_days)) - id_file_list = np.array(list(range(1, nFile + 1))) - t_list = (id_file_list - 1) * t_output - - isFirst = True - #for t in t_list: - for id_file in id_file_list: - fileName = OutDir + "/" + caseName+ "/freezing_part_0001_" + str(id_file).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) - particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) - temperature = float(ncf.variables["temperature"][0].filled(np.nan)) - relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) - pressure = float(ncf.variables["pressure"][0].filled(np.nan)) - - freezing_data.append(part_frozen) - P_frozen_data.append(p_frozen) - num_conc_data.append(num_conc) - freezing_total.append(int(np.sum(p_frozen * num_conc))) - freezing_total2.append(int(np.sum(part_frozen * num_conc))) - freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) - freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) - - temperature_data.append(temperature) - relhum_data.append(relhum * 100) - pressure_data.append(pressure) - - - temperature_data = np.array(temperature_data) - relhum_data = np.array(relhum_data) - pressure_data = np.array(pressure_data) - freezing_mass_data = np.array(freezing_mass_data) - freezing_mass_data2 = np.array(freezing_mass_data2) - - air_density_data = pressure / (286 * temperature_data) - mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) - mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) - - f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) - f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) - P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) - P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) - - ax1.plot(t_list, temperature_data, color = caseColor, label = caseLabel) - ax1.plot(t_list, np.full((len(t_list)), 273.15), color = "grey" , linestyle = "dashed") - - if draw_ice_type == "num_conc": - #ax2.plot(t_list, np.log10(freezing_total) if log_show else freezing_total, label = caseLabel, color = caseColor) - ax2.plot(t_list, np.log10(freezing_total2) if log_show else freezing_total2, label = caseLabel, color = caseColor) - - else: - #ax2.plot(t_list, mixing_ratio_ice * 1000, label = caseLabel, color = caseColor) - ax2.plot(t_list, mixing_ratio_ice2 * 1000, label = caseLabel, color = caseColor) - if log_show: - ax3.plot(t_list, np.log10(f_ufz_mean), color = caseColor, label = caseLabel) - ax3.fill_between(t_list, np.log10(f_ufz_mean - f_ufz_std), np.log10(f_ufz_mean + f_ufz_std), alpha = 0.1, color = caseColor, edgecolor = None) - - else: - ax3.plot(t_list, P_frz_mean, color = caseColor, label = caseLabel) - ax3.fill_between(t_list, P_frz_mean - P_frz_std, P_frz_mean + P_frz_std, alpha = 0.1, color = caseColor, edgecolor = None) - -if __name__ == "__main__": - - fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize = (12, 10), sharex = True) - - for caseName, caseLabel, caseColor in zip(casesName, casesLabel, casesColor): - plot_case(caseName, caseLabel, caseColor, ax1, ax2, ax3) - - ax1.set_ylabel("temperature (K)", color = "black", fontsize = fontsize_label) - ax1.grid() - ax1.legend() - - ax2.set_ylabel("frozen concentration " + ("10^* (m^-3)" if log_show else "(m^-3)"), fontsize = fontsize_label) - ax2.set_ylabel("ice mixing ratio (g/kg)", fontsize = fontsize_label) - ax2.grid() - - ax2.legend() - - - ax3.set_ylim([-0.05, 1.05]) - ax3.grid() - ax3.set_xlabel("time (s)", fontsize = fontsize_label) - ax3.set_ylabel("frozen ratio" + (" (10^*)" if log_show else ""), fontsize = fontsize_label) - ax3.legend() - - fig.subplots_adjust(hspace = 0.1) - fig.suptitle("Immersion freezing (partMC-ABIFM)", fontsize = 20) - - plt.show() - diff --git a/scenarios/7_freezing/nohup.log b/scenarios/7_freezing/nohup.log deleted file mode 100644 index a4e91bf18..000000000 --- a/scenarios/7_freezing/nohup.log +++ /dev/null @@ -1,69172 +0,0 @@ -nohup: ignoring input -# make sure that the current directory is the one where this script is -cd ${0%/*} - -sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec - -# make the output directory if it doesn't exist -mkdir -p output/$caseName -cp -p run_part.spec output/$caseName - -../../build/partmc run_part.spec -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 0s 998 0 0 0 0 0 0s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 100s 998 0 0 0 0 0 0s 3904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 200s 998 0 0 0 0 0 0s 2567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 300s 998 0 0 0 0 0 0s 2119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 400s 998 0 0 0 0 0 0s 1896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 500s 998 0 0 0 0 0 0s 1762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 600s 998 0 0 0 0 0 0s 1672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 700s 998 0 0 0 0 0 0s 1609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 800s 998 0 0 0 0 0 0s 1561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 900s 998 0 0 0 0 0 0s 1523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1000s 998 0 0 0 0 0 0s 1494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1100s 998 0 0 0 0 0 0s 1469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1200s 998 0 0 0 0 0 1s 1449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1300s 998 0 0 0 0 0 1s 1432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1400s 998 0 0 0 0 0 1s 1416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1500s 998 0 0 0 0 0 1s 1398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1600s 998 0 0 0 0 0 1s 1377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1700s 998 0 0 0 0 0 1s 1356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1800s 998 0 0 0 0 0 1s 1338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1900s 998 0 0 0 0 0 1s 1321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2000s 998 0 0 0 0 0 1s 1306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2100s 997 1 0 0 0 0 1s 1292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2200s 997 0 0 0 0 0 1s 1280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2300s 997 0 0 0 0 0 1s 1268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2400s 997 0 0 0 0 0 1s 1258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2500s 997 0 0 0 0 0 1s 1248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2600s 997 0 0 0 0 0 1s 1261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2700s 997 0 0 0 0 0 1s 1262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2800s 997 0 0 0 0 0 1s 1258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2900s 997 0 0 0 0 0 1s 1251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3000s 997 0 0 0 0 0 1s 1243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3100s 997 0 0 0 0 0 1s 1236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3200s 997 0 0 0 0 0 1s 1229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3300s 997 0 0 0 0 0 1s 1222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3400s 997 0 0 0 0 0 1s 1216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3500s 997 0 0 0 0 0 1s 1211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3600s 997 0 0 0 0 0 1s 1205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3700s 997 0 0 0 0 0 1s 1200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3800s 997 0 0 0 0 0 1s 1196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 3900s 997 0 0 0 0 0 1s 1191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4000s 997 0 0 0 0 0 1s 1187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4100s 997 0 0 0 0 0 1s 1183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4200s 997 0 0 0 0 0 1s 1179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4300s 997 0 0 0 0 0 1s 1175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4400s 997 0 0 0 0 0 1s 1171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4500s 997 0 0 0 0 0 2s 1168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4600s 997 0 0 0 0 0 2s 1164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4700s 997 0 0 0 0 0 2s 1161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4800s 997 0 0 0 0 0 2s 1158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 4900s 997 0 0 0 0 0 2s 1155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5000s 997 0 0 0 0 0 2s 1153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5100s 996 1 0 0 0 0 2s 1150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5200s 996 0 0 0 0 0 2s 1147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5300s 996 0 0 0 0 0 2s 1145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5400s 996 0 0 0 0 0 2s 1142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5500s 996 0 0 0 0 0 2s 1140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5600s 996 0 0 0 0 0 2s 1138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5700s 996 0 0 0 0 0 2s 1135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5800s 996 0 0 0 0 0 2s 1133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 5900s 995 1 0 0 0 0 2s 1131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6000s 995 0 0 0 0 0 2s 1130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6100s 995 0 0 0 0 0 2s 1128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6200s 995 0 0 0 0 0 2s 1126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6300s 995 0 0 0 0 0 2s 1124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6400s 995 0 0 0 0 0 2s 1123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6500s 995 0 0 0 0 0 2s 1121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6600s 995 0 0 0 0 0 2s 1119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6700s 995 0 0 0 0 0 2s 1118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6800s 995 0 0 0 0 0 2s 1116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 6900s 995 0 0 0 0 0 2s 1114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7000s 995 0 0 0 0 0 2s 1113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7100s 994 1 0 0 0 0 2s 1112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7200s 994 0 0 0 0 0 2s 1110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7300s 994 0 0 0 0 0 2s 1109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7400s 994 0 0 0 0 0 2s 1108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7500s 994 0 0 0 0 0 2s 1106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7600s 994 0 0 0 0 0 2s 1105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7700s 994 0 0 0 0 0 2s 1104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7800s 994 0 0 0 0 0 2s 1103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 7900s 994 0 0 0 0 0 3s 1102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8000s 994 0 0 0 0 0 3s 1101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8100s 994 0 0 0 0 0 3s 1099s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8200s 994 0 0 0 0 0 3s 1098s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8300s 994 0 0 0 0 0 3s 1097s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8400s 994 0 0 0 0 0 3s 1096s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8500s 994 0 0 0 0 0 3s 1095s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8600s 994 0 0 0 0 0 3s 1094s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8700s 994 0 0 0 0 0 3s 1093s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8800s 994 0 0 0 0 0 3s 1092s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 8900s 994 0 0 0 0 0 3s 1092s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9000s 994 0 0 0 0 0 3s 1092s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9100s 994 0 0 0 0 0 3s 1093s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9200s 994 0 0 0 0 0 3s 1094s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9300s 994 0 0 0 0 0 3s 1096s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9400s 994 0 0 0 0 0 3s 1097s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9500s 994 0 0 0 0 0 3s 1098s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9600s 994 0 0 0 0 0 3s 1099s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9700s 994 0 0 0 0 0 3s 1100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9800s 994 0 0 0 0 0 3s 1102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 9900s 994 0 0 0 0 0 3s 1103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10000s 994 0 0 0 0 0 3s 1104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10100s 994 0 0 0 0 0 3s 1105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10200s 994 0 0 0 0 0 3s 1106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10300s 994 0 0 0 0 0 3s 1107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10400s 994 1 0 0 0 0 3s 1108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10500s 993 1 0 0 0 0 3s 1109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10600s 993 0 0 0 0 0 3s 1110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10700s 993 1 0 0 0 0 3s 1111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10800s 993 0 0 0 0 0 3s 1111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 10900s 993 0 0 0 0 0 4s 1110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11000s 993 0 0 0 0 0 4s 1109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11100s 993 0 0 0 0 0 4s 1108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11200s 993 0 0 0 0 0 4s 1107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11300s 993 0 0 0 0 0 4s 1106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11400s 993 1 0 0 0 0 4s 1106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11500s 993 0 0 0 0 0 4s 1105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11600s 993 0 0 0 0 0 4s 1104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11700s 993 0 0 0 0 0 4s 1103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11800s 993 0 0 0 0 0 4s 1102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 11900s 993 0 0 0 0 0 4s 1102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12000s 993 0 0 0 0 0 4s 1101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12100s 993 0 0 0 0 0 4s 1100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12200s 993 0 0 0 0 0 4s 1099s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12300s 993 0 0 0 0 0 4s 1099s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12400s 993 0 0 0 0 0 4s 1098s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12500s 993 0 0 0 0 0 4s 1097s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12600s 993 0 0 0 0 0 4s 1097s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12700s 993 1 0 0 0 0 4s 1096s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12800s 993 0 0 0 0 0 4s 1095s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 12900s 993 0 0 0 0 0 4s 1095s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13000s 992 1 0 0 0 0 4s 1094s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13100s 992 1 0 0 0 0 4s 1093s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13200s 993 1 0 0 0 0 4s 1093s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13300s 993 0 0 0 0 0 4s 1092s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13400s 993 0 0 0 0 0 4s 1092s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13500s 992 1 0 0 0 0 4s 1091s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13600s 992 0 0 0 0 0 4s 1090s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13700s 992 0 0 0 0 0 4s 1090s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13800s 992 0 0 0 0 0 4s 1089s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 13900s 992 0 0 0 0 0 4s 1088s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14000s 992 0 0 0 0 0 4s 1088s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14100s 992 0 0 0 0 0 4s 1087s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14200s 992 0 0 0 0 0 4s 1087s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14300s 992 0 0 0 0 0 5s 1086s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14400s 992 0 0 0 0 0 5s 1086s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14500s 992 0 0 0 0 0 5s 1085s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14600s 992 0 0 0 0 0 5s 1085s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14700s 992 0 0 0 0 0 5s 1084s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14800s 992 0 0 0 0 0 5s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 14900s 992 0 0 0 0 0 5s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15000s 992 0 0 0 0 0 5s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15100s 992 0 0 0 0 0 5s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15200s 992 0 0 0 0 0 5s 1081s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15300s 992 0 0 0 0 0 5s 1081s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15400s 992 0 0 0 0 0 5s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15500s 992 0 0 0 0 0 5s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15600s 992 0 0 0 0 0 5s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15700s 992 0 0 0 0 0 5s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15800s 992 0 0 0 0 0 5s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 15900s 992 0 0 0 0 0 5s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16000s 992 0 0 0 0 0 5s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16100s 992 0 0 0 0 0 5s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16200s 992 0 0 0 0 0 5s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16300s 992 0 0 0 0 0 5s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16400s 992 0 0 0 0 0 5s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16500s 992 0 0 0 0 0 5s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16600s 992 0 0 0 0 0 5s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16700s 992 0 0 0 0 0 5s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16800s 992 0 0 0 0 0 5s 1074s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 16900s 992 0 0 0 0 0 5s 1074s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17000s 992 0 0 0 0 0 5s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17100s 992 0 0 0 0 0 5s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17200s 992 0 0 0 0 0 5s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17300s 992 0 0 0 0 0 5s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17400s 992 0 0 0 0 0 5s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17500s 992 0 0 0 0 0 5s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17600s 992 0 0 0 0 0 5s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17700s 992 0 0 0 0 0 6s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17800s 992 0 0 0 0 0 6s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 17900s 992 0 0 0 0 0 6s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18000s 992 0 0 0 0 0 6s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18100s 992 0 0 0 0 0 6s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18200s 992 0 0 0 0 0 6s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18300s 992 0 0 0 0 0 6s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18400s 992 0 0 0 0 0 6s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18500s 992 0 0 0 0 0 6s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18600s 992 0 0 0 0 0 6s 1067s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18700s 992 0 0 0 0 0 6s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18800s 992 0 0 0 0 0 6s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 18900s 992 0 0 0 0 0 6s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19000s 992 0 0 0 0 0 6s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19100s 992 0 0 0 0 0 6s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19200s 992 0 0 0 0 0 6s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19300s 992 0 0 0 0 0 6s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19400s 992 0 0 0 0 0 6s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19500s 992 0 0 0 0 0 6s 1081s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19600s 992 0 0 0 0 0 6s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19700s 992 0 0 0 0 0 6s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19800s 992 0 0 0 0 0 6s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 19900s 992 0 0 0 0 0 6s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20000s 992 0 0 0 0 0 6s 1084s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20100s 992 0 0 0 0 0 6s 1084s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20200s 992 0 0 0 0 0 6s 1084s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20300s 992 0 0 0 0 0 6s 1084s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20400s 992 0 0 0 0 0 6s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20500s 992 1 0 0 0 0 6s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20600s 992 0 0 0 0 0 6s 1083s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20700s 992 0 0 0 0 0 7s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20800s 992 0 0 0 0 0 7s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 20900s 992 0 0 0 0 0 7s 1082s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21000s 992 0 0 0 0 0 7s 1081s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21100s 992 0 0 0 0 0 7s 1081s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21200s 992 0 0 0 0 0 7s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21300s 992 0 0 0 0 0 7s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21400s 992 0 0 0 0 0 7s 1080s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21500s 992 0 0 0 0 0 7s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21600s 992 0 0 0 0 0 7s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21700s 992 0 0 0 0 0 7s 1079s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21800s 992 0 0 0 0 0 7s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 21900s 992 0 0 0 0 0 7s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22000s 992 0 0 0 0 0 7s 1078s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22100s 992 0 0 0 0 0 7s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22200s 992 0 0 0 0 0 7s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22300s 992 0 0 0 0 0 7s 1077s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22400s 992 0 0 0 0 0 7s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22500s 992 0 0 0 0 0 7s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22600s 992 0 0 0 0 0 7s 1076s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22700s 992 0 0 0 0 0 7s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22800s 992 0 0 0 0 0 7s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 22900s 992 0 0 0 0 0 7s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23000s 992 0 0 0 0 0 7s 1075s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23100s 992 0 0 0 0 0 7s 1074s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23200s 992 0 0 0 0 0 7s 1074s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23300s 992 0 0 0 0 0 7s 1074s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23400s 992 0 0 0 0 0 7s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23500s 992 0 0 0 0 0 7s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23600s 992 0 0 0 0 0 7s 1073s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23700s 992 0 0 0 0 0 7s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23800s 992 0 0 0 0 0 7s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 23900s 992 0 0 0 0 0 7s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24000s 992 0 0 0 0 0 7s 1072s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24100s 992 0 0 0 0 0 8s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24200s 992 0 0 0 0 0 8s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24300s 992 0 0 0 0 0 8s 1071s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24400s 992 0 0 0 0 0 8s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24500s 992 0 0 0 0 0 8s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24600s 992 0 0 0 0 0 8s 1070s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24700s 992 0 0 0 0 0 8s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24800s 992 0 0 0 0 0 8s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 24900s 992 0 0 0 0 0 8s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25000s 992 0 0 0 0 0 8s 1069s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25100s 992 0 0 0 0 0 8s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25200s 992 0 0 0 0 0 8s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25300s 992 0 0 0 0 0 8s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25400s 992 0 0 0 0 0 8s 1068s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25500s 992 0 0 0 0 0 8s 1067s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25600s 992 0 0 0 0 0 8s 1067s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25700s 992 0 0 0 0 0 8s 1067s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25800s 992 0 0 0 0 0 8s 1066s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 25900s 992 0 0 0 0 0 8s 1066s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26000s 992 0 0 0 0 0 8s 1066s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26100s 992 0 0 0 0 0 8s 1066s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26200s 992 0 0 0 0 0 8s 1065s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26300s 992 0 0 0 0 0 8s 1065s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26400s 992 0 0 0 0 0 8s 1065s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26500s 992 0 0 0 0 0 8s 1065s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26600s 992 0 0 0 0 0 8s 1064s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26700s 992 0 0 0 0 0 8s 1064s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26800s 992 0 0 0 0 0 8s 1064s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 26900s 992 0 0 0 0 0 8s 1064s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27000s 992 0 0 0 0 0 8s 1063s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27100s 992 0 0 0 0 0 8s 1063s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27200s 992 0 0 0 0 0 8s 1063s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27300s 992 0 0 0 0 0 8s 1063s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27400s 992 0 0 0 0 0 8s 1062s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27500s 992 0 0 0 0 0 9s 1062s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27600s 992 0 0 0 0 0 9s 1062s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27700s 992 0 0 0 0 0 9s 1062s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27800s 992 0 0 0 0 0 9s 1061s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 27900s 992 0 0 0 0 0 9s 1061s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28000s 992 0 0 0 0 0 9s 1061s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28100s 992 0 0 0 0 0 9s 1061s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28200s 992 0 0 0 0 0 9s 1060s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28300s 992 0 0 0 0 0 9s 1060s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28400s 992 0 0 0 0 0 9s 1060s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28500s 992 0 0 0 0 0 9s 1060s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28600s 992 0 0 0 0 0 9s 1059s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28700s 992 0 0 0 0 0 9s 1059s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28800s 992 0 0 0 0 0 9s 1059s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 28900s 992 0 0 0 0 0 9s 1059s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29000s 992 0 0 0 0 0 9s 1058s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29100s 992 0 0 0 0 0 9s 1058s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29200s 992 0 0 0 0 0 9s 1058s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29300s 992 0 0 0 0 0 9s 1058s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29400s 992 0 0 0 0 0 9s 1058s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29500s 991 1 0 0 0 0 9s 1057s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29600s 991 0 0 0 0 0 9s 1057s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29700s 991 0 0 0 0 0 9s 1057s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29800s 991 0 0 0 0 0 9s 1057s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 29900s 991 0 0 0 0 0 9s 1056s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30000s 991 0 0 0 0 0 9s 1056s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30100s 991 0 0 0 0 0 9s 1056s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30200s 991 0 0 0 0 0 9s 1056s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30300s 991 0 0 0 0 0 9s 1056s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30400s 991 0 0 0 0 0 9s 1055s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30500s 992 2 0 0 0 0 9s 1055s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30600s 992 0 0 0 0 0 9s 1055s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30700s 991 1 0 0 0 0 9s 1055s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30800s 991 0 0 0 0 0 9s 1054s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 30900s 991 0 0 0 0 0 10s 1054s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31000s 991 1 0 0 0 0 10s 1054s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31100s 991 0 0 0 0 0 10s 1054s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31200s 991 0 0 0 0 0 10s 1054s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31300s 991 0 0 0 0 0 10s 1053s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31400s 991 0 0 0 0 0 10s 1053s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31500s 991 0 0 0 0 0 10s 1053s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31600s 991 0 0 0 0 0 10s 1053s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31700s 991 0 0 0 0 0 10s 1053s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31800s 991 0 0 0 0 0 10s 1052s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 31900s 991 0 0 0 0 0 10s 1052s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32000s 991 0 0 0 0 0 10s 1052s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32100s 991 0 0 0 0 0 10s 1052s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32200s 991 0 0 0 0 0 10s 1052s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32300s 991 0 0 0 0 0 10s 1051s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32400s 991 0 0 0 0 0 10s 1051s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32500s 991 0 0 0 0 0 10s 1051s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32600s 991 0 0 0 0 0 10s 1051s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32700s 991 0 0 0 0 0 10s 1051s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32800s 991 0 0 0 0 0 10s 1050s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 32900s 991 0 0 0 0 0 10s 1050s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33000s 991 0 0 0 0 0 10s 1050s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33100s 991 0 0 0 0 0 10s 1050s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33200s 991 0 0 0 0 0 10s 1050s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33300s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33400s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33500s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33600s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33700s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33800s 991 0 0 0 0 0 10s 1049s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 33900s 991 0 0 0 0 0 10s 1048s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34000s 991 0 0 0 0 0 10s 1048s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34100s 991 0 0 0 0 0 10s 1048s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34200s 991 0 0 0 0 0 10s 1048s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34300s 991 0 0 0 0 0 11s 1048s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34400s 991 0 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34500s 991 0 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34600s 991 0 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34700s 991 0 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34800s 991 0 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 34900s 990 1 0 0 0 0 11s 1047s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35000s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35100s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35200s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35300s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35400s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35500s 990 0 0 0 0 0 11s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35600s 990 1 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35700s 990 0 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35800s 990 0 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 35900s 990 0 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36000s 990 0 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36100s 990 0 0 0 0 0 11s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36200s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36300s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36400s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36500s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36600s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36700s 990 0 0 0 0 0 11s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36800s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 36900s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37000s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37100s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37200s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37300s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37400s 990 0 0 0 0 0 11s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37500s 990 0 0 0 0 0 11s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37600s 990 0 0 0 0 0 11s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37700s 990 0 0 0 0 0 11s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37800s 990 0 0 0 0 0 12s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 37900s 990 0 0 0 0 0 12s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38000s 990 0 0 0 0 0 12s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38100s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38200s 990 1 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38300s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38400s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38500s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38600s 990 1 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38700s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38800s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 38900s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39000s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39100s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39200s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39300s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39400s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39500s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39600s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39700s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39800s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 39900s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40000s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40100s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40200s 990 0 0 0 0 0 12s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40300s 990 0 0 0 0 0 12s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40400s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40500s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40600s 990 0 0 0 0 0 12s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40700s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40800s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 40900s 990 0 0 0 0 0 12s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41000s 990 0 0 0 0 0 12s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41100s 990 0 0 0 0 0 13s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41200s 990 0 0 0 0 0 13s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41300s 990 0 0 0 0 0 13s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41400s 990 1 0 0 0 0 13s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41500s 990 0 0 0 0 0 13s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41600s 990 0 0 0 0 0 13s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41700s 990 0 0 0 0 0 13s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41800s 990 0 0 0 0 0 13s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 41900s 990 0 0 0 0 0 13s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42000s 990 0 0 0 0 0 13s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42100s 990 0 0 0 0 0 13s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42200s 990 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42300s 990 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42400s 990 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42500s 990 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42600s 990 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42700s 990 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42800s 990 1 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 42900s 990 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43000s 990 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43100s 989 1 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43200s 988 1 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43300s 988 0 0 0 0 0 13s 1046s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43400s 988 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43500s 988 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43600s 988 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43700s 988 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43800s 987 1 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 43900s 987 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44000s 987 0 0 0 0 0 13s 1045s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44100s 987 0 0 0 0 0 13s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44200s 986 1 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44300s 986 0 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44400s 986 0 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44500s 986 0 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44600s 986 0 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44700s 986 0 0 0 0 0 14s 1044s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44800s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 44900s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45000s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45100s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45200s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45300s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45400s 986 0 0 0 0 0 14s 1043s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45500s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45600s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45700s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45800s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 45900s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46000s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46100s 986 0 0 0 0 0 14s 1042s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46200s 986 0 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46300s 986 0 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46400s 986 1 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46500s 986 0 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46600s 986 0 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46700s 986 1 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46800s 986 0 0 0 0 0 14s 1041s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 46900s 986 1 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47000s 986 0 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47100s 986 1 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47200s 986 0 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47300s 986 0 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47400s 986 0 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47500s 986 0 0 0 0 0 14s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47600s 986 0 0 0 0 0 15s 1040s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47700s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47800s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 47900s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48000s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48100s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48200s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48300s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48400s 986 0 0 0 0 0 15s 1039s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48500s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48600s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48700s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48800s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 48900s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49000s 986 1 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49100s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49200s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49300s 986 0 0 0 0 0 15s 1038s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49400s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49500s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49600s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49700s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49800s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 49900s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50000s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50100s 986 0 0 0 0 0 15s 1037s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50200s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50300s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50400s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50500s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50600s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50700s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50800s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 50900s 986 0 0 0 0 0 15s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51000s 986 0 0 0 0 0 16s 1036s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51100s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51200s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51300s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51400s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51500s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51600s 986 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51700s 985 1 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51800s 985 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 51900s 985 0 0 0 0 0 16s 1035s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52000s 985 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52100s 985 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52200s 985 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52300s 984 1 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52400s 984 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52500s 984 1 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52600s 984 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52700s 984 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52800s 984 0 0 0 0 0 16s 1034s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 52900s 983 1 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53000s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53100s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53200s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53300s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53400s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53500s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53600s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53700s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53800s 983 0 0 0 0 0 16s 1033s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 53900s 983 0 0 0 0 0 16s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54000s 983 0 0 0 0 0 16s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54100s 983 0 0 0 0 0 16s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54200s 983 0 0 0 0 0 16s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54300s 983 0 0 0 0 0 16s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54400s 983 0 0 0 0 0 17s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54500s 983 0 0 0 0 0 17s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54600s 983 1 0 0 0 0 17s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54700s 983 0 0 0 0 0 17s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54800s 982 1 0 0 0 0 17s 1032s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 54900s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55000s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55100s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55200s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55300s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55400s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55500s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55600s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55700s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55800s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 55900s 982 0 0 0 0 0 17s 1031s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56000s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56100s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56200s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56300s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56400s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56500s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56600s 982 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56700s 981 2 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56800s 981 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 56900s 981 0 0 0 0 0 17s 1030s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57000s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57100s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57200s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57300s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57400s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57500s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57600s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57700s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57800s 981 0 0 0 0 0 17s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 57900s 981 0 0 0 0 0 18s 1029s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58000s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58100s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58200s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58300s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58400s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58500s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58600s 981 1 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58700s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58800s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 58900s 981 0 0 0 0 0 18s 1028s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59000s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59100s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59200s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59300s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59400s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59500s 981 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59600s 980 1 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59700s 980 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59800s 980 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 59900s 980 0 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60000s 980 1 0 0 0 0 18s 1027s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60100s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60200s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60300s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60400s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60500s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60600s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60700s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60800s 980 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 60900s 979 1 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61000s 979 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61100s 979 0 0 0 0 0 18s 1026s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61200s 979 0 0 0 0 0 18s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61300s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61400s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61500s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61600s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61700s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61800s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 61900s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62000s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62100s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62200s 979 0 0 0 0 0 19s 1025s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62300s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62400s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62500s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62600s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62700s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62800s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 62900s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63000s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63100s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63200s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63300s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63400s 979 0 0 0 0 0 19s 1024s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63500s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63600s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63700s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63800s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 63900s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64000s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64100s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64200s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64300s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64400s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64500s 979 0 0 0 0 0 19s 1023s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64600s 979 0 0 0 0 0 19s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64700s 979 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64800s 979 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 64900s 979 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65000s 979 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65100s 979 2 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65200s 979 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65300s 978 1 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65400s 978 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65500s 978 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65600s 978 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65700s 978 0 0 0 0 0 20s 1022s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65800s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 65900s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66000s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66100s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66200s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66300s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66400s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66500s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66600s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66700s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66800s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 66900s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67000s 978 0 0 0 0 0 20s 1021s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67100s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67200s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67300s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67400s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67500s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67600s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67700s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67800s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 67900s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68000s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68100s 978 0 0 0 0 0 20s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68200s 978 0 0 0 0 0 21s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68300s 978 0 0 0 0 0 21s 1020s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68400s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68500s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68600s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68700s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68800s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 68900s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69000s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69100s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69200s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69300s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69400s 978 0 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69500s 978 1 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69600s 978 1 0 0 0 0 21s 1019s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69700s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69800s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 69900s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70000s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70100s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70200s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70300s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70400s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70500s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70600s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70700s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70800s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 70900s 978 0 0 0 0 0 21s 1018s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71000s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71100s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71200s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71300s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71400s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71500s 978 0 0 0 0 0 21s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71600s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71700s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71800s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 71900s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72000s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72100s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72200s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72300s 978 0 0 0 0 0 22s 1017s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72400s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72500s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72600s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72700s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72800s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 72900s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73000s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73100s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73200s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73300s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73400s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73500s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73600s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73700s 978 0 0 0 0 0 22s 1016s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73800s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 73900s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74000s 978 1 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74100s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74200s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74300s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74400s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74500s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74600s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74700s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74800s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 74900s 978 0 0 0 0 0 22s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75000s 978 0 0 0 0 0 23s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75100s 978 0 0 0 0 0 23s 1015s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75200s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75300s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75400s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75500s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75600s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75700s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75800s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 75900s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76000s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76100s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76200s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76300s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76400s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76500s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76600s 978 0 0 0 0 0 23s 1014s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76700s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76800s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 76900s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77000s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77100s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77200s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77300s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77400s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77500s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77600s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77700s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77800s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 77900s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78000s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78100s 978 0 0 0 0 0 23s 1013s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78200s 978 0 0 0 0 0 23s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78300s 978 0 0 0 0 0 23s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78400s 978 0 0 0 0 0 23s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78500s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78600s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78700s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78800s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 78900s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79000s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79100s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79200s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79300s 978 1 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79400s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79500s 978 0 0 0 0 0 24s 1012s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79600s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79700s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79800s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 79900s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80000s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80100s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80200s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80300s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80400s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80500s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80600s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80700s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80800s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 80900s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81000s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81100s 978 0 0 0 0 0 24s 1011s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81200s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81300s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81400s 978 1 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81500s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81600s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81700s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81800s 978 0 0 0 0 0 24s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 81900s 978 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82000s 978 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82100s 977 1 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82200s 977 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82300s 977 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82400s 977 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82500s 977 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82600s 978 1 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82700s 978 0 0 0 0 0 25s 1010s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82800s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 82900s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83000s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83100s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83200s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83300s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83400s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83500s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83600s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83700s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83800s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 83900s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84000s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84100s 978 1 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84200s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84300s 978 0 0 0 0 0 25s 1009s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84400s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84500s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84600s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84700s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84800s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 84900s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85000s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85100s 978 0 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85200s 977 1 0 0 0 0 25s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85300s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85400s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85500s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85600s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85700s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85800s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 85900s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86000s 977 0 0 0 0 0 26s 1008s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86100s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86200s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86300s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86400s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86500s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86600s 977 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86700s 978 1 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86800s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 86900s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87000s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87100s 978 1 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87200s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87300s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87400s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87500s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87600s 978 1 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87700s 978 0 0 0 0 0 26s 1007s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87800s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 87900s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88000s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88100s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88200s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88300s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88400s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88500s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88600s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88700s 978 0 0 0 0 0 26s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88800s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 88900s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89000s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89100s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89200s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89300s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89400s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89500s 978 0 0 0 0 0 27s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89600s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89700s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89800s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 89900s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90000s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90100s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90200s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90300s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90400s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90500s 978 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90600s 977 1 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90700s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90800s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 90900s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91000s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91100s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91200s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91300s 977 0 0 0 0 0 27s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91400s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91500s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91600s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91700s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91800s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 91900s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92000s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92100s 977 0 0 0 0 0 27s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92200s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92300s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92400s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92500s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92600s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92700s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92800s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 92900s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93000s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93100s 977 0 0 0 0 0 28s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93200s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93300s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93400s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93500s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93600s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93700s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93800s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 93900s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94000s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94100s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94200s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94300s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94400s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94500s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94600s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94700s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94800s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 94900s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95000s 977 0 0 0 0 0 28s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95100s 977 0 0 0 0 0 28s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95200s 977 0 0 0 0 0 28s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95300s 977 0 0 0 0 0 28s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95400s 977 0 0 0 0 0 28s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95500s 977 0 0 0 0 0 28s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95600s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95700s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95800s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 95900s 977 1 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96000s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96100s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96200s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96300s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96400s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96500s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96600s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96700s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96800s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 96900s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97000s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97100s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97200s 977 0 0 0 0 0 29s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97300s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97400s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97500s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97600s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97700s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97800s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 97900s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98000s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98100s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98200s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98300s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98400s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98500s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98600s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98700s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98800s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 98900s 977 0 0 0 0 0 29s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99000s 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99100s 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99200s 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99300s 977 0 0 0 0 0 30s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99400s 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99500s 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99600s 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99700s 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99800s 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 99900s 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1667m 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1668m 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1670m 977 0 0 0 0 0 30s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1672m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1673m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1675m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1677m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1678m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1680m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1682m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1683m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1685m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1687m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1688m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1690m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1692m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1693m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1695m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1697m 976 1 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1698m 976 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1700m 977 1 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1702m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1703m 977 0 0 0 0 0 30s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1705m 977 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1707m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1708m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1710m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1712m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1713m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1715m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1717m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1718m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1720m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1722m 977 0 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1723m 977 1 0 0 0 0 31s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1725m 976 1 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1727m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1728m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1730m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1732m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1733m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1735m 976 0 0 0 0 0 31s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1737m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1738m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1740m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1742m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1743m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1745m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1747m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1748m 976 0 0 0 0 0 31s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1750m 976 0 0 0 0 0 31s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1752m 976 0 0 0 0 0 31s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1753m 976 0 0 0 0 0 32s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1755m 976 0 0 0 0 0 32s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1757m 976 0 0 0 0 0 32s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1758m 976 0 0 0 0 0 32s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1760m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1762m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1763m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1765m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1767m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1768m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1770m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1772m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1773m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1775m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1777m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1778m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1780m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1782m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1783m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1785m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1787m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1788m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1790m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1792m 976 0 0 0 0 0 32s 1006s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1793m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1795m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1797m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1798m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1800m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1802m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1803m 976 0 0 0 0 0 32s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1805m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1807m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1808m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1810m 976 1 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1812m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1813m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1815m 976 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1817m 975 1 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1818m 975 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1820m 975 0 0 0 0 0 33s 1005s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1822m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1823m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1825m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1827m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1828m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1830m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1832m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1833m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1835m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1837m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1838m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1840m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1842m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1843m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1845m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1847m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1848m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1850m 975 0 0 0 0 0 33s 1004s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1852m 975 0 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1853m 974 1 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1855m 974 0 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1857m 974 0 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1858m 974 0 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1860m 974 0 0 0 0 0 33s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1862m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1863m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1865m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1867m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1868m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1870m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1872m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1873m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1875m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1877m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1878m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1880m 974 0 0 0 0 0 34s 1003s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1882m 974 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1883m 974 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1885m 974 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1887m 974 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1888m 975 1 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1890m 975 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1892m 975 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1893m 975 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1895m 976 1 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1897m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1898m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1900m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1902m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1903m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1905m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1907m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1908m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1910m 976 0 0 0 0 0 34s 1002s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1912m 975 1 0 0 0 0 34s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1913m 975 0 0 0 0 0 34s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1915m 975 0 0 0 0 0 34s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1917m 975 0 0 0 0 0 34s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1918m 975 0 0 0 0 0 34s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1920m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1922m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1923m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1925m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1927m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1928m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1930m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1932m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1933m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1935m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1937m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1938m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1940m 975 0 0 0 0 0 35s 1001s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1942m 975 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1943m 975 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1945m 975 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1947m 975 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1948m 976 1 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1950m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1952m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1953m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1955m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1957m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1958m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1960m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1962m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1963m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1965m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1967m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1968m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1970m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1972m 976 0 0 0 0 0 35s 1000s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1973m 976 0 0 0 0 0 35s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1975m 976 0 0 0 0 0 35s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1977m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1978m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1980m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1982m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1983m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1985m 976 1 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1987m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1988m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1990m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1992m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1993m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1995m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1997m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 1998m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2000m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2002m 976 0 0 0 0 0 36s 999s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2003m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2005m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2007m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2008m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2010m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2012m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2013m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2015m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2017m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2018m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2020m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2022m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2023m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2025m 976 1 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2027m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2028m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2030m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2032m 976 0 0 0 0 0 36s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2033m 976 0 0 0 0 0 37s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2035m 976 0 0 0 0 0 37s 998s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2037m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2038m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2040m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2042m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2043m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2045m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2047m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2048m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2050m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2052m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2053m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2055m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2057m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2058m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2060m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2062m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2063m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2065m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2067m 976 0 0 0 0 0 37s 997s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2068m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2070m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2072m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2073m 976 1 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2075m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2077m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2078m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2080m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2082m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2083m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2085m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2087m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2088m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2090m 976 0 0 0 0 0 37s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2092m 976 0 0 0 0 0 38s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2093m 976 0 0 0 0 0 38s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2095m 976 0 0 0 0 0 38s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2097m 976 0 0 0 0 0 38s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2098m 976 0 0 0 0 0 38s 996s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2100m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2102m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2103m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2105m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2107m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2108m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2110m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2112m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2113m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2115m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2117m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2118m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2120m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2122m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2123m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2125m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2127m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2128m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2130m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2132m 976 0 0 0 0 0 38s 995s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2133m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2135m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2137m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2138m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2140m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2142m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2143m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2145m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2147m 976 0 0 0 0 0 38s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2148m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2150m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2152m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2153m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2155m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2157m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2158m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2160m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2162m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2163m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2165m 976 0 0 0 0 0 39s 994s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2167m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2168m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2170m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2172m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2173m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2175m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2177m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2178m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2180m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2182m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2183m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2185m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2187m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2188m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2190m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2192m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2193m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2195m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2197m 976 1 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2198m 976 0 0 0 0 0 39s 993s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2200m 976 0 0 0 0 0 39s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2202m 976 0 0 0 0 0 39s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2203m 976 0 0 0 0 0 39s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2205m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2207m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2208m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2210m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2212m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2213m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2215m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2217m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2218m 976 1 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2220m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2222m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2223m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2225m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2227m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2228m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2230m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2232m 976 0 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2233m 976 1 0 0 0 0 40s 992s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2235m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2237m 976 1 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2238m 976 1 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2240m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2242m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2243m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2245m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2247m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2248m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2250m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2252m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2253m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2255m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2257m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2258m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2260m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2262m 976 0 0 0 0 0 40s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2263m 976 0 0 0 0 0 41s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2265m 976 0 0 0 0 0 41s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2267m 976 0 0 0 0 0 41s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2268m 976 0 0 0 0 0 41s 991s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2270m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2272m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2273m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2275m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2277m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2278m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2280m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2282m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2283m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2285m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2287m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2288m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2290m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2292m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2293m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2295m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2297m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2298m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2300m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2302m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2303m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2305m 976 0 0 0 0 0 41s 990s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2307m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2308m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2310m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2312m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2313m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2315m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2317m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2318m 976 0 0 0 0 0 41s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2320m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2322m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2323m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2325m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2327m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2328m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2330m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2332m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2333m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2335m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2337m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2338m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2340m 976 0 0 0 0 0 42s 989s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2342m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2343m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2345m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2347m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2348m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2350m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2352m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2353m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2355m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2357m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2358m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2360m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2362m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2363m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2365m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2367m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2368m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2370m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2372m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2373m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2375m 976 0 0 0 0 0 42s 988s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2377m 976 0 0 0 0 0 42s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2378m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2380m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2382m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2383m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2385m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2387m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2388m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2390m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2392m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2393m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2395m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2397m 976 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2398m 974 2 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2400m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2402m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2403m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2405m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2407m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2408m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2410m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2412m 974 0 0 0 0 0 43s 987s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2413m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2415m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2417m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2418m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2420m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2422m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2423m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2425m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2427m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2428m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2430m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2432m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2433m 974 0 0 0 0 0 43s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2435m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2437m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2438m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2440m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2442m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2443m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2445m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2447m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2448m 974 0 0 0 0 0 44s 986s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2450m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2452m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2453m 974 1 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2455m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2457m 973 1 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2458m 973 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2460m 974 1 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2462m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2463m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2465m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2467m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2468m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2470m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2472m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2473m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2475m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2477m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2478m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2480m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2482m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2483m 974 0 0 0 0 0 44s 985s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2485m 974 0 0 0 0 0 44s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2487m 974 0 0 0 0 0 44s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2488m 974 0 0 0 0 0 44s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2490m 974 0 0 0 0 0 44s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2492m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2493m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2495m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2497m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2498m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2500m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2502m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2503m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2505m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2507m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2508m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2510m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2512m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2513m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2515m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2517m 974 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2518m 975 1 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2520m 975 0 0 0 0 0 45s 984s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2522m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2523m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2525m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2527m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2528m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2530m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2532m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2533m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2535m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2537m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2538m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2540m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2542m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2543m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2545m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2547m 975 0 0 0 0 0 45s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2548m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2550m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2552m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2553m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2555m 975 1 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2557m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2558m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2560m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2562m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2563m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2565m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2567m 975 0 0 0 0 0 46s 983s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2568m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2570m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2572m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2573m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2575m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2577m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2578m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2580m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2582m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2583m 975 2 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2585m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2587m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2588m 975 1 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2590m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2592m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2593m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2595m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2597m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2598m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2600m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2602m 975 0 0 0 0 0 46s 982s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2603m 975 0 0 0 0 0 46s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2605m 975 0 0 0 0 0 46s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2607m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2608m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2610m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2612m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2613m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2615m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2617m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2618m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2620m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2622m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2623m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2625m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2627m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2628m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2630m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2632m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2633m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2635m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2637m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2638m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2640m 975 0 0 0 0 0 47s 981s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2642m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2643m 975 1 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2645m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2647m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2648m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2650m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2652m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2653m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2655m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2657m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2658m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2660m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2662m 975 0 0 0 0 0 47s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2663m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2665m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2667m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2668m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2670m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2672m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2673m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2675m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2677m 975 0 0 0 0 0 48s 980s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2678m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2680m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2682m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2683m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2685m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2687m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2688m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2690m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2692m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2693m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2695m 975 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2697m 974 1 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2698m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2700m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2702m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2703m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2705m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2707m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2708m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2710m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2712m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2713m 974 1 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2715m 974 0 0 0 0 0 48s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2717m 974 0 0 0 0 0 48s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2718m 974 0 0 0 0 0 48s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2720m 974 0 0 0 0 0 48s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2722m 974 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2723m 974 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2725m 973 1 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2727m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2728m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2730m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2732m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2733m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2735m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2737m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2738m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2740m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2742m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2743m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2745m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2747m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2748m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2750m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2752m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2753m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2755m 973 0 0 0 0 0 49s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2757m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2758m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2760m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2762m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2763m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2765m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2767m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2768m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2770m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2772m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2773m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2775m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2777m 973 0 0 0 0 0 49s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2778m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2780m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2782m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2783m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2785m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2787m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2788m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2790m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2792m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2793m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2795m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2797m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2798m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2800m 973 0 0 0 0 0 50s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2802m 973 1 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2803m 973 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2805m 973 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2807m 973 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2808m 974 1 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2810m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2812m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2813m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2815m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2817m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2818m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2820m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2822m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2823m 974 0 0 0 0 0 50s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2825m 974 0 0 0 0 0 50s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2827m 974 0 0 0 0 0 51s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2828m 974 0 0 0 0 0 51s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2830m 974 0 0 0 0 0 51s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2832m 974 0 0 0 0 0 51s 979s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2833m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2835m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2837m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2838m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2840m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2842m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2843m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2845m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2847m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2848m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2850m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2852m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2853m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2855m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2857m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2858m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2860m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2862m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2863m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2865m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2867m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2868m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2870m 974 1 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2872m 974 0 0 0 0 0 51s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2873m 974 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2875m 974 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2877m 974 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2878m 974 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 1 2880m 974 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 0s 985 0 0 0 0 0 51s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 100s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 200s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 300s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 400s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 500s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 600s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 700s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 800s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 900s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1000s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1100s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1200s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1300s 985 0 0 0 0 0 52s 978s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1400s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1500s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1600s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1700s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1800s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1900s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2000s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2100s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2200s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2300s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2400s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2500s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2600s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2700s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2800s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2900s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3000s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3100s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3200s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3300s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3400s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3500s 985 0 0 0 0 0 52s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3600s 985 0 0 0 0 0 53s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3700s 985 0 0 0 0 0 53s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3800s 985 0 0 0 0 0 53s 977s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 3900s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4000s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4100s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4200s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4300s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4400s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4500s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4600s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4700s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4800s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 4900s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5000s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5100s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5200s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5300s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5400s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5500s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5600s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5700s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5800s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 5900s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6000s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6100s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6200s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6300s 985 0 0 0 0 0 53s 976s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6400s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6500s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6600s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6700s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6800s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 6900s 985 0 0 0 0 0 53s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7000s 985 1 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7100s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7200s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7300s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7400s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7500s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7600s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7700s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7800s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 7900s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8000s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8100s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8200s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8300s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8400s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8500s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8600s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8700s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8800s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 8900s 985 0 0 0 0 0 54s 975s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9000s 984 1 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9100s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9200s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9300s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9400s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9500s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9600s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9700s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9800s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 9900s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10000s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10100s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10200s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10300s 984 0 0 0 0 0 54s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10400s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10500s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10600s 984 1 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10700s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10800s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 10900s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11000s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11100s 984 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11200s 985 1 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11300s 985 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11400s 985 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11500s 985 0 0 0 0 0 55s 974s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11600s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11700s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11800s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 11900s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12000s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12100s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12200s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12300s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12400s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12500s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12600s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12700s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12800s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 12900s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13000s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13100s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13200s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13300s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13400s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13500s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13600s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13700s 985 0 0 0 0 0 55s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13800s 985 0 0 0 0 0 56s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 13900s 985 0 0 0 0 0 56s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14000s 985 0 0 0 0 0 56s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14100s 985 0 0 0 0 0 56s 973s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14200s 985 1 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14300s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14400s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14500s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14600s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14700s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14800s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 14900s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15000s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15100s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15200s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15300s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15400s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15500s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15600s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15700s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15800s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 15900s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16000s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16100s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16200s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16300s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16400s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16500s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16600s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16700s 985 0 0 0 0 0 56s 972s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16800s 985 0 0 0 0 0 56s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 16900s 985 0 0 0 0 0 56s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17000s 985 0 0 0 0 0 56s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17100s 985 0 0 0 0 0 56s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17200s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17300s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17400s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17500s 985 1 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17600s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17700s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17800s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 17900s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18000s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18100s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18200s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18300s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18400s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18500s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18600s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18700s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18800s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 18900s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19000s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19100s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19200s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19300s 985 0 0 0 0 0 57s 971s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19400s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19500s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19600s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19700s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19800s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 19900s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20000s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20100s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20200s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20300s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20400s 985 1 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20500s 985 0 0 0 0 0 57s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20600s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20700s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20800s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 20900s 985 1 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21000s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21100s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21200s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21300s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21400s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21500s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21600s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21700s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21800s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 21900s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22000s 985 0 0 0 0 0 58s 970s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22100s 984 1 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22200s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22300s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22400s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22500s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22600s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22700s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22800s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 22900s 984 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23000s 983 1 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23100s 982 1 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23200s 982 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23300s 982 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23400s 982 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23500s 981 1 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23600s 981 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23700s 981 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23800s 981 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 23900s 981 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24000s 981 0 0 0 0 0 58s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24100s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24200s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24300s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24400s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24500s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24600s 981 1 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24700s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24800s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 24900s 981 1 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25000s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25100s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25200s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25300s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25400s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25500s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25600s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25700s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25800s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 25900s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26000s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26100s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26200s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26300s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26400s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26500s 981 0 0 0 0 0 59s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26600s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26700s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26800s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 26900s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27000s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27100s 981 0 0 0 0 0 59s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27200s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27300s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27400s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27500s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27600s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27700s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27800s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 27900s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28000s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28100s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28200s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28300s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28400s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28500s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28600s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28700s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28800s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 28900s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29000s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29100s 981 0 0 0 0 0 60s 969s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29200s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29300s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29400s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29500s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29600s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29700s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29800s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 29900s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30000s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30100s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30200s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30300s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30400s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30500s 981 0 0 0 0 0 60s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30600s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30700s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30800s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 30900s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31000s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31100s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31200s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31300s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31400s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31500s 981 0 0 0 0 0 61s 968s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31600s 981 1 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31700s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31800s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 31900s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32000s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32100s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32200s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32300s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32400s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32500s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32600s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32700s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32800s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 32900s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33000s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33100s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33200s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33300s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33400s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33500s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33600s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33700s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33800s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 33900s 981 0 0 0 0 0 61s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34000s 981 0 0 0 0 0 62s 967s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34100s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34200s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34300s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34400s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34500s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34600s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34700s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34800s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 34900s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35000s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35100s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35200s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35300s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35400s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35500s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35600s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35700s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35800s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 35900s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36000s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36100s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36200s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36300s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36400s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36500s 981 0 0 0 0 0 62s 966s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36600s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36700s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36800s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 36900s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37000s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37100s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37200s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37300s 981 0 0 0 0 0 62s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37400s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37500s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37600s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37700s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37800s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 37900s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38000s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38100s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38200s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38300s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38400s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38500s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38600s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38700s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38800s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 38900s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39000s 981 0 0 0 0 0 63s 965s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39100s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39200s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39300s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39400s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39500s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39600s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39700s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39800s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 39900s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40000s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40100s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40200s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40300s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40400s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40500s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40600s 981 1 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40700s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40800s 981 0 0 0 0 0 63s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 40900s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41000s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41100s 981 1 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41200s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41300s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41400s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41500s 981 0 0 0 0 0 64s 964s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41600s 981 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41700s 981 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41800s 980 1 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 41900s 979 1 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42000s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42100s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42200s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42300s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42400s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42500s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42600s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42700s 979 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42800s 978 1 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 42900s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43000s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43100s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43200s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43300s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43400s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43500s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43600s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43700s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43800s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 43900s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44000s 978 0 0 0 0 0 64s 963s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44100s 978 0 0 0 0 0 64s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44200s 978 0 0 0 0 0 64s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44300s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44400s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44500s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44600s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44700s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44800s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 44900s 978 1 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45000s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45100s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45200s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45300s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45400s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45500s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45600s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45700s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45800s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 45900s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46000s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46100s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46200s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46300s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46400s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46500s 978 0 0 0 0 0 65s 962s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46600s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46700s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46800s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 46900s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47000s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47100s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47200s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47300s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47400s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47500s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47600s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47700s 978 0 0 0 0 0 65s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47800s 978 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 47900s 977 1 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48000s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48100s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48200s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48300s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48400s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48500s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48600s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48700s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48800s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 48900s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49000s 977 0 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49100s 976 1 0 0 0 0 66s 961s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49200s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49300s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49400s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49500s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49600s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49700s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49800s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 49900s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50000s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50100s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50200s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50300s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50400s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50500s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50600s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50700s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50800s 976 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 50900s 975 1 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51000s 975 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51100s 975 0 0 0 0 0 66s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51200s 975 1 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51300s 975 0 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51400s 975 0 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51500s 975 0 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51600s 975 0 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51700s 975 0 0 0 0 0 67s 960s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51800s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 51900s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52000s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52100s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52200s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52300s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52400s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52500s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52600s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52700s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52800s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 52900s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53000s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53100s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53200s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53300s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53400s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53500s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53600s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53700s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53800s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 53900s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54000s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54100s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54200s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54300s 975 0 0 0 0 0 67s 959s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54400s 975 0 0 0 0 0 67s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54500s 975 0 0 0 0 0 67s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54600s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54700s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54800s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 54900s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55000s 975 1 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55100s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55200s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55300s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55400s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55500s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55600s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55700s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55800s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 55900s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56000s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56100s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56200s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56300s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56400s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56500s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56600s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56700s 975 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56800s 974 1 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 56900s 974 0 0 0 0 0 68s 958s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57000s 974 1 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57100s 974 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57200s 974 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57300s 974 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57400s 973 1 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57500s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57600s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57700s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57800s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 57900s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58000s 973 0 0 0 0 0 68s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58100s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58200s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58300s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58400s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58500s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58600s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58700s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58800s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 58900s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59000s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59100s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59200s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59300s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59400s 973 0 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59500s 973 1 0 0 0 0 69s 957s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59600s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59700s 973 1 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59800s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 59900s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60000s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60100s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60200s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60300s 973 1 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60400s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60500s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60600s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60700s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60800s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 60900s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61000s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61100s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61200s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61300s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61400s 973 0 0 0 0 0 69s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61500s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61600s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61700s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61800s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 61900s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62000s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62100s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62200s 973 0 0 0 0 0 70s 956s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62300s 973 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62400s 973 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62500s 973 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62600s 972 1 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62700s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62800s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 62900s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63000s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63100s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63200s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63300s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63400s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63500s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63600s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63700s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63800s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 63900s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64000s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64100s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64200s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64300s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64400s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64500s 972 1 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64600s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64700s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64800s 972 0 0 0 0 0 70s 955s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 64900s 972 0 0 0 0 0 70s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65000s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65100s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65200s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65300s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65400s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65500s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65600s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65700s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65800s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 65900s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66000s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66100s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66200s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66300s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66400s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66500s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66600s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66700s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66800s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 66900s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67000s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67100s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67200s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67300s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67400s 972 0 0 0 0 0 71s 954s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67500s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67600s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67700s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67800s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 67900s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68000s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68100s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68200s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68300s 972 0 0 0 0 0 71s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68400s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68500s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68600s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68700s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68800s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 68900s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69000s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69100s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69200s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69300s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69400s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69500s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69600s 972 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69700s 971 1 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69800s 971 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 69900s 971 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70000s 971 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70100s 971 0 0 0 0 0 72s 953s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70200s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70300s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70400s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70500s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70600s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70700s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70800s 971 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 70900s 970 1 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71000s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71100s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71200s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71300s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71400s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71500s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71600s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71700s 970 0 0 0 0 0 72s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71800s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 71900s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72000s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72100s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72200s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72300s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72400s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72500s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72600s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72700s 970 0 0 0 0 0 73s 952s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72800s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 72900s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73000s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73100s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73200s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73300s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73400s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73500s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73600s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73700s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73800s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 73900s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74000s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74100s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74200s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74300s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74400s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74500s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74600s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74700s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74800s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 74900s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75000s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75100s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75200s 970 0 0 0 0 0 73s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75300s 970 0 0 0 0 0 74s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75400s 970 0 0 0 0 0 74s 951s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75500s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75600s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75700s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75800s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 75900s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76000s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76100s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76200s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76300s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76400s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76500s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76600s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76700s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76800s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 76900s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77000s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77100s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77200s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77300s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77400s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77500s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77600s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77700s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77800s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 77900s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78000s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78100s 970 0 0 0 0 0 74s 950s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78200s 970 0 0 0 0 0 74s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78300s 970 0 0 0 0 0 74s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78400s 970 0 0 0 0 0 74s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78500s 970 0 0 0 0 0 74s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78600s 970 0 0 0 0 0 74s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78700s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78800s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 78900s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79000s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79100s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79200s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79300s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79400s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79500s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79600s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79700s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79800s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 79900s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80000s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80100s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80200s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80300s 970 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80400s 969 1 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80500s 969 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80600s 969 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80700s 969 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80800s 969 0 0 0 0 0 75s 949s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 80900s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81000s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81100s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81200s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81300s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81400s 969 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81500s 968 2 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81600s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81700s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81800s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 81900s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82000s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82100s 968 0 0 0 0 0 75s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82200s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82300s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82400s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82500s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82600s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82700s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82800s 968 1 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 82900s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83000s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83100s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83200s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83300s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83400s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83500s 968 0 0 0 0 0 76s 948s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83600s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83700s 969 1 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83800s 969 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 83900s 969 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84000s 969 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84100s 968 1 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84200s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84300s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84400s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84500s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84600s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84700s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84800s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 84900s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85000s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85100s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85200s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85300s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85400s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85500s 968 0 0 0 0 0 76s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85600s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85700s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85800s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 85900s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86000s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86100s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86200s 968 0 0 0 0 0 77s 947s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86300s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86400s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86500s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86600s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86700s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86800s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 86900s 968 1 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87000s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87100s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87200s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87300s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87400s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87500s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87600s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87700s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87800s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 87900s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88000s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88100s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88200s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88300s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88400s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88500s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88600s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88700s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88800s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 88900s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89000s 968 0 0 0 0 0 77s 946s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89100s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89200s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89300s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89400s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89500s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89600s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89700s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89800s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 89900s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90000s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90100s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90200s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90300s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90400s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90500s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90600s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90700s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90800s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 90900s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91000s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91100s 968 1 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91200s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91300s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91400s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91500s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91600s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91700s 968 0 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91800s 967 1 0 0 0 0 78s 945s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 91900s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92000s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92100s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92200s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92300s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92400s 967 0 0 0 0 0 78s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92500s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92600s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92700s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92800s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 92900s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93000s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93100s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93200s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93300s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93400s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93500s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93600s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93700s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93800s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 93900s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94000s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94100s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94200s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94300s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94400s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94500s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94600s 967 0 0 0 0 0 79s 944s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94700s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94800s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 94900s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95000s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95100s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95200s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95300s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95400s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95500s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95600s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95700s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95800s 967 0 0 0 0 0 79s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 95900s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96000s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96100s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96200s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96300s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96400s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96500s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96600s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96700s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96800s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 96900s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97000s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97100s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97200s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97300s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97400s 967 0 0 0 0 0 80s 943s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97500s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97600s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97700s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97800s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 97900s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98000s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98100s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98200s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98300s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98400s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98500s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98600s 967 1 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98700s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98800s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 98900s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99000s 967 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99100s 966 1 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99200s 966 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99300s 966 0 0 0 0 0 80s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99400s 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99500s 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99600s 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99700s 966 1 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99800s 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 99900s 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1667m 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1668m 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1670m 966 0 0 0 0 0 81s 942s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1672m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1673m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1675m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1677m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1678m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1680m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1682m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1683m 966 1 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1685m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1687m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1688m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1690m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1692m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1693m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1695m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1697m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1698m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1700m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1702m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1703m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1705m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1707m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1708m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1710m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1712m 966 0 0 0 0 0 81s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1713m 966 0 0 0 0 0 82s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1715m 966 0 0 0 0 0 82s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1717m 966 1 0 0 0 0 82s 941s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1718m 966 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1720m 966 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1722m 966 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1723m 966 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1725m 965 1 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1727m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1728m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1730m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1732m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1733m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1735m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1737m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1738m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1740m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1742m 965 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1743m 964 1 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1745m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1747m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1748m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1750m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1752m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1753m 964 1 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1755m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1757m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1758m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1760m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1762m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1763m 964 0 0 0 0 0 82s 940s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1765m 964 0 0 0 0 0 82s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1767m 964 0 0 0 0 0 82s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1768m 964 0 0 0 0 0 82s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1770m 964 0 0 0 0 0 82s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1772m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1773m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1775m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1777m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1778m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1780m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1782m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1783m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1785m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1787m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1788m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1790m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1792m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1793m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1795m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1797m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1798m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1800m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1802m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1803m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1805m 964 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1807m 963 1 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1808m 963 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1810m 963 0 0 0 0 0 83s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1812m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1813m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1815m 963 1 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1817m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1818m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1820m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1822m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1823m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1825m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1827m 963 0 0 0 0 0 83s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1828m 963 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1830m 963 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1832m 963 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1833m 963 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1835m 963 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1837m 962 1 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1838m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1840m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1842m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1843m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1845m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1847m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1848m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1850m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1852m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1853m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1855m 962 0 0 0 0 0 84s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1857m 961 1 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1858m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1860m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1862m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1863m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1865m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1867m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1868m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1870m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1872m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1873m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1875m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1877m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1878m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1880m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1882m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1883m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1885m 961 0 0 0 0 0 84s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1887m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1888m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1890m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1892m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1893m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1895m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1897m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1898m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1900m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1902m 961 0 0 0 0 0 85s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1903m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1905m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1907m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1908m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1910m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1912m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1913m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1915m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1917m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1918m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1920m 961 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1922m 960 1 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1923m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1925m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1927m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1928m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1930m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1932m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1933m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1935m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1937m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1938m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1940m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1942m 960 0 0 0 0 0 85s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1943m 960 0 0 0 0 0 86s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1945m 960 0 0 0 0 0 86s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1947m 960 0 0 0 0 0 86s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1948m 960 0 0 0 0 0 86s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1950m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1952m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1953m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1955m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1957m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1958m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1960m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1962m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1963m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1965m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1967m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1968m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1970m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1972m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1973m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1975m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1977m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1978m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1980m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1982m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1983m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1985m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1987m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1988m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1990m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1992m 960 0 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1993m 960 1 0 0 0 0 86s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1995m 960 0 0 0 0 0 86s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1997m 960 0 0 0 0 0 86s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 1998m 960 0 0 0 0 0 86s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2000m 960 1 0 0 0 0 86s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2002m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2003m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2005m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2007m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2008m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2010m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2012m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2013m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2015m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2017m 960 1 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2018m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2020m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2022m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2023m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2025m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2027m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2028m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2030m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2032m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2033m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2035m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2037m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2038m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2040m 960 0 0 0 0 0 87s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2042m 960 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2043m 959 1 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2045m 959 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2047m 958 2 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2048m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2050m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2052m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2053m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2055m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2057m 958 0 0 0 0 0 87s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2058m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2060m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2062m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2063m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2065m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2067m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2068m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2070m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2072m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2073m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2075m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2077m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2078m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2080m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2082m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2083m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2085m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2087m 958 0 0 0 0 0 88s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2088m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2090m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2092m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2093m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2095m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2097m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2098m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2100m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2102m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2103m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2105m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2107m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2108m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2110m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2112m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2113m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2115m 958 0 0 0 0 0 88s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2117m 958 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2118m 958 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2120m 958 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2122m 958 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2123m 958 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2125m 957 1 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2127m 957 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2128m 957 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2130m 957 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2132m 957 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2133m 957 0 0 0 0 0 89s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2135m 955 2 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2137m 955 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2138m 955 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2140m 954 1 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2142m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2143m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2145m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2147m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2148m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2150m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2152m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2153m 954 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2155m 953 1 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2157m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2158m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2160m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2162m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2163m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2165m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2167m 953 1 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2168m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2170m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2172m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2173m 953 0 0 0 0 0 89s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2175m 953 0 0 0 0 0 90s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2177m 953 0 0 0 0 0 90s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2178m 953 0 0 0 0 0 90s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2180m 953 0 0 0 0 0 90s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2182m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2183m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2185m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2187m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2188m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2190m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2192m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2193m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2195m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2197m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2198m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2200m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2202m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2203m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2205m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2207m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2208m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2210m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2212m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2213m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2215m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2217m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2218m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2220m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2222m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2223m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2225m 953 0 0 0 0 0 90s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2227m 953 0 0 0 0 0 90s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2228m 953 0 0 0 0 0 90s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2230m 953 0 0 0 0 0 90s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2232m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2233m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2235m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2237m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2238m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2240m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2242m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2243m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2245m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2247m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2248m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2250m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2252m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2253m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2255m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2257m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2258m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2260m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2262m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2263m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2265m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2267m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2268m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2270m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2272m 953 0 0 0 0 0 91s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2273m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2275m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2277m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2278m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2280m 953 1 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2282m 953 1 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2283m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2285m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2287m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2288m 953 0 0 0 0 0 91s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2290m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2292m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2293m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2295m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2297m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2298m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2300m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2302m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2303m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2305m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2307m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2308m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2310m 953 1 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2312m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2313m 953 1 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2315m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2317m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2318m 953 0 0 0 0 0 92s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2320m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2322m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2323m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2325m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2327m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2328m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2330m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2332m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2333m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2335m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2337m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2338m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2340m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2342m 953 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2343m 952 1 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2345m 952 0 0 0 0 0 92s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2347m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2348m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2350m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2352m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2353m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2355m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2357m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2358m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2360m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2362m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2363m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2365m 952 0 0 0 0 0 93s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2367m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2368m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2370m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2372m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2373m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2375m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2377m 953 1 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2378m 953 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2380m 953 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2382m 953 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2383m 953 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2385m 952 1 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2387m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2388m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2390m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2392m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2393m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2395m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2397m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2398m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2400m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2402m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2403m 952 0 0 0 0 0 93s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2405m 952 0 0 0 0 0 94s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2407m 952 0 0 0 0 0 94s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2408m 952 0 0 0 0 0 94s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2410m 952 0 0 0 0 0 94s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2412m 952 1 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2413m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2415m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2417m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2418m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2420m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2422m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2423m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2425m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2427m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2428m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2430m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2432m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2433m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2435m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2437m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2438m 952 1 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2440m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2442m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2443m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2445m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2447m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2448m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2450m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2452m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2453m 952 1 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2455m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2457m 952 0 0 0 0 0 94s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2458m 952 0 0 0 0 0 94s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2460m 952 0 0 0 0 0 94s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2462m 952 0 0 0 0 0 94s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2463m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2465m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2467m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2468m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2470m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2472m 952 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2473m 953 1 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2475m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2477m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2478m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2480m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2482m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2483m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2485m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2487m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2488m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2490m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2492m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2493m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2495m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2497m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2498m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2500m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2502m 953 0 0 0 0 0 95s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2503m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2505m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2507m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2508m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2510m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2512m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2513m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2515m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2517m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2518m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2520m 953 0 0 0 0 0 95s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2522m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2523m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2525m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2527m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2528m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2530m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2532m 953 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2533m 952 1 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2535m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2537m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2538m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2540m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2542m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2543m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2545m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2547m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2548m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2550m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2552m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2553m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2555m 952 0 0 0 0 0 96s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2557m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2558m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2560m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2562m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2563m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2565m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2567m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2568m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2570m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2572m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2573m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2575m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2577m 952 0 0 0 0 0 96s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2578m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2580m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2582m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2583m 952 1 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2585m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2587m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2588m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2590m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2592m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2593m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2595m 952 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2597m 951 1 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2598m 951 0 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2600m 950 1 0 0 0 0 97s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2602m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2603m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2605m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2607m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2608m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2610m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2612m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2613m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2615m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2617m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2618m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2620m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2622m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2623m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2625m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2627m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2628m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2630m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2632m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2633m 950 0 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2635m 949 1 0 0 0 0 97s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2637m 949 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2638m 949 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2640m 949 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2642m 949 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2643m 949 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2645m 948 1 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2647m 948 0 0 0 0 0 98s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2648m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2650m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2652m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2653m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2655m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2657m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2658m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2660m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2662m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2663m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2665m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2667m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2668m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2670m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2672m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2673m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2675m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2677m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2678m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2680m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2682m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2683m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2685m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2687m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2688m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2690m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2692m 948 0 0 0 0 0 98s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2693m 948 0 0 0 0 0 98s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2695m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2697m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2698m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2700m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2702m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2703m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2705m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2707m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2708m 948 1 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2710m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2712m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2713m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2715m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2717m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2718m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2720m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2722m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2723m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2725m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2727m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2728m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2730m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2732m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2733m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2735m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2737m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2738m 948 0 0 0 0 0 99s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2740m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2742m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2743m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2745m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2747m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2748m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2750m 948 0 0 0 0 0 99s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2752m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2753m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2755m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2757m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2758m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2760m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2762m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2763m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2765m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2767m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2768m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2770m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2772m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2773m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2775m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2777m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2778m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2780m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2782m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2783m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2785m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2787m 948 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2788m 948 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2790m 948 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2792m 947 1 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2793m 947 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2795m 945 2 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2797m 945 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2798m 945 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2800m 945 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2802m 945 0 0 0 0 0 100s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2803m 945 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2805m 945 0 0 0 0 0 100s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2807m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2808m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2810m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2812m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2813m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2815m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2817m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2818m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2820m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2822m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2823m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2825m 945 1 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2827m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2828m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2830m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2832m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2833m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2835m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2837m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2838m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2840m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2842m 945 1 0 0 0 0 101s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2843m 945 0 0 0 0 0 101s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2845m 945 0 0 0 0 0 101s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2847m 945 0 0 0 0 0 101s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2848m 945 0 0 0 0 0 101s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2850m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2852m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2853m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2855m 945 0 0 0 0 0 101s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2857m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2858m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2860m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2862m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2863m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2865m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2867m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2868m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2870m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2872m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2873m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2875m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2877m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2878m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 2 2880m 945 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 0s 1010 0 0 0 0 0 102s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 100s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 200s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 300s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 400s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 500s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 600s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 700s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 800s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 900s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1000s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1100s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1200s 1010 0 0 0 0 0 102s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1300s 1010 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1400s 1010 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1500s 1009 1 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1600s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1700s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1800s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1900s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2000s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2100s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2200s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2300s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2400s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2500s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2600s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2700s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2800s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2900s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3000s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3100s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3200s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3300s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3400s 1009 1 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3500s 1009 0 0 0 0 0 103s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3600s 1009 0 0 0 0 0 103s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3700s 1009 0 0 0 0 0 103s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3800s 1009 0 0 0 0 0 103s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 3900s 1009 0 0 0 0 0 103s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4000s 1009 0 0 0 0 0 103s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4100s 1009 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4200s 1009 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4300s 1008 1 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4400s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4500s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4600s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4700s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4800s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 4900s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5000s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5100s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5200s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5300s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5400s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5500s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5600s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5700s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5800s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 5900s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6000s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6100s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6200s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6300s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6400s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6500s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6600s 1008 0 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6700s 1007 1 0 0 0 0 104s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6800s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 6900s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7000s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7100s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7200s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7300s 1007 0 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7400s 1006 1 0 0 0 0 105s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7500s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7600s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7700s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7800s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 7900s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8000s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8100s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8200s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8300s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8400s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8500s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8600s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8700s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8800s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 8900s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9000s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9100s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9200s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9300s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9400s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9500s 1006 0 0 0 0 0 105s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9600s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9700s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9800s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 9900s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10000s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10100s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10200s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10300s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10400s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10500s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10600s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10700s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10800s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 10900s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11000s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11100s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11200s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11300s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11400s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11500s 1006 0 0 0 0 0 106s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11600s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11700s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11800s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 11900s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12000s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12100s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12200s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12300s 1006 0 0 0 0 0 106s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12400s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12500s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12600s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12700s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12800s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 12900s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13000s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13100s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13200s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13300s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13400s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13500s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13600s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13700s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13800s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 13900s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14000s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14100s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14200s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14300s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14400s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14500s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14600s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14700s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14800s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 14900s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15000s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15100s 1006 0 0 0 0 0 107s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15200s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15300s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15400s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15500s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15600s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15700s 1006 0 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15800s 1006 1 0 0 0 0 108s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 15900s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16000s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16100s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16200s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16300s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16400s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16500s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16600s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16700s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16800s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 16900s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17000s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17100s 1006 1 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17200s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17300s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17400s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17500s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17600s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17700s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17800s 1006 0 0 0 0 0 108s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 17900s 1006 0 0 0 0 0 109s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18000s 1006 0 0 0 0 0 109s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18100s 1006 0 0 0 0 0 109s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18200s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18300s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18400s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18500s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18600s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18700s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18800s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 18900s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19000s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19100s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19200s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19300s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19400s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19500s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19600s 1006 1 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19700s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19800s 1006 0 0 0 0 0 109s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 19900s 1006 0 0 0 0 0 109s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20000s 1006 0 0 0 0 0 109s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20100s 1006 0 0 0 0 0 109s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20200s 1005 1 0 0 0 0 109s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20300s 1005 1 0 0 0 0 109s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20400s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20500s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20600s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20700s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20800s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 20900s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21000s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21100s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21200s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21300s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21400s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21500s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21600s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21700s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21800s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 21900s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22000s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22100s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22200s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22300s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22400s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22500s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22600s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22700s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22800s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 22900s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23000s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23100s 1005 0 0 0 0 0 110s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23200s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23300s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23400s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23500s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23600s 1005 1 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23700s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23800s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 23900s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24000s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24100s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24200s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24300s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24400s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24500s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24600s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24700s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24800s 1005 0 0 0 0 0 111s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 24900s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25000s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25100s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25200s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25300s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25400s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25500s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25600s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25700s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25800s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 25900s 1005 0 0 0 0 0 111s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26000s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26100s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26200s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26300s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26400s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26500s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26600s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26700s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26800s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 26900s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27000s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27100s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27200s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27300s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27400s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27500s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27600s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27700s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27800s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 27900s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28000s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28100s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28200s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28300s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28400s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28500s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28600s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28700s 1005 0 0 0 0 0 112s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28800s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 28900s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29000s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29100s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29200s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29300s 1005 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29400s 1004 1 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29500s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29600s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29700s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29800s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 29900s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30000s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30100s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30200s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30300s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30400s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30500s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30600s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30700s 1004 0 0 0 0 0 113s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30800s 1004 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 30900s 1004 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31000s 1004 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31100s 1004 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31200s 1003 1 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31300s 1003 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31400s 1003 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31500s 1003 0 0 0 0 0 113s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31600s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31700s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31800s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 31900s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32000s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32100s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32200s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32300s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32400s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32500s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32600s 1003 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32700s 1004 1 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32800s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 32900s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33000s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33100s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33200s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33300s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33400s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33500s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33600s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33700s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33800s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 33900s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34000s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34100s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34200s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34300s 1004 0 0 0 0 0 114s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34400s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34500s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34600s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34700s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34800s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 34900s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35000s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35100s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35200s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35300s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35400s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35500s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35600s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35700s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35800s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 35900s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36000s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36100s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36200s 1004 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36300s 1003 1 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36400s 1003 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36500s 1003 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36600s 1003 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36700s 1003 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36800s 1002 1 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 36900s 1001 1 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37000s 1001 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37100s 1001 0 0 0 0 0 115s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37200s 1001 0 0 0 0 0 116s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37300s 1001 0 0 0 0 0 116s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37400s 1001 0 0 0 0 0 116s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37500s 1001 0 0 0 0 0 116s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37600s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37700s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37800s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 37900s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38000s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38100s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38200s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38300s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38400s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38500s 1001 1 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38600s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38700s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38800s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 38900s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39000s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39100s 1001 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39200s 1000 1 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39300s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39400s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39500s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39600s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39700s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39800s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 39900s 1000 0 0 0 0 0 116s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40000s 1000 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40100s 1000 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40200s 1000 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40300s 1000 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40400s 1000 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40500s 999 1 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40600s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40700s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40800s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 40900s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41000s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41100s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41200s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41300s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41400s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41500s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41600s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41700s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41800s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 41900s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42000s 999 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42100s 998 1 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42200s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42300s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42400s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42500s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42600s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42700s 998 0 0 0 0 0 117s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42800s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 42900s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43000s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43100s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43200s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43300s 998 0 0 0 0 0 118s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43400s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43500s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43600s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43700s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43800s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 43900s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44000s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44100s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44200s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44300s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44400s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44500s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44600s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44700s 998 1 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44800s 998 0 0 0 0 0 118s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 44900s 998 0 0 0 0 0 118s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45000s 998 0 0 0 0 0 118s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45100s 998 0 0 0 0 0 118s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45200s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45300s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45400s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45500s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45600s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45700s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45800s 998 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 45900s 997 1 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46000s 997 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46100s 997 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46200s 997 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46300s 997 0 0 0 0 0 119s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46400s 997 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46500s 997 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46600s 997 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46700s 996 1 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46800s 996 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 46900s 996 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47000s 996 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47100s 996 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47200s 995 1 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47300s 995 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47400s 995 0 0 0 0 0 119s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47500s 995 0 0 0 0 0 120s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47600s 995 0 0 0 0 0 120s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47700s 995 0 0 0 0 0 120s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47800s 995 0 0 0 0 0 120s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 47900s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48000s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48100s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48200s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48300s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48400s 995 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48500s 996 1 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48600s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48700s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48800s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 48900s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49000s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49100s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49200s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49300s 996 0 0 0 0 0 120s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49400s 996 0 0 0 0 0 120s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49500s 996 0 0 0 0 0 120s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49600s 996 0 0 0 0 0 120s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49700s 996 0 0 0 0 0 120s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49800s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 49900s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50000s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50100s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50200s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50300s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50400s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50500s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50600s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50700s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50800s 996 0 0 0 0 0 121s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 50900s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51000s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51100s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51200s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51300s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51400s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51500s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51600s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51700s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51800s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 51900s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52000s 996 1 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52100s 996 0 0 0 0 0 121s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52200s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52300s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52400s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52500s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52600s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52700s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52800s 996 0 0 0 0 0 122s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 52900s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53000s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53100s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53200s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53300s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53400s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53500s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53600s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53700s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53800s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 53900s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54000s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54100s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54200s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54300s 996 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54400s 995 1 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54500s 994 1 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54600s 994 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54700s 994 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54800s 994 0 0 0 0 0 122s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 54900s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55000s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55100s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55200s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55300s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55400s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55500s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55600s 994 1 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55700s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55800s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 55900s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56000s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56100s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56200s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56300s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56400s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56500s 994 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56600s 993 1 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56700s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56800s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 56900s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57000s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57100s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57200s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57300s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57400s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57500s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57600s 993 0 0 0 0 0 123s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57700s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57800s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 57900s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58000s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58100s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58200s 993 1 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58300s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58400s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58500s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58600s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58700s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58800s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 58900s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59000s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59100s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59200s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59300s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59400s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59500s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59600s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59700s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59800s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 59900s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60000s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60100s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60200s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60300s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60400s 993 0 0 0 0 0 124s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60500s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60600s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60700s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60800s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 60900s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61000s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61100s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61200s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61300s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61400s 993 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61500s 992 1 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61600s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61700s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61800s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 61900s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62000s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62100s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62200s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62300s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62400s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62500s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62600s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62700s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62800s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 62900s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63000s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63100s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63200s 992 0 0 0 0 0 125s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63300s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63400s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63500s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63600s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63700s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63800s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 63900s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64000s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64100s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64200s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64300s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64400s 992 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64500s 991 1 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64600s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64700s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64800s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 64900s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65000s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65100s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65200s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65300s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65400s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65500s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65600s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65700s 991 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65800s 990 1 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 65900s 990 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66000s 990 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66100s 990 0 0 0 0 0 126s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66200s 990 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66300s 990 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66400s 990 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66500s 991 1 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66600s 991 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66700s 991 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66800s 991 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 66900s 991 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67000s 991 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67100s 992 1 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67200s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67300s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67400s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67500s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67600s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67700s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67800s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 67900s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68000s 992 0 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68100s 991 1 0 0 0 0 127s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68200s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68300s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68400s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68500s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68600s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68700s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68800s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 68900s 991 0 0 0 0 0 127s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69000s 991 1 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69100s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69200s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69300s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69400s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69500s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69600s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69700s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69800s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 69900s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70000s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70100s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70200s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70300s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70400s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70500s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70600s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70700s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70800s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 70900s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71000s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71100s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71200s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71300s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71400s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71500s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71600s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71700s 991 0 0 0 0 0 128s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71800s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 71900s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72000s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72100s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72200s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72300s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72400s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72500s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72600s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72700s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72800s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 72900s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73000s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73100s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73200s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73300s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73400s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73500s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73600s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73700s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73800s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 73900s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74000s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74100s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74200s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74300s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74400s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74500s 991 0 0 0 0 0 129s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74600s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74700s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74800s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 74900s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75000s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75100s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75200s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75300s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75400s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75500s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75600s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75700s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75800s 991 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 75900s 989 2 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76000s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76100s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76200s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76300s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76400s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76500s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76600s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76700s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76800s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 76900s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77000s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77100s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77200s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77300s 989 0 0 0 0 0 130s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77400s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77500s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77600s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77700s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77800s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 77900s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78000s 989 1 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78100s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78200s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78300s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78400s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78500s 989 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78600s 990 1 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78700s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78800s 990 1 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 78900s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79000s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79100s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79200s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79300s 990 1 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79400s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79500s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79600s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79700s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79800s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 79900s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80000s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80100s 990 0 0 0 0 0 131s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80200s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80300s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80400s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80500s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80600s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80700s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80800s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 80900s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81000s 990 2 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81100s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81200s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81300s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81400s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81500s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81600s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81700s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81800s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 81900s 990 1 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82000s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82100s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82200s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82300s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82400s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82500s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82600s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82700s 990 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82800s 989 1 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 82900s 989 0 0 0 0 0 132s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83000s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83100s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83200s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83300s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83400s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83500s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83600s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83700s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83800s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 83900s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84000s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84100s 989 1 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84200s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84300s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84400s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84500s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84600s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84700s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84800s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 84900s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85000s 989 1 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85100s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85200s 989 1 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85300s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85400s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85500s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85600s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85700s 989 0 0 0 0 0 133s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85800s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 85900s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86000s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86100s 989 1 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86200s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86300s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86400s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86500s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86600s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86700s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86800s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 86900s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87000s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87100s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87200s 989 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87300s 988 1 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87400s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87500s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87600s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87700s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87800s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 87900s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88000s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88100s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88200s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88300s 988 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88400s 987 1 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88500s 987 0 0 0 0 0 134s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88600s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88700s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88800s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 88900s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89000s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89100s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89200s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89300s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89400s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89500s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89600s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89700s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89800s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 89900s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90000s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90100s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90200s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90300s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90400s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90500s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90600s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90700s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90800s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 90900s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91000s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91100s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91200s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91300s 987 0 0 0 0 0 135s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91400s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91500s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91600s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91700s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91800s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 91900s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92000s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92100s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92200s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92300s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92400s 987 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92500s 986 1 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92600s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92700s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92800s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 92900s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93000s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93100s 986 1 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93200s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93300s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93400s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93500s 986 2 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93600s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93700s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93800s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 93900s 986 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94000s 985 1 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94100s 985 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94200s 985 0 0 0 0 0 136s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94300s 984 1 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94400s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94500s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94600s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94700s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94800s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 94900s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95000s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95100s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95200s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95300s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95400s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95500s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95600s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95700s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95800s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 95900s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96000s 984 1 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96100s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96200s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96300s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96400s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96500s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96600s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96700s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96800s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 96900s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97000s 984 0 0 0 0 0 137s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97100s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97200s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97300s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97400s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97500s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97600s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97700s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97800s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 97900s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98000s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98100s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98200s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98300s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98400s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98500s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98600s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98700s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98800s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 98900s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99000s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99100s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99200s 984 1 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99300s 984 1 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99400s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99500s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99600s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99700s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99800s 984 0 0 0 0 0 138s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 99900s 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1667m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1668m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1670m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1672m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1673m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1675m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1677m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1678m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1680m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1682m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1683m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1685m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1687m 984 1 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1688m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1690m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1692m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1693m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1695m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1697m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1698m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1700m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1702m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1703m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1705m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1707m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1708m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1710m 984 0 0 0 0 0 139s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1712m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1713m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1715m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1717m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1718m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1720m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1722m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1723m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1725m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1727m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1728m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1730m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1732m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1733m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1735m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1737m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1738m 984 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1740m 983 1 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1742m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1743m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1745m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1747m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1748m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1750m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1752m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1753m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1755m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1757m 983 0 0 0 0 0 140s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1758m 982 1 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1760m 983 1 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1762m 983 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1763m 983 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1765m 983 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1767m 983 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1768m 983 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1770m 984 1 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1772m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1773m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1775m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1777m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1778m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1780m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1782m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1783m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1785m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1787m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1788m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1790m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1792m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1793m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1795m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1797m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1798m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1800m 984 0 0 0 0 0 141s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1802m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1803m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1805m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1807m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1808m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1810m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1812m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1813m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1815m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1817m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1818m 984 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1820m 982 2 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1822m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1823m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1825m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1827m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1828m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1830m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1832m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1833m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1835m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1837m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1838m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1840m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1842m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1843m 982 0 0 0 0 0 142s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1845m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1847m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1848m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1850m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1852m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1853m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1855m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1857m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1858m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1860m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1862m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1863m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1865m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1867m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1868m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1870m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1872m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1873m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1875m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1877m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1878m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1880m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1882m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1883m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1885m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1887m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1888m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1890m 982 0 0 0 0 0 143s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1892m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1893m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1895m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1897m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1898m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1900m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1902m 982 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1903m 981 1 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1905m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1907m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1908m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1910m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1912m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1913m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1915m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1917m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1918m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1920m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1922m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1923m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1925m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1927m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1928m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1930m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1932m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1933m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1935m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1937m 981 0 0 0 0 0 144s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1938m 981 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1940m 981 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1942m 981 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1943m 981 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1945m 981 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1947m 980 1 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1948m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1950m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1952m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1953m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1955m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1957m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1958m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1960m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1962m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1963m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1965m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1967m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1968m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1970m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1972m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1973m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1975m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1977m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1978m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1980m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1982m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1983m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1985m 980 0 0 0 0 0 145s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1987m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1988m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1990m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1992m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1993m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1995m 980 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1997m 979 1 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 1998m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2000m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2002m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2003m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2005m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2007m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2008m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2010m 979 1 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2012m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2013m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2015m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2017m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2018m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2020m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2022m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2023m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2025m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2027m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2028m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2030m 979 0 0 0 0 0 146s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2032m 979 1 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2033m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2035m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2037m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2038m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2040m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2042m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2043m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2045m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2047m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2048m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2050m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2052m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2053m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2055m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2057m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2058m 979 0 0 0 0 0 147s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2060m 979 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2062m 979 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2063m 979 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2065m 979 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2067m 979 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2068m 978 1 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2070m 978 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2072m 978 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2073m 978 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2075m 978 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2077m 978 0 0 0 0 0 147s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2078m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2080m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2082m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2083m 978 1 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2085m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2087m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2088m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2090m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2092m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2093m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2095m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2097m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2098m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2100m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2102m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2103m 978 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2105m 977 1 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2107m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2108m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2110m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2112m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2113m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2115m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2117m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2118m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2120m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2122m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2123m 977 0 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2125m 977 1 0 0 0 0 148s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2127m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2128m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2130m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2132m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2133m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2135m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2137m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2138m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2140m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2142m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2143m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2145m 977 1 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2147m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2148m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2150m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2152m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2153m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2155m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2157m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2158m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2160m 977 1 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2162m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2163m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2165m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2167m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2168m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2170m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2172m 977 0 0 0 0 0 149s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2173m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2175m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2177m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2178m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2180m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2182m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2183m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2185m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2187m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2188m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2190m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2192m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2193m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2195m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2197m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2198m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2200m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2202m 977 1 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2203m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2205m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2207m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2208m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2210m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2212m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2213m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2215m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2217m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2218m 977 0 0 0 0 0 150s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2220m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2222m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2223m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2225m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2227m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2228m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2230m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2232m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2233m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2235m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2237m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2238m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2240m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2242m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2243m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2245m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2247m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2248m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2250m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2252m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2253m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2255m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2257m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2258m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2260m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2262m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2263m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2265m 977 0 0 0 0 0 151s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2267m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2268m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2270m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2272m 978 1 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2273m 978 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2275m 978 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2277m 978 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2278m 977 1 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2280m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2282m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2283m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2285m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2287m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2288m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2290m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2292m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2293m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2295m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2297m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2298m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2300m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2302m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2303m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2305m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2307m 977 0 0 0 0 0 152s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2308m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2310m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2312m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2313m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2315m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2317m 977 0 0 0 0 0 153s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2318m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2320m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2322m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2323m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2325m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2327m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2328m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2330m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2332m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2333m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2335m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2337m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2338m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2340m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2342m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2343m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2345m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2347m 977 0 0 0 0 0 153s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2348m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2350m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2352m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2353m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2355m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2357m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2358m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2360m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2362m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2363m 977 0 0 0 0 0 154s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2365m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2367m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2368m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2370m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2372m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2373m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2375m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2377m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2378m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2380m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2382m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2383m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2385m 977 0 0 0 0 0 154s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2387m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2388m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2390m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2392m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2393m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2395m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2397m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2398m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2400m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2402m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2403m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2405m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2407m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2408m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2410m 977 0 0 0 0 0 155s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2412m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2413m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2415m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2417m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2418m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2420m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2422m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2423m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2425m 977 0 0 0 0 0 155s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2427m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2428m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2430m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2432m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2433m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2435m 977 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2437m 976 2 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2438m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2440m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2442m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2443m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2445m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2447m 976 1 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2448m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2450m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2452m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2453m 976 1 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2455m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2457m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2458m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2460m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2462m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2463m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2465m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2467m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2468m 976 0 0 0 0 0 156s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2470m 976 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2472m 976 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2473m 976 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2475m 976 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2477m 975 1 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2478m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2480m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2482m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2483m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2485m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2487m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2488m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2490m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2492m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2493m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2495m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2497m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2498m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2500m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2502m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2503m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2505m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2507m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2508m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2510m 975 0 0 0 0 0 157s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2512m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2513m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2515m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2517m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2518m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2520m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2522m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2523m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2525m 975 1 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2527m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2528m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2530m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2532m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2533m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2535m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2537m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2538m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2540m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2542m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2543m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2545m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2547m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2548m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2550m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2552m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2553m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2555m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2557m 975 0 0 0 0 0 158s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2558m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2560m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2562m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2563m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2565m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2567m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2568m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2570m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2572m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2573m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2575m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2577m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2578m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2580m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2582m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2583m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2585m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2587m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2588m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2590m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2592m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2593m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2595m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2597m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2598m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2600m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2602m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2603m 975 0 0 0 0 0 159s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2605m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2607m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2608m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2610m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2612m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2613m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2615m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2617m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2618m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2620m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2622m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2623m 975 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2625m 974 1 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2627m 974 1 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2628m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2630m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2632m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2633m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2635m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2637m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2638m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2640m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2642m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2643m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2645m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2647m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2648m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2650m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2652m 974 0 0 0 0 0 160s 939s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2653m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2655m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2657m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2658m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2660m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2662m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2663m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2665m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2667m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2668m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2670m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2672m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2673m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2675m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2677m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2678m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2680m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2682m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2683m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2685m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2687m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2688m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2690m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2692m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2693m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2695m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2697m 974 0 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2698m 974 1 0 0 0 0 161s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2700m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2702m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2703m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2705m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2707m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2708m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2710m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2712m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2713m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2715m 974 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2717m 973 1 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2718m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2720m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2722m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2723m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2725m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2727m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2728m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2730m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2732m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2733m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2735m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2737m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2738m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2740m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2742m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2743m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2745m 973 0 0 0 0 0 162s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2747m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2748m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2750m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2752m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2753m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2755m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2757m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2758m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2760m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2762m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2763m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2765m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2767m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2768m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2770m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2772m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2773m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2775m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2777m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2778m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2780m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2782m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2783m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2785m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2787m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2788m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2790m 973 0 0 0 0 0 163s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2792m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2793m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2795m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2797m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2798m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2800m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2802m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2803m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2805m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2807m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2808m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2810m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2812m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2813m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2815m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2817m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2818m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2820m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2822m 973 1 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2823m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2825m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2827m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2828m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2830m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2832m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2833m 973 0 0 0 0 0 164s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2835m 973 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2837m 972 1 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2838m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2840m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2842m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2843m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2845m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2847m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2848m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2850m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2852m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2853m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2855m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2857m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2858m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2860m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2862m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2863m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2865m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2867m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2868m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2870m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2872m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2873m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2875m 972 1 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2877m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2878m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 3 2880m 972 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 0s 1050 0 0 0 0 0 165s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 100s 1050 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 200s 1049 1 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 300s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 400s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 500s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 600s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 700s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 800s 1049 0 0 0 0 0 166s 938s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 900s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1000s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1100s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1200s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1300s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1400s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1500s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1600s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1700s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1800s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1900s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2000s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2100s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2200s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2300s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2400s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2500s 1049 0 0 0 0 0 166s 937s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2600s 1049 1 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2700s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2800s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2900s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3000s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3100s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3200s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3300s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3400s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3500s 1049 0 0 0 0 0 166s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3600s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3700s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3800s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 3900s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4000s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4100s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4200s 1049 0 0 0 0 0 167s 936s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4300s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4400s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4500s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4600s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4700s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4800s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 4900s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5000s 1049 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5100s 1048 1 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5200s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5300s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5400s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5500s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5600s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5700s 1048 1 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5800s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 5900s 1048 0 0 0 0 0 167s 935s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6000s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6100s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6200s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6300s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6400s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6500s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6600s 1048 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6700s 1049 1 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6800s 1049 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 6900s 1049 1 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7000s 1049 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7100s 1049 1 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7200s 1049 0 0 0 0 0 167s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7300s 1049 0 0 0 0 0 168s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7400s 1049 1 0 0 0 0 168s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7500s 1049 0 0 0 0 0 168s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7600s 1049 0 0 0 0 0 168s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7700s 1049 0 0 0 0 0 168s 934s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7800s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 7900s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8000s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8100s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8200s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8300s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8400s 1049 1 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8500s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8600s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8700s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8800s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 8900s 1049 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9000s 1048 1 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9100s 1048 1 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9200s 1048 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9300s 1048 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9400s 1048 0 0 0 0 0 168s 933s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9500s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9600s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9700s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9800s 1048 1 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 9900s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10000s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10100s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10200s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10300s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10400s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10500s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10600s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10700s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10800s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 10900s 1048 0 0 0 0 0 168s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11000s 1048 0 0 0 0 0 169s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11100s 1048 0 0 0 0 0 169s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11200s 1048 0 0 0 0 0 169s 932s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11300s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11400s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11500s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11600s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11700s 1048 1 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11800s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 11900s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12000s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12100s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12200s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12300s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12400s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12500s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12600s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12700s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12800s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 12900s 1048 0 0 0 0 0 169s 931s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13000s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13100s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13200s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13300s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13400s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13500s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13600s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13700s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13800s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 13900s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14000s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14100s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14200s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14300s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14400s 1048 0 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14500s 1048 1 0 0 0 0 169s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14600s 1048 0 0 0 0 0 170s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14700s 1048 0 0 0 0 0 170s 930s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14800s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 14900s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15000s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15100s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15200s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15300s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15400s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15500s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15600s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15700s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15800s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 15900s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16000s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16100s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16200s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16300s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16400s 1048 0 0 0 0 0 170s 929s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16500s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16600s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16700s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16800s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 16900s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17000s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17100s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17200s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17300s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17400s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17500s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17600s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17700s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17800s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 17900s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18000s 1048 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18100s 1047 2 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18200s 1047 0 0 0 0 0 170s 928s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18300s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18400s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18500s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18600s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18700s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18800s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 18900s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19000s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19100s 1047 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19200s 1046 1 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19300s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19400s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19500s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19600s 1046 1 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19700s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19800s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 19900s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20000s 1046 0 0 0 0 0 171s 927s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20100s 1046 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20200s 1046 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20300s 1045 1 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20400s 1045 1 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20500s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20600s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20700s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20800s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 20900s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21000s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21100s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21200s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21300s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21400s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21500s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21600s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21700s 1045 0 0 0 0 0 171s 926s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21800s 1045 0 0 0 0 0 171s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 21900s 1045 0 0 0 0 0 171s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22000s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22100s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22200s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22300s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22400s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22500s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22600s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22700s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22800s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 22900s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23000s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23100s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23200s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23300s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23400s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23500s 1045 0 0 0 0 0 172s 925s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23600s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23700s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23800s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 23900s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24000s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24100s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24200s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24300s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24400s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24500s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24600s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24700s 1045 1 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24800s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 24900s 1045 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25000s 1044 1 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25100s 1044 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25200s 1044 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25300s 1044 0 0 0 0 0 172s 924s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25400s 1044 0 0 0 0 0 172s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25500s 1044 0 0 0 0 0 172s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25600s 1044 0 0 0 0 0 172s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25700s 1043 1 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25800s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 25900s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26000s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26100s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26200s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26300s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26400s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26500s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26600s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26700s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26800s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 26900s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27000s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27100s 1043 0 0 0 0 0 173s 923s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27200s 1043 1 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27300s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27400s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27500s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27600s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27700s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27800s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 27900s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28000s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28100s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28200s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28300s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28400s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28500s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28600s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28700s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28800s 1043 0 0 0 0 0 173s 922s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 28900s 1043 0 0 0 0 0 173s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29000s 1043 0 0 0 0 0 173s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29100s 1043 0 0 0 0 0 173s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29200s 1043 0 0 0 0 0 173s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29300s 1043 0 0 0 0 0 173s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29400s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29500s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29600s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29700s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29800s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 29900s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30000s 1043 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30100s 1044 1 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30200s 1044 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30300s 1044 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30400s 1044 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30500s 1044 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30600s 1044 0 0 0 0 0 174s 921s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30700s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30800s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 30900s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31000s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31100s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31200s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31300s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31400s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31500s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31600s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31700s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31800s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 31900s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32000s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32100s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32200s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32300s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32400s 1044 0 0 0 0 0 174s 920s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32500s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32600s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32700s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32800s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 32900s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33000s 1044 0 0 0 0 0 174s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33100s 1044 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33200s 1044 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33300s 1044 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33400s 1044 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33500s 1044 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33600s 1043 1 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33700s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33800s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 33900s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34000s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34100s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34200s 1043 0 0 0 0 0 175s 919s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34300s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34400s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34500s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34600s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34700s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34800s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 34900s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35000s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35100s 1043 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35200s 1043 1 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35300s 1042 1 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35400s 1041 1 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35500s 1041 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35600s 1041 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35700s 1041 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35800s 1041 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 35900s 1041 0 0 0 0 0 175s 918s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36000s 1040 1 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36100s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36200s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36300s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36400s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36500s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36600s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36700s 1040 0 0 0 0 0 175s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36800s 1040 1 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 36900s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37000s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37100s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37200s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37300s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37400s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37500s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37600s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37700s 1040 0 0 0 0 0 176s 917s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37800s 1040 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 37900s 1040 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38000s 1039 1 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38100s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38200s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38300s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38400s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38500s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38600s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38700s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38800s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 38900s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39000s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39100s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39200s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39300s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39400s 1039 0 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39500s 1040 1 0 0 0 0 176s 916s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39600s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39700s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39800s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 39900s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40000s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40100s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40200s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40300s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40400s 1040 0 0 0 0 0 176s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40500s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40600s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40700s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40800s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 40900s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41000s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41100s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41200s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41300s 1040 0 0 0 0 0 177s 915s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41400s 1039 1 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41500s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41600s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41700s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41800s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 41900s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42000s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42100s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42200s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42300s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42400s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42500s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42600s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42700s 1039 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42800s 1038 1 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 42900s 1038 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43000s 1038 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43100s 1038 0 0 0 0 0 177s 914s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43200s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43300s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43400s 1038 1 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43500s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43600s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43700s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43800s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 43900s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44000s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44100s 1038 0 0 0 0 0 177s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44200s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44300s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44400s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44500s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44600s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44700s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44800s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 44900s 1038 0 0 0 0 0 178s 913s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45000s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45100s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45200s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45300s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45400s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45500s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45600s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45700s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45800s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 45900s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46000s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46100s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46200s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46300s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46400s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46500s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46600s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46700s 1038 0 0 0 0 0 178s 912s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46800s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 46900s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47000s 1038 1 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47100s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47200s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47300s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47400s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47500s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47600s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47700s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47800s 1038 0 0 0 0 0 178s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 47900s 1038 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48000s 1038 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48100s 1037 1 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48200s 1037 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48300s 1037 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48400s 1037 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48500s 1037 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48600s 1037 0 0 0 0 0 179s 911s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48700s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48800s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 48900s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49000s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49100s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49200s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49300s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49400s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49500s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49600s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49700s 1037 1 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49800s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 49900s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50000s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50100s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50200s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50300s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50400s 1037 0 0 0 0 0 179s 910s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50500s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50600s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50700s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50800s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 50900s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51000s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51100s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51200s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51300s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51400s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51500s 1037 0 0 0 0 0 179s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51600s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51700s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51800s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 51900s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52000s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52100s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52200s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52300s 1037 0 0 0 0 0 180s 909s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52400s 1037 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52500s 1037 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52600s 1037 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52700s 1038 1 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52800s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 52900s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53000s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53100s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53200s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53300s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53400s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53500s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53600s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53700s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53800s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 53900s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54000s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54100s 1038 0 0 0 0 0 180s 908s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54200s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54300s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54400s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54500s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54600s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54700s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54800s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 54900s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55000s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55100s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55200s 1038 0 0 0 0 0 180s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55300s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55400s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55500s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55600s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55700s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55800s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 55900s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56000s 1038 0 0 0 0 0 181s 907s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56100s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56200s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56300s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56400s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56500s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56600s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56700s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56800s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 56900s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57000s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57100s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57200s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57300s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57400s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57500s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57600s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57700s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57800s 1038 0 0 0 0 0 181s 906s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 57900s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58000s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58100s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58200s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58300s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58400s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58500s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58600s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58700s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58800s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 58900s 1038 0 0 0 0 0 181s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59000s 1038 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59100s 1039 1 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59200s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59300s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59400s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59500s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59600s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59700s 1039 0 0 0 0 0 182s 905s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59800s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 59900s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60000s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60100s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60200s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60300s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60400s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60500s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60600s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60700s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60800s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 60900s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61000s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61100s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61200s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61300s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61400s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61500s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61600s 1039 0 0 0 0 0 182s 904s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61700s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61800s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 61900s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62000s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62100s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62200s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62300s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62400s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62500s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62600s 1039 0 0 0 0 0 182s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62700s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62800s 1039 1 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 62900s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63000s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63100s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63200s 1039 1 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63300s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63400s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63500s 1039 0 0 0 0 0 183s 903s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63600s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63700s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63800s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 63900s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64000s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64100s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64200s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64300s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64400s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64500s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64600s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64700s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64800s 1039 1 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 64900s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65000s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65100s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65200s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65300s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65400s 1039 0 0 0 0 0 183s 902s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65500s 1039 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65600s 1038 1 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65700s 1038 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65800s 1038 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 65900s 1038 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66000s 1038 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66100s 1038 1 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66200s 1038 0 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66300s 1038 1 0 0 0 0 183s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66400s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66500s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66600s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66700s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66800s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 66900s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67000s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67100s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67200s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67300s 1038 0 0 0 0 0 184s 901s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67400s 1038 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67500s 1038 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67600s 1038 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67700s 1039 1 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67800s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 67900s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68000s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68100s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68200s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68300s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68400s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68500s 1039 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68600s 1040 1 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68700s 1040 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68800s 1040 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 68900s 1040 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69000s 1040 1 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69100s 1040 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69200s 1040 0 0 0 0 0 184s 900s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69300s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69400s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69500s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69600s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69700s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69800s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 69900s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70000s 1040 0 0 0 0 0 184s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70100s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70200s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70300s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70400s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70500s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70600s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70700s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70800s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 70900s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71000s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71100s 1040 0 0 0 0 0 185s 899s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71200s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71300s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71400s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71500s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71600s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71700s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71800s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 71900s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72000s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72100s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72200s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72300s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72400s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72500s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72600s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72700s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72800s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 72900s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73000s 1040 0 0 0 0 0 185s 898s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73100s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73200s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73300s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73400s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73500s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73600s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73700s 1040 0 0 0 0 0 185s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73800s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 73900s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74000s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74100s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74200s 1040 1 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74300s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74400s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74500s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74600s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74700s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74800s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 74900s 1040 0 0 0 0 0 186s 897s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75000s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75100s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75200s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75300s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75400s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75500s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75600s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75700s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75800s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 75900s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76000s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76100s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76200s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76300s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76400s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76500s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76600s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76700s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76800s 1040 0 0 0 0 0 186s 896s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 76900s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77000s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77100s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77200s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77300s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77400s 1040 0 0 0 0 0 186s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77500s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77600s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77700s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77800s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 77900s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78000s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78100s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78200s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78300s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78400s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78500s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78600s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78700s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78800s 1040 0 0 0 0 0 187s 895s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 78900s 1039 1 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79000s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79100s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79200s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79300s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79400s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79500s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79600s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79700s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79800s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 79900s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80000s 1039 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80100s 1038 1 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80200s 1038 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80300s 1038 1 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80400s 1038 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80500s 1038 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80600s 1038 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80700s 1038 0 0 0 0 0 187s 894s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80800s 1038 0 0 0 0 0 187s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 80900s 1038 0 0 0 0 0 187s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81000s 1038 0 0 0 0 0 187s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81100s 1038 0 0 0 0 0 187s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81200s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81300s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81400s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81500s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81600s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81700s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81800s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 81900s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82000s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82100s 1038 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82200s 1037 1 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82300s 1037 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82400s 1037 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82500s 1037 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82600s 1037 0 0 0 0 0 188s 893s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82700s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82800s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 82900s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83000s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83100s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83200s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83300s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83400s 1037 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83500s 1036 1 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83600s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83700s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83800s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 83900s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84000s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84100s 1036 1 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84200s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84300s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84400s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84500s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84600s 1036 0 0 0 0 0 188s 892s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84700s 1036 0 0 0 0 0 188s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84800s 1036 0 0 0 0 0 188s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 84900s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85000s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85100s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85200s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85300s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85400s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85500s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85600s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85700s 1036 1 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85800s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 85900s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86000s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86100s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86200s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86300s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86400s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86500s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86600s 1036 0 0 0 0 0 189s 891s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86700s 1036 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86800s 1036 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 86900s 1035 1 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87000s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87100s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87200s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87300s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87400s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87500s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87600s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87700s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87800s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 87900s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88000s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88100s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88200s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88300s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88400s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88500s 1035 0 0 0 0 0 189s 890s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88600s 1035 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88700s 1035 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88800s 1035 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 88900s 1035 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89000s 1034 1 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89100s 1034 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89200s 1034 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89300s 1033 1 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89400s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89500s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89600s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89700s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89800s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 89900s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90000s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90100s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90200s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90300s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90400s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90500s 1033 0 0 0 0 0 190s 889s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90600s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90700s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90800s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 90900s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91000s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91100s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91200s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91300s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91400s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91500s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91600s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91700s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91800s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 91900s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92000s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92100s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92200s 1033 0 0 0 0 0 190s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92300s 1033 0 0 0 0 0 191s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92400s 1033 0 0 0 0 0 191s 888s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92500s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92600s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92700s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92800s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 92900s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93000s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93100s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93200s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93300s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93400s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93500s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93600s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93700s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93800s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 93900s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94000s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94100s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94200s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94300s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94400s 1033 0 0 0 0 0 191s 887s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94500s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94600s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94700s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94800s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 94900s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95000s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95100s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95200s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95300s 1033 1 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95400s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95500s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95600s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95700s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95800s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 95900s 1033 0 0 0 0 0 191s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96000s 1033 0 0 0 0 0 192s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96100s 1033 1 0 0 0 0 192s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96200s 1033 0 0 0 0 0 192s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96300s 1033 0 0 0 0 0 192s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96400s 1033 0 0 0 0 0 192s 886s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96500s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96600s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96700s 1034 1 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96800s 1034 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 96900s 1034 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97000s 1034 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97100s 1034 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97200s 1033 1 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97300s 1033 1 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97400s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97500s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97600s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97700s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97800s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 97900s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98000s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98100s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98200s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98300s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98400s 1033 0 0 0 0 0 192s 885s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98500s 1033 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98600s 1032 1 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98700s 1032 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98800s 1031 1 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 98900s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99000s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99100s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99200s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99300s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99400s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99500s 1031 0 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99600s 1031 1 0 0 0 0 192s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99700s 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99800s 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 99900s 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1667m 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1668m 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1670m 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1672m 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1673m 1031 0 0 0 0 0 193s 884s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1675m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1677m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1678m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1680m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1682m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1683m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1685m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1687m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1688m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1690m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1692m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1693m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1695m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1697m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1698m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1700m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1702m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1703m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1705m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1707m 1031 0 0 0 0 0 193s 883s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1708m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1710m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1712m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1713m 1031 1 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1715m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1717m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1718m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1720m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1722m 1031 0 0 0 0 0 193s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1723m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1725m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1727m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1728m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1730m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1732m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1733m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1735m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1737m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1738m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1740m 1031 0 0 0 0 0 194s 882s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1742m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1743m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1745m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1747m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1748m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1750m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1752m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1753m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1755m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1757m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1758m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1760m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1762m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1763m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1765m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1767m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1768m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1770m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1772m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1773m 1031 0 0 0 0 0 194s 881s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1775m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1777m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1778m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1780m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1782m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1783m 1031 0 0 0 0 0 194s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1785m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1787m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1788m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1790m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1792m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1793m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1795m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1797m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1798m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1800m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1802m 1031 1 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1803m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1805m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1807m 1031 0 0 0 0 0 195s 880s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1808m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1810m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1812m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1813m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1815m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1817m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1818m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1820m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1822m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1823m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1825m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1827m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1828m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1830m 1031 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1832m 1032 1 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1833m 1032 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1835m 1032 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1837m 1032 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1838m 1032 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1840m 1032 0 0 0 0 0 195s 879s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1842m 1032 0 0 0 0 0 195s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1843m 1032 0 0 0 0 0 195s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1845m 1032 0 0 0 0 0 195s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1847m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1848m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1850m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1852m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1853m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1855m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1857m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1858m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1860m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1862m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1863m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1865m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1867m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1868m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1870m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1872m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1873m 1032 0 0 0 0 0 196s 878s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1875m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1877m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1878m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1880m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1882m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1883m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1885m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1887m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1888m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1890m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1892m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1893m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1895m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1897m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1898m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1900m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1902m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1903m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1905m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1907m 1032 0 0 0 0 0 196s 877s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1908m 1032 0 0 0 0 0 196s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1910m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1912m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1913m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1915m 1032 1 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1917m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1918m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1920m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1922m 1032 1 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1923m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1925m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1927m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1928m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1930m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1932m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1933m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1935m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1937m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1938m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1940m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1942m 1032 0 0 0 0 0 197s 876s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1943m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1945m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1947m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1948m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1950m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1952m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1953m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1955m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1957m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1958m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1960m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1962m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1963m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1965m 1032 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1967m 1032 1 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1968m 1031 1 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1970m 1031 0 0 0 0 0 197s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1972m 1031 0 0 0 0 0 198s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1973m 1031 0 0 0 0 0 198s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1975m 1031 0 0 0 0 0 198s 875s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1977m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1978m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1980m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1982m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1983m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1985m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1987m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1988m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1990m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1992m 1031 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1993m 1030 1 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1995m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1997m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 1998m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2000m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2002m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2003m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2005m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2007m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2008m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2010m 1030 0 0 0 0 0 198s 874s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2012m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2013m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2015m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2017m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2018m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2020m 1030 1 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2022m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2023m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2025m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2027m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2028m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2030m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2032m 1030 0 0 0 0 0 198s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2033m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2035m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2037m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2038m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2040m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2042m 1030 1 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2043m 1030 0 0 0 0 0 199s 873s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2045m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2047m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2048m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2050m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2052m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2053m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2055m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2057m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2058m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2060m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2062m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2063m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2065m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2067m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2068m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2070m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2072m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2073m 1030 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2075m 1029 1 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2077m 1029 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2078m 1029 0 0 0 0 0 199s 872s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2080m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2082m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2083m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2085m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2087m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2088m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2090m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2092m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2093m 1029 0 0 0 0 0 199s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2095m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2097m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2098m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2100m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2102m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2103m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2105m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2107m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2108m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2110m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2112m 1029 0 0 0 0 0 200s 871s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2113m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2115m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2117m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2118m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2120m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2122m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2123m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2125m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2127m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2128m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2130m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2132m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2133m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2135m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2137m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2138m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2140m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2142m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2143m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2145m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2147m 1029 0 0 0 0 0 200s 870s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2148m 1029 0 0 0 0 0 200s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2150m 1029 0 0 0 0 0 200s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2152m 1029 0 0 0 0 0 200s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2153m 1029 0 0 0 0 0 200s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2155m 1029 0 0 0 0 0 200s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2157m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2158m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2160m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2162m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2163m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2165m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2167m 1029 1 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2168m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2170m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2172m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2173m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2175m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2177m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2178m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2180m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2182m 1029 0 0 0 0 0 201s 869s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2183m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2185m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2187m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2188m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2190m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2192m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2193m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2195m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2197m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2198m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2200m 1029 1 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2202m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2203m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2205m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2207m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2208m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2210m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2212m 1029 0 0 0 0 0 201s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2213m 1029 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2215m 1029 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2217m 1029 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2218m 1029 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2220m 1029 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2222m 1028 1 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2223m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2225m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2227m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2228m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2230m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2232m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2233m 1028 0 0 0 0 0 202s 868s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2235m 1028 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2237m 1028 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2238m 1028 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2240m 1027 2 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2242m 1027 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2243m 1027 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2245m 1026 1 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2247m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2248m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2250m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2252m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2253m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2255m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2257m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2258m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2260m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2262m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2263m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2265m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2267m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2268m 1026 0 0 0 0 0 202s 867s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2270m 1026 0 0 0 0 0 202s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2272m 1026 0 0 0 0 0 202s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2273m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2275m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2277m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2278m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2280m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2282m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2283m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2285m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2287m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2288m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2290m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2292m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2293m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2295m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2297m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2298m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2300m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2302m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2303m 1026 0 0 0 0 0 203s 866s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2305m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2307m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2308m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2310m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2312m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2313m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2315m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2317m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2318m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2320m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2322m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2323m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2325m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2327m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2328m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2330m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2332m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2333m 1026 0 0 0 0 0 203s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2335m 1026 0 0 0 0 0 204s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2337m 1026 0 0 0 0 0 204s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2338m 1026 0 0 0 0 0 204s 865s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2340m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2342m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2343m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2345m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2347m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2348m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2350m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2352m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2353m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2355m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2357m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2358m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2360m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2362m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2363m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2365m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2367m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2368m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2370m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2372m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2373m 1026 0 0 0 0 0 204s 864s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2375m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2377m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2378m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2380m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2382m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2383m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2385m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2387m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2388m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2390m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2392m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2393m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2395m 1026 0 0 0 0 0 204s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2397m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2398m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2400m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2402m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2403m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2405m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2407m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2408m 1026 0 0 0 0 0 205s 863s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2410m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2412m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2413m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2415m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2417m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2418m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2420m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2422m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2423m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2425m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2427m 1026 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2428m 1025 1 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2430m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2432m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2433m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2435m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2437m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2438m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2440m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2442m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2443m 1025 0 0 0 0 0 205s 862s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2445m 1024 1 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2447m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2448m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2450m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2452m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2453m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2455m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2457m 1024 0 0 0 0 0 205s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2458m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2460m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2462m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2463m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2465m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2467m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2468m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2470m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2472m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2473m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2475m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2477m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2478m 1024 0 0 0 0 0 206s 861s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2480m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2482m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2483m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2485m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2487m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2488m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2490m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2492m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2493m 1024 1 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2495m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2497m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2498m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2500m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2502m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2503m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2505m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2507m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2508m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2510m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2512m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2513m 1024 0 0 0 0 0 206s 860s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2515m 1024 0 0 0 0 0 206s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2517m 1024 0 0 0 0 0 206s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2518m 1024 0 0 0 0 0 206s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2520m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2522m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2523m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2525m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2527m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2528m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2530m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2532m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2533m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2535m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2537m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2538m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2540m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2542m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2543m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2545m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2547m 1024 1 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2548m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2550m 1024 0 0 0 0 0 207s 859s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2552m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2553m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2555m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2557m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2558m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2560m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2562m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2563m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2565m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2567m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2568m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2570m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2572m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2573m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2575m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2577m 1024 1 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2578m 1024 0 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2580m 1024 1 0 0 0 0 207s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2582m 1024 0 0 0 0 0 208s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2583m 1024 0 0 0 0 0 208s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2585m 1024 0 0 0 0 0 208s 858s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2587m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2588m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2590m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2592m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2593m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2595m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2597m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2598m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2600m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2602m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2603m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2605m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2607m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2608m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2610m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2612m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2613m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2615m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2617m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2618m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2620m 1024 0 0 0 0 0 208s 857s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2622m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2623m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2625m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2627m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2628m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2630m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2632m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2633m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2635m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2637m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2638m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2640m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2642m 1024 0 0 0 0 0 208s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2643m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2645m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2647m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2648m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2650m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2652m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2653m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2655m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2657m 1024 0 0 0 0 0 209s 856s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2658m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2660m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2662m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2663m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2665m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2667m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2668m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2670m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2672m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2673m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2675m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2677m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2678m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2680m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2682m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2683m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2685m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2687m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2688m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2690m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2692m 1024 0 0 0 0 0 209s 855s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2693m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2695m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2697m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2698m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2700m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2702m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2703m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2705m 1024 0 0 0 0 0 209s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2707m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2708m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2710m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2712m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2713m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2715m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2717m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2718m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2720m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2722m 1024 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2723m 1025 1 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2725m 1025 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2727m 1025 0 0 0 0 0 210s 854s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2728m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2730m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2732m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2733m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2735m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2737m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2738m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2740m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2742m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2743m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2745m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2747m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2748m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2750m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2752m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2753m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2755m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2757m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2758m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2760m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2762m 1025 0 0 0 0 0 210s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2763m 1025 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2765m 1025 1 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2767m 1025 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2768m 1025 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2770m 1025 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2772m 1024 1 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2773m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2775m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2777m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2778m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2780m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2782m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2783m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2785m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2787m 1024 1 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2788m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2790m 1024 0 0 0 0 0 211s 853s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2792m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2793m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2795m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2797m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2798m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2800m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2802m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2803m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2805m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2807m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2808m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2810m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2812m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2813m 1024 0 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2815m 1024 1 0 0 0 0 211s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2817m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2818m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2820m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2822m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2823m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2825m 1024 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2827m 1023 1 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2828m 1023 1 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2830m 1023 0 0 0 0 0 212s 852s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2832m 1024 1 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2833m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2835m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2837m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2838m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2840m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2842m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2843m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2845m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2847m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2848m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2850m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2852m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2853m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2855m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2857m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2858m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2860m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2862m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2863m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2865m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2867m 1024 0 0 0 0 0 212s 851s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2868m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2870m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2872m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2873m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2875m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2877m 1024 0 0 0 0 0 212s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2878m 1024 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 4 2880m 1024 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 0s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 100s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 200s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 300s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 400s 1002 1 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 500s 1002 1 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 600s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 700s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 800s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 900s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1000s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1100s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1200s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1300s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1400s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1500s 1002 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1600s 1001 1 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1700s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1800s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1900s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2000s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2100s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2200s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2300s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2400s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2500s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2600s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2700s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2800s 1001 0 0 0 0 0 213s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2900s 1001 0 0 0 0 0 214s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3000s 1001 0 0 0 0 0 214s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3100s 1001 0 0 0 0 0 214s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3200s 1001 0 0 0 0 0 214s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3300s 1001 0 0 0 0 0 214s 850s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3400s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3500s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3600s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3700s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3800s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 3900s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4000s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4100s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4200s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4300s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4400s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4500s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4600s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4700s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4800s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 4900s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5000s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5100s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5200s 1001 1 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5300s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5400s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5500s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5600s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5700s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5800s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 5900s 1001 0 0 0 0 0 214s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6000s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6100s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6200s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6300s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6400s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6500s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6600s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6700s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6800s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 6900s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7000s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7100s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7200s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7300s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7400s 1001 0 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7500s 1000 1 0 0 0 0 215s 849s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7600s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7700s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7800s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 7900s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8000s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8100s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8200s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8300s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8400s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8500s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8600s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8700s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8800s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 8900s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9000s 1000 0 0 0 0 0 215s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9100s 1000 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9200s 1000 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9300s 999 1 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9400s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9500s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9600s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9700s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9800s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 9900s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10000s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10100s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10200s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10300s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10400s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10500s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10600s 999 1 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10700s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10800s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 10900s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11000s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11100s 999 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11200s 998 1 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11300s 998 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11400s 998 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11500s 998 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11600s 998 0 0 0 0 0 216s 848s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11700s 998 0 0 0 0 0 216s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11800s 998 0 0 0 0 0 216s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 11900s 998 0 0 0 0 0 216s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12000s 998 0 0 0 0 0 216s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12100s 998 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12200s 998 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12300s 997 1 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12400s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12500s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12600s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12700s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12800s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 12900s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13000s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13100s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13200s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13300s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13400s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13500s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13600s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13700s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13800s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 13900s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14000s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14100s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14200s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14300s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14400s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14500s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14600s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14700s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14800s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 14900s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15000s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15100s 997 0 0 0 0 0 217s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15200s 997 0 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15300s 996 1 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15400s 995 1 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15500s 995 0 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15600s 995 1 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15700s 995 0 0 0 0 0 218s 847s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15800s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 15900s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16000s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16100s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16200s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16300s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16400s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16500s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16600s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16700s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16800s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 16900s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17000s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17100s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17200s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17300s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17400s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17500s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17600s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17700s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17800s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 17900s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18000s 995 1 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18100s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18200s 995 0 0 0 0 0 218s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18300s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18400s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18500s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18600s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18700s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18800s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 18900s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19000s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19100s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19200s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19300s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19400s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19500s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19600s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19700s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19800s 995 0 0 0 0 0 219s 846s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 19900s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20000s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20100s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20200s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20300s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20400s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20500s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20600s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20700s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20800s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 20900s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21000s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21100s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21200s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21300s 995 0 0 0 0 0 219s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21400s 995 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21500s 994 1 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21600s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21700s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21800s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 21900s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22000s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22100s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22200s 994 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22300s 993 1 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22400s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22500s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22600s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22700s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22800s 993 1 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 22900s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23000s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23100s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23200s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23300s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23400s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23500s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23600s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23700s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23800s 993 0 0 0 0 0 220s 845s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 23900s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24000s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24100s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24200s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24300s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24400s 993 0 0 0 0 0 220s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24500s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24600s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24700s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24800s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 24900s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25000s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25100s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25200s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25300s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25400s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25500s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25600s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25700s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25800s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 25900s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26000s 993 1 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26100s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26200s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26300s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26400s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26500s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26600s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26700s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26800s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 26900s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27000s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27100s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27200s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27300s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27400s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27500s 993 0 0 0 0 0 221s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27600s 993 0 0 0 0 0 222s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27700s 993 0 0 0 0 0 222s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27800s 993 0 0 0 0 0 222s 844s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 27900s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28000s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28100s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28200s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28300s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28400s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28500s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28600s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28700s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28800s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 28900s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29000s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29100s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29200s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29300s 993 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29400s 992 1 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29500s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29600s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29700s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29800s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 29900s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30000s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30100s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30200s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30300s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30400s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30500s 992 0 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30600s 991 1 0 0 0 0 222s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30700s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30800s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 30900s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31000s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31100s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31200s 991 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31300s 990 1 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31400s 990 1 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31500s 990 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31600s 990 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31700s 990 0 0 0 0 0 223s 843s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31800s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 31900s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32000s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32100s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32200s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32300s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32400s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32500s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32600s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32700s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32800s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 32900s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33000s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33100s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33200s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33300s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33400s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33500s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33600s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33700s 990 0 0 0 0 0 223s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33800s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 33900s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34000s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34100s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34200s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34300s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34400s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34500s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34600s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34700s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34800s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 34900s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35000s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35100s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35200s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35300s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35400s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35500s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35600s 990 0 0 0 0 0 224s 842s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35700s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35800s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 35900s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36000s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36100s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36200s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36300s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36400s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36500s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36600s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36700s 990 0 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36800s 991 1 0 0 0 0 224s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 36900s 992 1 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37000s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37100s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37200s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37300s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37400s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37500s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37600s 992 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37700s 992 1 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37800s 993 1 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 37900s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38000s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38100s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38200s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38300s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38400s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38500s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38600s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38700s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38800s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 38900s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39000s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39100s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39200s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39300s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39400s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39500s 993 0 0 0 0 0 225s 841s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39600s 993 0 0 0 0 0 225s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39700s 993 0 0 0 0 0 225s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39800s 993 0 0 0 0 0 225s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 39900s 993 0 0 0 0 0 225s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40000s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40100s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40200s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40300s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40400s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40500s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40600s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40700s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40800s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 40900s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41000s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41100s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41200s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41300s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41400s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41500s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41600s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41700s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41800s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 41900s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42000s 993 1 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42100s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42200s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42300s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42400s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42500s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42600s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42700s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42800s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 42900s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43000s 993 0 0 0 0 0 226s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43100s 993 0 0 0 0 0 227s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43200s 993 0 0 0 0 0 227s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43300s 993 0 0 0 0 0 227s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43400s 993 0 0 0 0 0 227s 840s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43500s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43600s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43700s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43800s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 43900s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44000s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44100s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44200s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44300s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44400s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44500s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44600s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44700s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44800s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 44900s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45000s 992 1 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45100s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45200s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45300s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45400s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45500s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45600s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45700s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45800s 992 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 45900s 993 1 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46000s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46100s 993 0 0 0 0 0 227s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46200s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46300s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46400s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46500s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46600s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46700s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46800s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 46900s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47000s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47100s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47200s 993 0 0 0 0 0 228s 839s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47300s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47400s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47500s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47600s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47700s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47800s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 47900s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48000s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48100s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48200s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48300s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48400s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48500s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48600s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48700s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48800s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 48900s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49000s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49100s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49200s 993 0 0 0 0 0 228s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49300s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49400s 993 1 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49500s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49600s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49700s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49800s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 49900s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50000s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50100s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50200s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50300s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50400s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50500s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50600s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50700s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50800s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 50900s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51000s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51100s 993 0 0 0 0 0 229s 838s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51200s 993 1 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51300s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51400s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51500s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51600s 993 1 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51700s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51800s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 51900s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52000s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52100s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52200s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52300s 993 0 0 0 0 0 229s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52400s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52500s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52600s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52700s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52800s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 52900s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53000s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53100s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53200s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53300s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53400s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53500s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53600s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53700s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53800s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 53900s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54000s 993 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54100s 992 1 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54200s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54300s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54400s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54500s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54600s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54700s 992 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54800s 991 1 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 54900s 991 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55000s 991 0 0 0 0 0 230s 837s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55100s 991 0 0 0 0 0 230s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55200s 991 0 0 0 0 0 230s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55300s 991 0 0 0 0 0 230s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55400s 991 0 0 0 0 0 230s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55500s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55600s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55700s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55800s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 55900s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56000s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56100s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56200s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56300s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56400s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56500s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56600s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56700s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56800s 991 1 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 56900s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57000s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57100s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57200s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57300s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57400s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57500s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57600s 991 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57700s 990 1 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57800s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 57900s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58000s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58100s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58200s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58300s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58400s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58500s 990 0 0 0 0 0 231s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58600s 990 0 0 0 0 0 232s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58700s 990 0 0 0 0 0 232s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58800s 990 0 0 0 0 0 232s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 58900s 990 0 0 0 0 0 232s 836s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59000s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59100s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59200s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59300s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59400s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59500s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59600s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59700s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59800s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 59900s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60000s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60100s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60200s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60300s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60400s 990 1 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60500s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60600s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60700s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60800s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 60900s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61000s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61100s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61200s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61300s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61400s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61500s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61600s 990 0 0 0 0 0 232s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61700s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61800s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 61900s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62000s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62100s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62200s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62300s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62400s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62500s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62600s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62700s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62800s 990 0 0 0 0 0 233s 835s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 62900s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63000s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63100s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63200s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63300s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63400s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63500s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63600s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63700s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63800s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 63900s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64000s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64100s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64200s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64300s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64400s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64500s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64600s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64700s 990 0 0 0 0 0 233s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64800s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 64900s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65000s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65100s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65200s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65300s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65400s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65500s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65600s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65700s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65800s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 65900s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66000s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66100s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66200s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66300s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66400s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66500s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66600s 990 0 0 0 0 0 234s 834s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66700s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66800s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 66900s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67000s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67100s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67200s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67300s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67400s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67500s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67600s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67700s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67800s 990 0 0 0 0 0 234s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 67900s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68000s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68100s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68200s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68300s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68400s 990 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68500s 989 1 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68600s 989 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68700s 988 1 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68800s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 68900s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69000s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69100s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69200s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69300s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69400s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69500s 988 1 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69600s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69700s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69800s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 69900s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70000s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70100s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70200s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70300s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70400s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70500s 988 0 0 0 0 0 235s 833s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70600s 988 0 0 0 0 0 235s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70700s 988 0 0 0 0 0 235s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70800s 988 0 0 0 0 0 235s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 70900s 988 0 0 0 0 0 235s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71000s 987 1 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71100s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71200s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71300s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71400s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71500s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71600s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71700s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71800s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 71900s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72000s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72100s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72200s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72300s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72400s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72500s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72600s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72700s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72800s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 72900s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73000s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73100s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73200s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73300s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73400s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73500s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73600s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73700s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73800s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 73900s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74000s 987 0 0 0 0 0 236s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74100s 987 0 0 0 0 0 237s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74200s 987 0 0 0 0 0 237s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74300s 987 0 0 0 0 0 237s 832s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74400s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74500s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74600s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74700s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74800s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 74900s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75000s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75100s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75200s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75300s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75400s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75500s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75600s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75700s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75800s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 75900s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76000s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76100s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76200s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76300s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76400s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76500s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76600s 987 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76700s 986 1 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76800s 986 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 76900s 986 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77000s 986 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77100s 986 0 0 0 0 0 237s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77200s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77300s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77400s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77500s 986 1 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77600s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77700s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77800s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 77900s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78000s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78100s 986 0 0 0 0 0 238s 831s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78200s 986 1 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78300s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78400s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78500s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78600s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78700s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78800s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 78900s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79000s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79100s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79200s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79300s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79400s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79500s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79600s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79700s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79800s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 79900s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80000s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80100s 986 0 0 0 0 0 238s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80200s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80300s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80400s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80500s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80600s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80700s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80800s 986 1 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 80900s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81000s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81100s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81200s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81300s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81400s 986 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81500s 985 1 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81600s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81700s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81800s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 81900s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82000s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82100s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82200s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82300s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82400s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82500s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82600s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82700s 985 0 0 0 0 0 239s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82800s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 82900s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83000s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83100s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83200s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83300s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83400s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83500s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83600s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83700s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83800s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 83900s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84000s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84100s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84200s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84300s 985 0 0 0 0 0 240s 830s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84400s 985 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84500s 985 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84600s 985 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84700s 984 1 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84800s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 84900s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85000s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85100s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85200s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85300s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85400s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85500s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85600s 984 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85700s 983 1 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85800s 983 0 0 0 0 0 240s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 85900s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86000s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86100s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86200s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86300s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86400s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86500s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86600s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86700s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86800s 983 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 86900s 982 1 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87000s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87100s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87200s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87300s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87400s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87500s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87600s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87700s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87800s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 87900s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88000s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88100s 982 0 0 0 0 0 241s 829s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88200s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88300s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88400s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88500s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88600s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88700s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88800s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 88900s 982 0 0 0 0 0 241s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89000s 982 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89100s 982 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89200s 983 1 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89300s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89400s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89500s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89600s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89700s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89800s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 89900s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90000s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90100s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90200s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90300s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90400s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90500s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90600s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90700s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90800s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 90900s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91000s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91100s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91200s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91300s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91400s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91500s 983 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91600s 982 1 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91700s 982 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91800s 982 0 0 0 0 0 242s 828s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 91900s 982 0 0 0 0 0 242s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92000s 982 0 0 0 0 0 242s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92100s 982 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92200s 982 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92300s 982 1 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92400s 982 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92500s 981 1 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92600s 981 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92700s 981 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92800s 980 1 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 92900s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93000s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93100s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93200s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93300s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93400s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93500s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93600s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93700s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93800s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 93900s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94000s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94100s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94200s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94300s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94400s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94500s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94600s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94700s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94800s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 94900s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95000s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95100s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95200s 980 0 0 0 0 0 243s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95300s 980 0 0 0 0 0 244s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95400s 980 0 0 0 0 0 244s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95500s 980 0 0 0 0 0 244s 827s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95600s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95700s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95800s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 95900s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96000s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96100s 980 1 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96200s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96300s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96400s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96500s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96600s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96700s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96800s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 96900s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97000s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97100s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97200s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97300s 980 1 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97400s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97500s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97600s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97700s 980 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97800s 979 1 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 97900s 979 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98000s 979 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98100s 979 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98200s 979 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98300s 979 0 0 0 0 0 244s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98400s 979 1 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98500s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98600s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98700s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98800s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 98900s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99000s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99100s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99200s 979 0 0 0 0 0 245s 826s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99300s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99400s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99500s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99600s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99700s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99800s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 99900s 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1667m 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1668m 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1670m 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1672m 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1673m 979 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1675m 977 2 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1677m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1678m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1680m 977 1 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1682m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1683m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1685m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1687m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1688m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1690m 977 0 0 0 0 0 245s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1692m 977 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1693m 977 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1695m 977 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1697m 976 1 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1698m 976 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1700m 976 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1702m 976 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1703m 975 1 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1705m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1707m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1708m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1710m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1712m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1713m 975 0 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1715m 975 1 0 0 0 0 246s 825s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1717m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1718m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1720m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1722m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1723m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1725m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1727m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1728m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1730m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1732m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1733m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1735m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1737m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1738m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1740m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1742m 975 0 0 0 0 0 246s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1743m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1745m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1747m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1748m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1750m 975 1 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1752m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1753m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1755m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1757m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1758m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1760m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1762m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1763m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1765m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1767m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1768m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1770m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1772m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1773m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1775m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1777m 975 0 0 0 0 0 247s 824s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1778m 975 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1780m 975 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1782m 975 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1783m 974 1 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1785m 974 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1787m 974 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1788m 974 1 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1790m 974 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1792m 974 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1793m 974 0 0 0 0 0 247s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1795m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1797m 974 1 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1798m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1800m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1802m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1803m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1805m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1807m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1808m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1810m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1812m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1813m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1815m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1817m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1818m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1820m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1822m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1823m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1825m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1827m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1828m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1830m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1832m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1833m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1835m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1837m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1838m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1840m 974 0 0 0 0 0 248s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1842m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1843m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1845m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1847m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1848m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1850m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1852m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1853m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1855m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1857m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1858m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1860m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1862m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1863m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1865m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1867m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1868m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1870m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1872m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1873m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1875m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1877m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1878m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1880m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1882m 974 0 0 0 0 0 249s 823s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1883m 974 0 0 0 0 0 249s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1885m 974 0 0 0 0 0 249s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1887m 973 1 0 0 0 0 249s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1888m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1890m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1892m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1893m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1895m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1897m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1898m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1900m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1902m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1903m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1905m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1907m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1908m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1910m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1912m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1913m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1915m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1917m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1918m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1920m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1922m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1923m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1925m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1927m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1928m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1930m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1932m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1933m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1935m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1937m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1938m 973 0 0 0 0 0 250s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1940m 973 0 0 0 0 0 251s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1942m 973 0 0 0 0 0 251s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1943m 973 0 0 0 0 0 251s 822s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1945m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1947m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1948m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1950m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1952m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1953m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1955m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1957m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1958m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1960m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1962m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1963m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1965m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1967m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1968m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1970m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1972m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1973m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1975m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1977m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1978m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1980m 973 1 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1982m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1983m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1985m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1987m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1988m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1990m 973 0 0 0 0 0 251s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1992m 973 1 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1993m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1995m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1997m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 1998m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2000m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2002m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2003m 973 0 0 0 0 0 252s 821s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2005m 973 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2007m 972 1 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2008m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2010m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2012m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2013m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2015m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2017m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2018m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2020m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2022m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2023m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2025m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2027m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2028m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2030m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2032m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2033m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2035m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2037m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2038m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2040m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2042m 972 0 0 0 0 0 252s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2043m 972 1 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2045m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2047m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2048m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2050m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2052m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2053m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2055m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2057m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2058m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2060m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2062m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2063m 972 0 0 0 0 0 253s 820s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2065m 971 1 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2067m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2068m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2070m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2072m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2073m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2075m 971 1 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2077m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2078m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2080m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2082m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2083m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2085m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2087m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2088m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2090m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2092m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2093m 971 0 0 0 0 0 253s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2095m 970 1 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2097m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2098m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2100m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2102m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2103m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2105m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2107m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2108m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2110m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2112m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2113m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2115m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2117m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2118m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2120m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2122m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2123m 970 0 0 0 0 0 254s 819s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2125m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2127m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2128m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2130m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2132m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2133m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2135m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2137m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2138m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2140m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2142m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2143m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2145m 970 0 0 0 0 0 254s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2147m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2148m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2150m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2152m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2153m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2155m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2157m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2158m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2160m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2162m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2163m 970 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2165m 969 1 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2167m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2168m 969 1 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2170m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2172m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2173m 969 2 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2175m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2177m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2178m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2180m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2182m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2183m 969 0 0 0 0 0 255s 818s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2185m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2187m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2188m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2190m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2192m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2193m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2195m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2197m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2198m 969 0 0 0 0 0 255s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2200m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2202m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2203m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2205m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2207m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2208m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2210m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2212m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2213m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2215m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2217m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2218m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2220m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2222m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2223m 969 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2225m 968 1 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2227m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2228m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2230m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2232m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2233m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2235m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2237m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2238m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2240m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2242m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2243m 968 0 0 0 0 0 256s 817s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2245m 968 1 0 0 0 0 256s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2247m 968 0 0 0 0 0 256s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2248m 968 0 0 0 0 0 256s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2250m 968 0 0 0 0 0 256s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2252m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2253m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2255m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2257m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2258m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2260m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2262m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2263m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2265m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2267m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2268m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2270m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2272m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2273m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2275m 968 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2277m 967 1 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2278m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2280m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2282m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2283m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2285m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2287m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2288m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2290m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2292m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2293m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2295m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2297m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2298m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2300m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2302m 967 0 0 0 0 0 257s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2303m 967 0 0 0 0 0 258s 816s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2305m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2307m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2308m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2310m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2312m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2313m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2315m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2317m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2318m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2320m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2322m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2323m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2325m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2327m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2328m 967 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2330m 966 1 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2332m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2333m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2335m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2337m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2338m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2340m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2342m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2343m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2345m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2347m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2348m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2350m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2352m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2353m 966 0 0 0 0 0 258s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2355m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2357m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2358m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2360m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2362m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2363m 966 0 0 0 0 0 259s 815s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2365m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2367m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2368m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2370m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2372m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2373m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2375m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2377m 966 1 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2378m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2380m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2382m 966 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2383m 965 1 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2385m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2387m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2388m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2390m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2392m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2393m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2395m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2397m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2398m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2400m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2402m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2403m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2405m 965 0 0 0 0 0 259s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2407m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2408m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2410m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2412m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2413m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2415m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2417m 965 1 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2418m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2420m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2422m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2423m 965 0 0 0 0 0 260s 814s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2425m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2427m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2428m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2430m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2432m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2433m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2435m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2437m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2438m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2440m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2442m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2443m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2445m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2447m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2448m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2450m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2452m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2453m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2455m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2457m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2458m 965 0 0 0 0 0 260s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2460m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2462m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2463m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2465m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2467m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2468m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2470m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2472m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2473m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2475m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2477m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2478m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2480m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2482m 965 0 0 0 0 0 261s 813s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2483m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2485m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2487m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2488m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2490m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2492m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2493m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2495m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2497m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2498m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2500m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2502m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2503m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2505m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2507m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2508m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2510m 965 0 0 0 0 0 261s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2512m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2513m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2515m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2517m 965 1 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2518m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2520m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2522m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2523m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2525m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2527m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2528m 965 1 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2530m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2532m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2533m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2535m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2537m 965 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2538m 964 1 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2540m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2542m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2543m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2545m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2547m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2548m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2550m 964 0 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2552m 963 1 0 0 0 0 262s 812s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2553m 963 0 0 0 0 0 262s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2555m 963 1 0 0 0 0 262s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2557m 963 0 0 0 0 0 262s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2558m 963 0 0 0 0 0 262s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2560m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2562m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2563m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2565m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2567m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2568m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2570m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2572m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2573m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2575m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2577m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2578m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2580m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2582m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2583m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2585m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2587m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2588m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2590m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2592m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2593m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2595m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2597m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2598m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2600m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2602m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2603m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2605m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2607m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2608m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2610m 963 0 0 0 0 0 263s 811s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2612m 963 0 0 0 0 0 263s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2613m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2615m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2617m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2618m 962 1 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2620m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2622m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2623m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2625m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2627m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2628m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2630m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2632m 962 1 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2633m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2635m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2637m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2638m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2640m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2642m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2643m 962 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2645m 963 1 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2647m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2648m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2650m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2652m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2653m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2655m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2657m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2658m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2660m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2662m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2663m 963 0 0 0 0 0 264s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2665m 963 0 0 0 0 0 265s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2667m 963 0 0 0 0 0 265s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2668m 963 0 0 0 0 0 265s 810s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2670m 963 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2672m 963 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2673m 964 1 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2675m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2677m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2678m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2680m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2682m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2683m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2685m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2687m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2688m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2690m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2692m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2693m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2695m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2697m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2698m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2700m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2702m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2703m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2705m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2707m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2708m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2710m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2712m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2713m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2715m 964 0 0 0 0 0 265s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2717m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2718m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2720m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2722m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2723m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2725m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2727m 964 0 0 0 0 0 266s 809s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2728m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2730m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2732m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2733m 964 1 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2735m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2737m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2738m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2740m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2742m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2743m 964 1 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2745m 964 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2747m 963 1 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2748m 963 1 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2750m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2752m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2753m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2755m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2757m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2758m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2760m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2762m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2763m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2765m 963 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2767m 962 1 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2768m 962 0 0 0 0 0 266s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2770m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2772m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2773m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2775m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2777m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2778m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2780m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2782m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2783m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2785m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2787m 962 0 0 0 0 0 267s 808s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2788m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2790m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2792m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2793m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2795m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2797m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2798m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2800m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2802m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2803m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2805m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2807m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2808m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2810m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2812m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2813m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2815m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2817m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2818m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2820m 962 0 0 0 0 0 267s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2822m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2823m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2825m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2827m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2828m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2830m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2832m 962 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2833m 961 1 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2835m 961 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2837m 961 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2838m 961 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2840m 961 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2842m 961 0 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2843m 961 1 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2845m 960 1 0 0 0 0 268s 807s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2847m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2848m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2850m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2852m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2853m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2855m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2857m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2858m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2860m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2862m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2863m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2865m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2867m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2868m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2870m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2872m 960 0 0 0 0 0 268s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2873m 960 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2875m 960 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2877m 960 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2878m 960 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 5 2880m 960 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 0s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 100s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 200s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 300s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 400s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 500s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 600s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 700s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 800s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 900s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1000s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1100s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1200s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1300s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1400s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1500s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1600s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1700s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1800s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1900s 969 0 0 0 0 0 269s 806s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2000s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2100s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2200s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2300s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2400s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2500s 969 0 0 0 0 0 269s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2600s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2700s 969 1 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2800s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2900s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3000s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3100s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3200s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3300s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3400s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3500s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3600s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3700s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3800s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 3900s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4000s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4100s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4200s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4300s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4400s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4500s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4600s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4700s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4800s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 4900s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5000s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5100s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5200s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5300s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5400s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5500s 969 0 0 0 0 0 270s 805s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5600s 969 0 0 0 0 0 270s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5700s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5800s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 5900s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6000s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6100s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6200s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6300s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6400s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6500s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6600s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6700s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6800s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 6900s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7000s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7100s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7200s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7300s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7400s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7500s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7600s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7700s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7800s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 7900s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8000s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8100s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8200s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8300s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8400s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8500s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8600s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8700s 969 0 0 0 0 0 271s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8800s 969 0 0 0 0 0 272s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 8900s 969 0 0 0 0 0 272s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9000s 968 1 0 0 0 0 272s 804s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9100s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9200s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9300s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9400s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9500s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9600s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9700s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9800s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 9900s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10000s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10100s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10200s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10300s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10400s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10500s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10600s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10700s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10800s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 10900s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11000s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11100s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11200s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11300s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11400s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11500s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11600s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11700s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11800s 968 0 0 0 0 0 272s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 11900s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12000s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12100s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12200s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12300s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12400s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12500s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12600s 968 0 0 0 0 0 273s 803s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12700s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12800s 968 1 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 12900s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13000s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13100s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13200s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13300s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13400s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13500s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13600s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13700s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13800s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 13900s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14000s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14100s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14200s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14300s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14400s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14500s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14600s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14700s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14800s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 14900s 968 0 0 0 0 0 273s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15000s 968 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15100s 968 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15200s 967 1 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15300s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15400s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15500s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15600s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15700s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15800s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 15900s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16000s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16100s 967 0 0 0 0 0 274s 802s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16200s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16300s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16400s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16500s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16600s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16700s 967 1 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16800s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 16900s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17000s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17100s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17200s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17300s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17400s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17500s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17600s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17700s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17800s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 17900s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18000s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18100s 967 0 0 0 0 0 274s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18200s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18300s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18400s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18500s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18600s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18700s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18800s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 18900s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19000s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19100s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19200s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19300s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19400s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19500s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19600s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19700s 967 0 0 0 0 0 275s 801s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19800s 967 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 19900s 966 1 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20000s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20100s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20200s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20300s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20400s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20500s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20600s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20700s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20800s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 20900s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21000s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21100s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21200s 966 0 0 0 0 0 275s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21300s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21400s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21500s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21600s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21700s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21800s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 21900s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22000s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22100s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22200s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22300s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22400s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22500s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22600s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22700s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22800s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 22900s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23000s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23100s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23200s 966 0 0 0 0 0 276s 800s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23300s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23400s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23500s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23600s 966 1 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23700s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23800s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 23900s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24000s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24100s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24200s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24300s 966 0 0 0 0 0 276s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24400s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24500s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24600s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24700s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24800s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 24900s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25000s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25100s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25200s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25300s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25400s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25500s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25600s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25700s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25800s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 25900s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26000s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26100s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26200s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26300s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26400s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26500s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26600s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26700s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26800s 966 0 0 0 0 0 277s 799s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 26900s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27000s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27100s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27200s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27300s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27400s 966 0 0 0 0 0 277s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27500s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27600s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27700s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27800s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 27900s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28000s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28100s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28200s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28300s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28400s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28500s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28600s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28700s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28800s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 28900s 966 1 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29000s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29100s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29200s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29300s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29400s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29500s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29600s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29700s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29800s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 29900s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30000s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30100s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30200s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30300s 966 0 0 0 0 0 278s 798s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30400s 966 0 0 0 0 0 278s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30500s 966 0 0 0 0 0 278s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30600s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30700s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30800s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 30900s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31000s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31100s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31200s 966 1 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31300s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31400s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31500s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31600s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31700s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31800s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 31900s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32000s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32100s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32200s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32300s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32400s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32500s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32600s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32700s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32800s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 32900s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33000s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33100s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33200s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33300s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33400s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33500s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33600s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33700s 966 0 0 0 0 0 279s 797s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33800s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 33900s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34000s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34100s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34200s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34300s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34400s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34500s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34600s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34700s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34800s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 34900s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35000s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35100s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35200s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35300s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35400s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35500s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35600s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35700s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35800s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 35900s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36000s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36100s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36200s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36300s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36400s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36500s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36600s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36700s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36800s 966 0 0 0 0 0 280s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 36900s 966 0 0 0 0 0 281s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37000s 966 0 0 0 0 0 281s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37100s 966 0 0 0 0 0 281s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37200s 966 0 0 0 0 0 281s 796s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37300s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37400s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37500s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37600s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37700s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37800s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 37900s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38000s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38100s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38200s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38300s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38400s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38500s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38600s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38700s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38800s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 38900s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39000s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39100s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39200s 966 1 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39300s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39400s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39500s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39600s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39700s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39800s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 39900s 966 0 0 0 0 0 281s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40000s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40100s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40200s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40300s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40400s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40500s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40600s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40700s 966 0 0 0 0 0 282s 795s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40800s 966 1 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 40900s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41000s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41100s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41200s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41300s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41400s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41500s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41600s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41700s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41800s 966 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 41900s 965 1 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42000s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42100s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42200s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42300s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42400s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42500s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42600s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42700s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42800s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 42900s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43000s 965 0 0 0 0 0 282s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43100s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43200s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43300s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43400s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43500s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43600s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43700s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43800s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 43900s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44000s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44100s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44200s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44300s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44400s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44500s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44600s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44700s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44800s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 44900s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45000s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45100s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45200s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45300s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45400s 965 0 0 0 0 0 283s 794s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45500s 965 0 0 0 0 0 283s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45600s 965 0 0 0 0 0 283s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45700s 965 0 0 0 0 0 283s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45800s 965 0 0 0 0 0 283s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 45900s 965 1 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46000s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46100s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46200s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46300s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46400s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46500s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46600s 965 1 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46700s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46800s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 46900s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47000s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47100s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47200s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47300s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47400s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47500s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47600s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47700s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47800s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 47900s 965 1 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48000s 965 1 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48100s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48200s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48300s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48400s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48500s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48600s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48700s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48800s 965 0 0 0 0 0 284s 793s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 48900s 965 0 0 0 0 0 284s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49000s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49100s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49200s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49300s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49400s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49500s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49600s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49700s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49800s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 49900s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50000s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50100s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50200s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50300s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50400s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50500s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50600s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50700s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50800s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 50900s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51000s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51100s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51200s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51300s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51400s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51500s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51600s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51700s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51800s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 51900s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52000s 965 0 0 0 0 0 285s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52100s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52200s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52300s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52400s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52500s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52600s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52700s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52800s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 52900s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53000s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53100s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53200s 965 0 0 0 0 0 286s 792s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53300s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53400s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53500s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53600s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53700s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53800s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 53900s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54000s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54100s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54200s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54300s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54400s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54500s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54600s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54700s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54800s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 54900s 965 0 0 0 0 0 286s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55000s 965 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55100s 965 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55200s 964 1 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55300s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55400s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55500s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55600s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55700s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55800s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 55900s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56000s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56100s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56200s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56300s 964 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56400s 963 1 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56500s 963 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56600s 963 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56700s 963 0 0 0 0 0 287s 791s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56800s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 56900s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57000s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57100s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57200s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57300s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57400s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57500s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57600s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57700s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57800s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 57900s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58000s 963 0 0 0 0 0 287s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58100s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58200s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58300s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58400s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58500s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58600s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58700s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58800s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 58900s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59000s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59100s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59200s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59300s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59400s 963 1 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59500s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59600s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59700s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59800s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 59900s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60000s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60100s 963 0 0 0 0 0 288s 790s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60200s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60300s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60400s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60500s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60600s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60700s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60800s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 60900s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61000s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61100s 963 0 0 0 0 0 288s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61200s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61300s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61400s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61500s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61600s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61700s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61800s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 61900s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62000s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62100s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62200s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62300s 963 2 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62400s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62500s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62600s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62700s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62800s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 62900s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63000s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63100s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63200s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63300s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63400s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63500s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63600s 963 0 0 0 0 0 289s 789s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63700s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63800s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 63900s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64000s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64100s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64200s 963 0 0 0 0 0 289s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64300s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64400s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64500s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64600s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64700s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64800s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 64900s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65000s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65100s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65200s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65300s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65400s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65500s 963 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65600s 962 1 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65700s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65800s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 65900s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66000s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66100s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66200s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66300s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66400s 962 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66500s 961 1 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66600s 961 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66700s 961 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66800s 961 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 66900s 961 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67000s 961 0 0 0 0 0 290s 788s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67100s 961 0 0 0 0 0 290s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67200s 961 0 0 0 0 0 290s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67300s 961 0 0 0 0 0 290s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67400s 961 0 0 0 0 0 290s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67500s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67600s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67700s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67800s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 67900s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68000s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68100s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68200s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68300s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68400s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68500s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68600s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68700s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68800s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 68900s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69000s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69100s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69200s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69300s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69400s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69500s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69600s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69700s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69800s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 69900s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70000s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70100s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70200s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70300s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70400s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70500s 961 0 0 0 0 0 291s 787s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70600s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70700s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70800s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 70900s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71000s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71100s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71200s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71300s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71400s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71500s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71600s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71700s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71800s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 71900s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72000s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72100s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72200s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72300s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72400s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72500s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72600s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72700s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72800s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 72900s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73000s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73100s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73200s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73300s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73400s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73500s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73600s 961 0 0 0 0 0 292s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73700s 961 0 0 0 0 0 293s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73800s 961 0 0 0 0 0 293s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 73900s 960 1 0 0 0 0 293s 786s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74000s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74100s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74200s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74300s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74400s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74500s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74600s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74700s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74800s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 74900s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75000s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75100s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75200s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75300s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75400s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75500s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75600s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75700s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75800s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 75900s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76000s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76100s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76200s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76300s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76400s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76500s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76600s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76700s 960 0 0 0 0 0 293s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76800s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 76900s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77000s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77100s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77200s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77300s 960 0 0 0 0 0 294s 785s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77400s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77500s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77600s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77700s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77800s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 77900s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78000s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78100s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78200s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78300s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78400s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78500s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78600s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78700s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78800s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 78900s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79000s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79100s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79200s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79300s 960 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79400s 959 1 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79500s 958 1 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79600s 958 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79700s 958 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79800s 958 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 79900s 958 0 0 0 0 0 294s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80000s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80100s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80200s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80300s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80400s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80500s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80600s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80700s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80800s 958 0 0 0 0 0 295s 784s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 80900s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81000s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81100s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81200s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81300s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81400s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81500s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81600s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81700s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81800s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 81900s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82000s 958 1 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82100s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82200s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82300s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82400s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82500s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82600s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82700s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82800s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 82900s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83000s 958 0 0 0 0 0 295s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83100s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83200s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83300s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83400s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83500s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83600s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83700s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83800s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 83900s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84000s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84100s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84200s 958 0 0 0 0 0 296s 783s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84300s 958 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84400s 958 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84500s 957 1 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84600s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84700s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84800s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 84900s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85000s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85100s 957 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85200s 956 1 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85300s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85400s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85500s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85600s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85700s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85800s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 85900s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86000s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86100s 956 0 0 0 0 0 296s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86200s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86300s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86400s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86500s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86600s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86700s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86800s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 86900s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87000s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87100s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87200s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87300s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87400s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87500s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87600s 956 0 0 0 0 0 297s 782s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87700s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87800s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 87900s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88000s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88100s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88200s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88300s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88400s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88500s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88600s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88700s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88800s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 88900s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89000s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89100s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89200s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89300s 956 0 0 0 0 0 297s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89400s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89500s 956 1 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89600s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89700s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89800s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 89900s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90000s 956 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90100s 955 1 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90200s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90300s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90400s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90500s 955 1 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90600s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90700s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90800s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 90900s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91000s 955 0 0 0 0 0 298s 781s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91100s 955 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91200s 955 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91300s 954 1 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91400s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91500s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91600s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91700s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91800s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 91900s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92000s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92100s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92200s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92300s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92400s 954 0 0 0 0 0 298s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92500s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92600s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92700s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92800s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 92900s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93000s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93100s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93200s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93300s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93400s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93500s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93600s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93700s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93800s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 93900s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94000s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94100s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94200s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94300s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94400s 954 0 0 0 0 0 299s 780s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94500s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94600s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94700s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94800s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 94900s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95000s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95100s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95200s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95300s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95400s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95500s 954 0 0 0 0 0 299s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95600s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95700s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95800s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 95900s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96000s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96100s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96200s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96300s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96400s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96500s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96600s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96700s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96800s 954 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 96900s 953 1 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97000s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97100s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97200s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97300s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97400s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97500s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97600s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97700s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97800s 953 0 0 0 0 0 300s 779s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 97900s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98000s 953 2 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98100s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98200s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98300s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98400s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98500s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98600s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98700s 953 0 0 0 0 0 300s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98800s 953 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 98900s 953 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99000s 953 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99100s 953 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99200s 952 1 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99300s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99400s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99500s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99600s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99700s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99800s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 99900s 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1667m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1668m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1670m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1672m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1673m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1675m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1677m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1678m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1680m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1682m 952 1 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1683m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1685m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1687m 952 0 0 0 0 0 301s 778s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1688m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1690m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1692m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1693m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1695m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1697m 952 0 0 0 0 0 301s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1698m 952 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1700m 952 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1702m 952 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1703m 952 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1705m 952 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1707m 951 1 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1708m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1710m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1712m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1713m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1715m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1717m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1718m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1720m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1722m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1723m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1725m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1727m 951 1 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1728m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1730m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1732m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1733m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1735m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1737m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1738m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1740m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1742m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1743m 951 0 0 0 0 0 302s 777s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1745m 951 0 0 0 0 0 302s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1747m 951 0 0 0 0 0 302s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1748m 950 1 0 0 0 0 302s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1750m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1752m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1753m 950 1 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1755m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1757m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1758m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1760m 949 1 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1762m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1763m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1765m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1767m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1768m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1770m 949 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1772m 950 1 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1773m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1775m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1777m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1778m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1780m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1782m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1783m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1785m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1787m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1788m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1790m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1792m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1793m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1795m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1797m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1798m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1800m 950 0 0 0 0 0 303s 776s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1802m 950 0 0 0 0 0 303s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1803m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1805m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1807m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1808m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1810m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1812m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1813m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1815m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1817m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1818m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1820m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1822m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1823m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1825m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1827m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1828m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1830m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1832m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1833m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1835m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1837m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1838m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1840m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1842m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1843m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1845m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1847m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1848m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1850m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1852m 950 0 0 0 0 0 304s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1853m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1855m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1857m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1858m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1860m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1862m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1863m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1865m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1867m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1868m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1870m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1872m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1873m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1875m 950 0 0 0 0 0 305s 775s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1877m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1878m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1880m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1882m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1883m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1885m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1887m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1888m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1890m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1892m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1893m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1895m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1897m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1898m 950 0 0 0 0 0 305s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1900m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1902m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1903m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1905m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1907m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1908m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1910m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1912m 950 1 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1913m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1915m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1917m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1918m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1920m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1922m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1923m 951 1 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1925m 951 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1927m 951 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1928m 951 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1930m 951 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1932m 950 1 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1933m 950 0 0 0 0 0 306s 774s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1935m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1937m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1938m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1940m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1942m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1943m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1945m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1947m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1948m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1950m 950 0 0 0 0 0 306s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1952m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1953m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1955m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1957m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1958m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1960m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1962m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1963m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1965m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1967m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1968m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1970m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1972m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1973m 950 1 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1975m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1977m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1978m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1980m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1982m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1983m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1985m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1987m 950 1 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1988m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1990m 950 0 0 0 0 0 307s 773s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1992m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1993m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1995m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1997m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 1998m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2000m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2002m 950 0 0 0 0 0 307s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2003m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2005m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2007m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2008m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2010m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2012m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2013m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2015m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2017m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2018m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2020m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2022m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2023m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2025m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2027m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2028m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2030m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2032m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2033m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2035m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2037m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2038m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2040m 950 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2042m 949 1 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2043m 949 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2045m 949 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2047m 949 0 0 0 0 0 308s 772s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2048m 949 0 0 0 0 0 308s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2050m 949 0 0 0 0 0 308s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2052m 949 0 0 0 0 0 308s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2053m 949 0 0 0 0 0 308s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2055m 949 0 0 0 0 0 308s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2057m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2058m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2060m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2062m 949 1 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2063m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2065m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2067m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2068m 950 1 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2070m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2072m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2073m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2075m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2077m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2078m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2080m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2082m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2083m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2085m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2087m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2088m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2090m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2092m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2093m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2095m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2097m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2098m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2100m 950 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2102m 949 1 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2103m 949 0 0 0 0 0 309s 771s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2105m 949 0 0 0 0 0 309s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2107m 949 0 0 0 0 0 309s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2108m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2110m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2112m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2113m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2115m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2117m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2118m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2120m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2122m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2123m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2125m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2127m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2128m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2130m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2132m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2133m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2135m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2137m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2138m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2140m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2142m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2143m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2145m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2147m 949 1 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2148m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2150m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2152m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2153m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2155m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2157m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2158m 949 0 0 0 0 0 310s 770s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2160m 949 0 0 0 0 0 310s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2162m 949 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2163m 949 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2165m 949 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2167m 948 1 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2168m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2170m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2172m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2173m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2175m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2177m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2178m 948 1 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2180m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2182m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2183m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2185m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2187m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2188m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2190m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2192m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2193m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2195m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2197m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2198m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2200m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2202m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2203m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2205m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2207m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2208m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2210m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2212m 948 0 0 0 0 0 311s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2213m 948 0 0 0 0 0 312s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2215m 948 0 0 0 0 0 312s 769s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2217m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2218m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2220m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2222m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2223m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2225m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2227m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2228m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2230m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2232m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2233m 948 2 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2235m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2237m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2238m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2240m 948 1 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2242m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2243m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2245m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2247m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2248m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2250m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2252m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2253m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2255m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2257m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2258m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2260m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2262m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2263m 948 0 0 0 0 0 312s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2265m 948 0 0 0 0 0 313s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2267m 948 0 0 0 0 0 313s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2268m 948 0 0 0 0 0 313s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2270m 948 0 0 0 0 0 313s 768s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2272m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2273m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2275m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2277m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2278m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2280m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2282m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2283m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2285m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2287m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2288m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2290m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2292m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2293m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2295m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2297m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2298m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2300m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2302m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2303m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2305m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2307m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2308m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2310m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2312m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2313m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2315m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2317m 948 0 0 0 0 0 313s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2318m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2320m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2322m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2323m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2325m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2327m 948 0 0 0 0 0 314s 767s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2328m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2330m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2332m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2333m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2335m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2337m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2338m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2340m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2342m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2343m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2345m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2347m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2348m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2350m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2352m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2353m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2355m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2357m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2358m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2360m 948 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2362m 947 1 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2363m 947 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2365m 947 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2367m 947 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2368m 947 0 0 0 0 0 314s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2370m 947 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2372m 947 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2373m 947 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2375m 948 1 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2377m 948 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2378m 948 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2380m 948 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2382m 948 0 0 0 0 0 315s 766s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2383m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2385m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2387m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2388m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2390m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2392m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2393m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2395m 949 1 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2397m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2398m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2400m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2402m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2403m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2405m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2407m 949 1 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2408m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2410m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2412m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2413m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2415m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2417m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2418m 949 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2420m 948 1 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2422m 948 0 0 0 0 0 315s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2423m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2425m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2427m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2428m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2430m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2432m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2433m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2435m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2437m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2438m 948 0 0 0 0 0 316s 765s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2440m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2442m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2443m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2445m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2447m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2448m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2450m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2452m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2453m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2455m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2457m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2458m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2460m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2462m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2463m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2465m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2467m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2468m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2470m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2472m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2473m 948 0 0 0 0 0 316s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2475m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2477m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2478m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2480m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2482m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2483m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2485m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2487m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2488m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2490m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2492m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2493m 948 0 0 0 0 0 317s 764s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2495m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2497m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2498m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2500m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2502m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2503m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2505m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2507m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2508m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2510m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2512m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2513m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2515m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2517m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2518m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2520m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2522m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2523m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2525m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2527m 948 0 0 0 0 0 317s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2528m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2530m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2532m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2533m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2535m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2537m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2538m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2540m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2542m 948 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2543m 949 1 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2545m 949 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2547m 949 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2548m 949 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2550m 949 0 0 0 0 0 318s 763s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2552m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2553m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2555m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2557m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2558m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2560m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2562m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2563m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2565m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2567m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2568m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2570m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2572m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2573m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2575m 949 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2577m 948 1 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2578m 948 0 0 0 0 0 318s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2580m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2582m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2583m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2585m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2587m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2588m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2590m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2592m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2593m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2595m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2597m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2598m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2600m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2602m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2603m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2605m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2607m 948 0 0 0 0 0 319s 762s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2608m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2610m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2612m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2613m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2615m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2617m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2618m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2620m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2622m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2623m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2625m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2627m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2628m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2630m 948 0 0 0 0 0 319s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2632m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2633m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2635m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2637m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2638m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2640m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2642m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2643m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2645m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2647m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2648m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2650m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2652m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2653m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2655m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2657m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2658m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2660m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2662m 948 0 0 0 0 0 320s 761s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2663m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2665m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2667m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2668m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2670m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2672m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2673m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2675m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2677m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2678m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2680m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2682m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2683m 948 0 0 0 0 0 320s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2685m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2687m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2688m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2690m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2692m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2693m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2695m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2697m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2698m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2700m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2702m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2703m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2705m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2707m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2708m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2710m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2712m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2713m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2715m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2717m 948 0 0 0 0 0 321s 760s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2718m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2720m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2722m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2723m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2725m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2727m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2728m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2730m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2732m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2733m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2735m 948 0 0 0 0 0 321s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2737m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2738m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2740m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2742m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2743m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2745m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2747m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2748m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2750m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2752m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2753m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2755m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2757m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2758m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2760m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2762m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2763m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2765m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2767m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2768m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2770m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2772m 948 0 0 0 0 0 322s 759s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2773m 948 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2775m 948 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2777m 948 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2778m 948 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2780m 947 1 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2782m 947 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2783m 947 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2785m 947 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2787m 947 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2788m 947 0 0 0 0 0 322s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2790m 947 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2792m 946 1 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2793m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2795m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2797m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2798m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2800m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2802m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2803m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2805m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2807m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2808m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2810m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2812m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2813m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2815m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2817m 946 1 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2818m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2820m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2822m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2823m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2825m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2827m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2828m 946 0 0 0 0 0 323s 758s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2830m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2832m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2833m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2835m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2837m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2838m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2840m 946 0 0 0 0 0 323s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2842m 946 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2843m 946 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2845m 945 1 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2847m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2848m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2850m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2852m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2853m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2855m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2857m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2858m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2860m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2862m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2863m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2865m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2867m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2868m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2870m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2872m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2873m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2875m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2877m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2878m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 6 2880m 945 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 0s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 100s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 200s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 300s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 400s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 500s 1035 0 0 0 0 0 324s 757s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 600s 1035 0 0 0 0 0 324s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 700s 1034 1 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 800s 1034 2 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 900s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1000s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1100s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1200s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1300s 1034 1 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1400s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1500s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1600s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1700s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1800s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1900s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2000s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2100s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2200s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2300s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2400s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2500s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2600s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2700s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2800s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2900s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3000s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3100s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3200s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3300s 1034 0 0 0 0 0 325s 756s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3400s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3500s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3600s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3700s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3800s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 3900s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4000s 1034 0 0 0 0 0 325s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4100s 1034 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4200s 1034 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4300s 1034 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4400s 1033 1 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4500s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4600s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4700s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4800s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 4900s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5000s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5100s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5200s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5300s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5400s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5500s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5600s 1033 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5700s 1032 1 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5800s 1032 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 5900s 1032 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6000s 1031 1 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6100s 1031 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6200s 1031 0 0 0 0 0 326s 755s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6300s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6400s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6500s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6600s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6700s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6800s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 6900s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7000s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7100s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7200s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7300s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7400s 1031 0 0 0 0 0 326s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7500s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7600s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7700s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7800s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 7900s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8000s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8100s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8200s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8300s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8400s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8500s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8600s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8700s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8800s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 8900s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9000s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9100s 1031 0 0 0 0 0 327s 754s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9200s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9300s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9400s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9500s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9600s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9700s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9800s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 9900s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10000s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10100s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10200s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10300s 1031 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10400s 1030 1 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10500s 1030 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10600s 1030 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10700s 1030 0 0 0 0 0 327s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10800s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 10900s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11000s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11100s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11200s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11300s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11400s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11500s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11600s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11700s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11800s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 11900s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12000s 1030 0 0 0 0 0 328s 753s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12100s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12200s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12300s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12400s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12500s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12600s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12700s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12800s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 12900s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13000s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13100s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13200s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13300s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13400s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13500s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13600s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13700s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13800s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 13900s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14000s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14100s 1030 0 0 0 0 0 328s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14200s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14300s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14400s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14500s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14600s 1030 1 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14700s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14800s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 14900s 1030 0 0 0 0 0 329s 752s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15000s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15100s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15200s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15300s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15400s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15500s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15600s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15700s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15800s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 15900s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16000s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16100s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16200s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16300s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16400s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16500s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16600s 1030 1 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16700s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16800s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 16900s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17000s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17100s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17200s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17300s 1030 1 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17400s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17500s 1030 0 0 0 0 0 329s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17600s 1030 0 0 0 0 0 330s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17700s 1030 0 0 0 0 0 330s 751s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17800s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 17900s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18000s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18100s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18200s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18300s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18400s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18500s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18600s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18700s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18800s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 18900s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19000s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19100s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19200s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19300s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19400s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19500s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19600s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19700s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19800s 1030 1 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 19900s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20000s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20100s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20200s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20300s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20400s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20500s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20600s 1030 0 0 0 0 0 330s 750s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20700s 1030 0 0 0 0 0 330s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20800s 1030 0 0 0 0 0 330s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 20900s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21000s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21100s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21200s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21300s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21400s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21500s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21600s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21700s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21800s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 21900s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22000s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22100s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22200s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22300s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22400s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22500s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22600s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22700s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22800s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 22900s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23000s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23100s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23200s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23300s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23400s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23500s 1030 0 0 0 0 0 331s 749s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23600s 1030 0 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23700s 1030 0 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23800s 1029 1 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 23900s 1029 0 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24000s 1029 0 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24100s 1029 1 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24200s 1029 0 0 0 0 0 331s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24300s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24400s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24500s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24600s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24700s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24800s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 24900s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25000s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25100s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25200s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25300s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25400s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25500s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25600s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25700s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25800s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 25900s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26000s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26100s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26200s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26300s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26400s 1029 0 0 0 0 0 332s 748s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26500s 1029 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26600s 1029 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26700s 1029 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26800s 1029 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 26900s 1029 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27000s 1028 1 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27100s 1028 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27200s 1028 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27300s 1028 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27400s 1028 1 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27500s 1028 0 0 0 0 0 332s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27600s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27700s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27800s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 27900s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28000s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28100s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28200s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28300s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28400s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28500s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28600s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28700s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28800s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 28900s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29000s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29100s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29200s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29300s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29400s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29500s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29600s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29700s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29800s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 29900s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30000s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30100s 1028 0 0 0 0 0 333s 747s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30200s 1028 0 0 0 0 0 333s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30300s 1028 0 0 0 0 0 333s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30400s 1028 0 0 0 0 0 333s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30500s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30600s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30700s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30800s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 30900s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31000s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31100s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31200s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31300s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31400s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31500s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31600s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31700s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31800s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 31900s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32000s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32100s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32200s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32300s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32400s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32500s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32600s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32700s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32800s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 32900s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33000s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33100s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33200s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33300s 1028 0 0 0 0 0 334s 746s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33400s 1028 0 0 0 0 0 334s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33500s 1028 0 0 0 0 0 334s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33600s 1028 0 0 0 0 0 334s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33700s 1028 0 0 0 0 0 334s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33800s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 33900s 1028 1 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34000s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34100s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34200s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34300s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34400s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34500s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34600s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34700s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34800s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 34900s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35000s 1028 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35100s 1027 1 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35200s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35300s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35400s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35500s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35600s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35700s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35800s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 35900s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36000s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36100s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36200s 1027 0 0 0 0 0 335s 745s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36300s 1027 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36400s 1026 1 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36500s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36600s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36700s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36800s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 36900s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37000s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37100s 1026 0 0 0 0 0 335s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37200s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37300s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37400s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37500s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37600s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37700s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37800s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 37900s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38000s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38100s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38200s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38300s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38400s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38500s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38600s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38700s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38800s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 38900s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39000s 1026 0 0 0 0 0 336s 744s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39100s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39200s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39300s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39400s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39500s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39600s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39700s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39800s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 39900s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40000s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40100s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40200s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40300s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40400s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40500s 1026 0 0 0 0 0 336s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40600s 1026 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40700s 1026 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40800s 1027 1 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 40900s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41000s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41100s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41200s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41300s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41400s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41500s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41600s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41700s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41800s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 41900s 1027 0 0 0 0 0 337s 743s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42000s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42100s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42200s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42300s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42400s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42500s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42600s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42700s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42800s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 42900s 1027 1 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43000s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43100s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43200s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43300s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43400s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43500s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43600s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43700s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43800s 1027 0 0 0 0 0 337s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 43900s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44000s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44100s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44200s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44300s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44400s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44500s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44600s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44700s 1027 0 0 0 0 0 338s 742s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44800s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 44900s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45000s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45100s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45200s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45300s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45400s 1027 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45500s 1026 1 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45600s 1026 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45700s 1026 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45800s 1026 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 45900s 1026 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46000s 1026 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46100s 1025 1 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46200s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46300s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46400s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46500s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46600s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46700s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46800s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 46900s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47000s 1025 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47100s 1024 1 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47200s 1024 0 0 0 0 0 338s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47300s 1024 0 0 0 0 0 339s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47400s 1024 0 0 0 0 0 339s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47500s 1024 0 0 0 0 0 339s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47600s 1024 0 0 0 0 0 339s 741s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47700s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47800s 1025 1 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 47900s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48000s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48100s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48200s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48300s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48400s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48500s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48600s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48700s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48800s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 48900s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49000s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49100s 1025 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49200s 1024 1 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49300s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49400s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49500s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49600s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49700s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49800s 1024 1 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 49900s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50000s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50100s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50200s 1024 1 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50300s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50400s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50500s 1024 0 0 0 0 0 339s 740s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50600s 1024 0 0 0 0 0 339s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50700s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50800s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 50900s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51000s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51100s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51200s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51300s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51400s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51500s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51600s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51700s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51800s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 51900s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52000s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52100s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52200s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52300s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52400s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52500s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52600s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52700s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52800s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 52900s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53000s 1024 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53100s 1023 1 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53200s 1023 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53300s 1023 0 0 0 0 0 340s 739s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53400s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53500s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53600s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53700s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53800s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 53900s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54000s 1023 0 0 0 0 0 340s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54100s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54200s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54300s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54400s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54500s 1023 1 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54600s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54700s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54800s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 54900s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55000s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55100s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55200s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55300s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55400s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55500s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55600s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55700s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55800s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 55900s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56000s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56100s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56200s 1023 0 0 0 0 0 341s 738s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56300s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56400s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56500s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56600s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56700s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56800s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 56900s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57000s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57100s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57200s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57300s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57400s 1023 0 0 0 0 0 341s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57500s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57600s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57700s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57800s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 57900s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58000s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58100s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58200s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58300s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58400s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58500s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58600s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58700s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58800s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 58900s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59000s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59100s 1023 0 0 0 0 0 342s 737s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59200s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59300s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59400s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59500s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59600s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59700s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59800s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 59900s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60000s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60100s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60200s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60300s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60400s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60500s 1023 0 0 0 0 0 342s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60600s 1023 1 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60700s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60800s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 60900s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61000s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61100s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61200s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61300s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61400s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61500s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61600s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61700s 1023 1 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61800s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 61900s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62000s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62100s 1023 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62200s 1023 1 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62300s 1022 1 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62400s 1022 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62500s 1022 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62600s 1022 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62700s 1022 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62800s 1022 0 0 0 0 0 343s 736s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 62900s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63000s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63100s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63200s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63300s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63400s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63500s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63600s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63700s 1022 0 0 0 0 0 343s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63800s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 63900s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64000s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64100s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64200s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64300s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64400s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64500s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64600s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64700s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64800s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 64900s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65000s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65100s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65200s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65300s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65400s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65500s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65600s 1022 0 0 0 0 0 344s 735s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65700s 1022 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65800s 1022 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 65900s 1022 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66000s 1021 1 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66100s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66200s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66300s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66400s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66500s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66600s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66700s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66800s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 66900s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67000s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67100s 1021 0 0 0 0 0 344s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67200s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67300s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67400s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67500s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67600s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67700s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67800s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 67900s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68000s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68100s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68200s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68300s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68400s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68500s 1021 0 0 0 0 0 345s 734s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68600s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68700s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68800s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 68900s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69000s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69100s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69200s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69300s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69400s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69500s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69600s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69700s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69800s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 69900s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70000s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70100s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70200s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70300s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70400s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70500s 1021 0 0 0 0 0 345s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70600s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70700s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70800s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 70900s 1021 1 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71000s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71100s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71200s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71300s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71400s 1021 0 0 0 0 0 346s 733s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71500s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71600s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71700s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71800s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 71900s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72000s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72100s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72200s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72300s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72400s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72500s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72600s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72700s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72800s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 72900s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73000s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73100s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73200s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73300s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73400s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73500s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73600s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73700s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73800s 1021 0 0 0 0 0 346s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 73900s 1021 0 0 0 0 0 347s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74000s 1021 0 0 0 0 0 347s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74100s 1021 0 0 0 0 0 347s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74200s 1021 0 0 0 0 0 347s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74300s 1021 0 0 0 0 0 347s 732s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74400s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74500s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74600s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74700s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74800s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 74900s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75000s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75100s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75200s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75300s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75400s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75500s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75600s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75700s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75800s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 75900s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76000s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76100s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76200s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76300s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76400s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76500s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76600s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76700s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76800s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 76900s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77000s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77100s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77200s 1021 0 0 0 0 0 347s 731s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77300s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77400s 1021 1 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77500s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77600s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77700s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77800s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 77900s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78000s 1021 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78100s 1020 1 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78200s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78300s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78400s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78500s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78600s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78700s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78800s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 78900s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79000s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79100s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79200s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79300s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79400s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79500s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79600s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79700s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79800s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 79900s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80000s 1020 0 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80100s 1019 1 0 0 0 0 348s 730s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80200s 1019 0 0 0 0 0 348s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80300s 1019 0 0 0 0 0 348s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80400s 1019 0 0 0 0 0 348s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80500s 1019 0 0 0 0 0 348s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80600s 1019 0 0 0 0 0 348s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80700s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80800s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 80900s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81000s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81100s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81200s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81300s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81400s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81500s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81600s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81700s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81800s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 81900s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82000s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82100s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82200s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82300s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82400s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82500s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82600s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82700s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82800s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 82900s 1019 1 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83000s 1019 0 0 0 0 0 349s 729s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83100s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83200s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83300s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83400s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83500s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83600s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83700s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83800s 1019 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 83900s 1018 1 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84000s 1018 0 0 0 0 0 349s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84100s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84200s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84300s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84400s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84500s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84600s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84700s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84800s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 84900s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85000s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85100s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85200s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85300s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85400s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85500s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85600s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85700s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85800s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 85900s 1018 0 0 0 0 0 350s 728s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86000s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86100s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86200s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86300s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86400s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86500s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86600s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86700s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86800s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 86900s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87000s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87100s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87200s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87300s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87400s 1018 0 0 0 0 0 350s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87500s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87600s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87700s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87800s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 87900s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88000s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88100s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88200s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88300s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88400s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88500s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88600s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88700s 1018 0 0 0 0 0 351s 727s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88800s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 88900s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89000s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89100s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89200s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89300s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89400s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89500s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89600s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89700s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89800s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 89900s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90000s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90100s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90200s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90300s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90400s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90500s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90600s 1018 1 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90700s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90800s 1018 0 0 0 0 0 351s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 90900s 1018 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91000s 1018 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91100s 1017 1 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91200s 1017 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91300s 1017 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91400s 1017 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91500s 1017 0 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91600s 1016 1 0 0 0 0 352s 726s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91700s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91800s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 91900s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92000s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92100s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92200s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92300s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92400s 1016 1 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92500s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92600s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92700s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92800s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 92900s 1016 1 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93000s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93100s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93200s 1016 1 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93300s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93400s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93500s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93600s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93700s 1016 1 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93800s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 93900s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94000s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94100s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94200s 1016 0 0 0 0 0 352s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94300s 1016 0 0 0 0 0 353s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94400s 1016 0 0 0 0 0 353s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94500s 1016 1 0 0 0 0 353s 725s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94600s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94700s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94800s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 94900s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95000s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95100s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95200s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95300s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95400s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95500s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95600s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95700s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95800s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 95900s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96000s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96100s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96200s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96300s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96400s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96500s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96600s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96700s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96800s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 96900s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97000s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97100s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97200s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97300s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97400s 1016 0 0 0 0 0 353s 724s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97500s 1016 0 0 0 0 0 353s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97600s 1016 0 0 0 0 0 353s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97700s 1016 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97800s 1016 1 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 97900s 1016 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98000s 1016 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98100s 1016 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98200s 1016 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98300s 1015 1 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98400s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98500s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98600s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98700s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98800s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 98900s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99000s 1015 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99100s 1014 1 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99200s 1014 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99300s 1013 1 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99400s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99500s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99600s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99700s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99800s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 99900s 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1667m 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1668m 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1670m 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1672m 1013 0 0 0 0 0 354s 723s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1673m 1013 1 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1675m 1013 0 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1677m 1013 0 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1678m 1013 0 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1680m 1013 0 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1682m 1013 0 0 0 0 0 354s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1683m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1685m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1687m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1688m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1690m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1692m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1693m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1695m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1697m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1698m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1700m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1702m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1703m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1705m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1707m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1708m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1710m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1712m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1713m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1715m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1717m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1718m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1720m 1013 0 0 0 0 0 355s 722s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1722m 1013 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1723m 1013 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1725m 1012 1 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1727m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1728m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1730m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1732m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1733m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1735m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1737m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1738m 1012 0 0 0 0 0 355s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1740m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1742m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1743m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1745m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1747m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1748m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1750m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1752m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1753m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1755m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1757m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1758m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1760m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1762m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1763m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1765m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1767m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1768m 1012 0 0 0 0 0 356s 721s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1770m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1772m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1773m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1775m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1777m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1778m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1780m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1782m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1783m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1785m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1787m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1788m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1790m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1792m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1793m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1795m 1012 0 0 0 0 0 356s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1797m 1012 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1798m 1012 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1800m 1012 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1802m 1012 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1803m 1011 1 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1805m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1807m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1808m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1810m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1812m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1813m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1815m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1817m 1011 0 0 0 0 0 357s 720s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1818m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1820m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1822m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1823m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1825m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1827m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1828m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1830m 1011 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1832m 1010 1 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1833m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1835m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1837m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1838m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1840m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1842m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1843m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1845m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1847m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1848m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1850m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1852m 1010 0 0 0 0 0 357s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1853m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1855m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1857m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1858m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1860m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1862m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1863m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1865m 1010 0 0 0 0 0 358s 719s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1867m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1868m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1870m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1872m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1873m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1875m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1877m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1878m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1880m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1882m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1883m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1885m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1887m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1888m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1890m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1892m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1893m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1895m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1897m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1898m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1900m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1902m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1903m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1905m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1907m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1908m 1010 0 0 0 0 0 358s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1910m 1010 0 0 0 0 0 359s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1912m 1010 0 0 0 0 0 359s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1913m 1010 0 0 0 0 0 359s 718s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1915m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1917m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1918m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1920m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1922m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1923m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1925m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1927m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1928m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1930m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1932m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1933m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1935m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1937m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1938m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1940m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1942m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1943m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1945m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1947m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1948m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1950m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1952m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1953m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1955m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1957m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1958m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1960m 1010 0 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1962m 1009 1 0 0 0 0 359s 717s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1963m 1009 0 0 0 0 0 359s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1965m 1009 0 0 0 0 0 359s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1967m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1968m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1970m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1972m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1973m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1975m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1977m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1978m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1980m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1982m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1983m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1985m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1987m 1009 1 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1988m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1990m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1992m 1009 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1993m 1010 1 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1995m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1997m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 1998m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2000m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2002m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2003m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2005m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2007m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2008m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2010m 1010 0 0 0 0 0 360s 716s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2012m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2013m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2015m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2017m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2018m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2020m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2022m 1010 0 0 0 0 0 360s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2023m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2025m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2027m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2028m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2030m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2032m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2033m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2035m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2037m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2038m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2040m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2042m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2043m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2045m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2047m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2048m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2050m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2052m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2053m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2055m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2057m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2058m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2060m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2062m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2063m 1010 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2065m 1009 1 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2067m 1009 0 0 0 0 0 361s 715s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2068m 1009 0 0 0 0 0 361s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2070m 1009 0 0 0 0 0 361s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2072m 1009 0 0 0 0 0 361s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2073m 1009 0 0 0 0 0 361s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2075m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2077m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2078m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2080m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2082m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2083m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2085m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2087m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2088m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2090m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2092m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2093m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2095m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2097m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2098m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2100m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2102m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2103m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2105m 1009 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2107m 1010 2 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2108m 1010 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2110m 1010 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2112m 1010 0 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2113m 1009 1 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2115m 1008 1 0 0 0 0 362s 714s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2117m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2118m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2120m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2122m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2123m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2125m 1008 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2127m 1007 1 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2128m 1007 1 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2130m 1007 0 0 0 0 0 362s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2132m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2133m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2135m 1007 1 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2137m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2138m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2140m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2142m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2143m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2145m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2147m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2148m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2150m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2152m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2153m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2155m 1007 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2157m 1006 1 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2158m 1006 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2160m 1006 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2162m 1006 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2163m 1006 0 0 0 0 0 363s 713s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2165m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2167m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2168m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2170m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2172m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2173m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2175m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2177m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2178m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2180m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2182m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2183m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2185m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2187m 1006 0 0 0 0 0 363s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2188m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2190m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2192m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2193m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2195m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2197m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2198m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2200m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2202m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2203m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2205m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2207m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2208m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2210m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2212m 1006 0 0 0 0 0 364s 712s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2213m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2215m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2217m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2218m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2220m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2222m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2223m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2225m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2227m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2228m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2230m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2232m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2233m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2235m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2237m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2238m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2240m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2242m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2243m 1006 0 0 0 0 0 364s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2245m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2247m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2248m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2250m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2252m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2253m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2255m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2257m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2258m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2260m 1006 0 0 0 0 0 365s 711s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2262m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2263m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2265m 1006 1 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2267m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2268m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2270m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2272m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2273m 1006 1 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2275m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2277m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2278m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2280m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2282m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2283m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2285m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2287m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2288m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2290m 1006 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2292m 1005 1 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2293m 1005 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2295m 1004 1 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2297m 1004 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2298m 1004 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2300m 1004 0 0 0 0 0 365s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2302m 1004 0 0 0 0 0 366s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2303m 1004 0 0 0 0 0 366s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2305m 1004 0 0 0 0 0 366s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2307m 1004 0 0 0 0 0 366s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2308m 1004 0 0 0 0 0 366s 710s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2310m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2312m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2313m 1004 1 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2315m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2317m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2318m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2320m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2322m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2323m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2325m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2327m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2328m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2330m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2332m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2333m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2335m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2337m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2338m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2340m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2342m 1004 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2343m 1003 1 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2345m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2347m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2348m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2350m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2352m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2353m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2355m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2357m 1003 0 0 0 0 0 366s 709s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2358m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2360m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2362m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2363m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2365m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2367m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2368m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2370m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2372m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2373m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2375m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2377m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2378m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2380m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2382m 1003 1 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2383m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2385m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2387m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2388m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2390m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2392m 1003 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2393m 1001 2 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2395m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2397m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2398m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2400m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2402m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2403m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2405m 1001 0 0 0 0 0 367s 708s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2407m 1001 0 0 0 0 0 367s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2408m 1001 0 0 0 0 0 367s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2410m 1001 0 0 0 0 0 367s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2412m 1001 0 0 0 0 0 367s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2413m 1001 0 0 0 0 0 367s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2415m 1001 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2417m 1001 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2418m 1001 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2420m 1000 1 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2422m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2423m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2425m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2427m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2428m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2430m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2432m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2433m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2435m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2437m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2438m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2440m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2442m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2443m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2445m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2447m 999 1 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2448m 1000 1 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2450m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2452m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2453m 1000 0 0 0 0 0 368s 707s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2455m 1000 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2457m 1000 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2458m 999 1 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2460m 998 1 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2462m 998 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2463m 998 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2465m 998 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2467m 998 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2468m 998 1 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2470m 998 0 0 0 0 0 368s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2472m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2473m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2475m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2477m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2478m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2480m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2482m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2483m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2485m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2487m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2488m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2490m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2492m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2493m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2495m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2497m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2498m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2500m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2502m 998 0 0 0 0 0 369s 706s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2503m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2505m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2507m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2508m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2510m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2512m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2513m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2515m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2517m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2518m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2520m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2522m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2523m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2525m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2527m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2528m 998 0 0 0 0 0 369s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2530m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2532m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2533m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2535m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2537m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2538m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2540m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2542m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2543m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2545m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2547m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2548m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2550m 998 0 0 0 0 0 370s 705s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2552m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2553m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2555m 999 1 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2557m 999 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2558m 999 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2560m 999 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2562m 998 1 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2563m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2565m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2567m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2568m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2570m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2572m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2573m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2575m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2577m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2578m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2580m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2582m 998 0 0 0 0 0 370s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2583m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2585m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2587m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2588m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2590m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2592m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2593m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2595m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2597m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2598m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2600m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2602m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2603m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2605m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2607m 998 0 0 0 0 0 371s 704s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2608m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2610m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2612m 998 1 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2613m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2615m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2617m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2618m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2620m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2622m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2623m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2625m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2627m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2628m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2630m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2632m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2633m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2635m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2637m 998 0 0 0 0 0 371s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2638m 998 1 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2640m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2642m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2643m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2645m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2647m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2648m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2650m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2652m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2653m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2655m 998 0 0 0 0 0 372s 703s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2657m 998 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2658m 999 1 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2660m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2662m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2663m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2665m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2667m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2668m 999 1 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2670m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2672m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2673m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2675m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2677m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2678m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2680m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2682m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2683m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2685m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2687m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2688m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2690m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2692m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2693m 999 0 0 0 0 0 372s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2695m 999 0 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2697m 999 0 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2698m 999 1 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2700m 999 0 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2702m 999 0 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2703m 999 0 0 0 0 0 373s 702s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2705m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2707m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2708m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2710m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2712m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2713m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2715m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2717m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2718m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2720m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2722m 999 1 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2723m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2725m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2727m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2728m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2730m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2732m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2733m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2735m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2737m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2738m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2740m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2742m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2743m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2745m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2747m 999 1 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2748m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2750m 999 0 0 0 0 0 373s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2752m 999 0 0 0 0 0 374s 701s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2753m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2755m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2757m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2758m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2760m 999 1 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2762m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2763m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2765m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2767m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2768m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2770m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2772m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2773m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2775m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2777m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2778m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2780m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2782m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2783m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2785m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2787m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2788m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2790m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2792m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2793m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2795m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2797m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2798m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2800m 999 0 0 0 0 0 374s 700s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2802m 999 0 0 0 0 0 374s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2803m 999 0 0 0 0 0 374s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2805m 999 0 0 0 0 0 374s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2807m 999 0 0 0 0 0 374s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2808m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2810m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2812m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2813m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2815m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2817m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2818m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2820m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2822m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2823m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2825m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2827m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2828m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2830m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2832m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2833m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2835m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2837m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2838m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2840m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2842m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2843m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2845m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2847m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2848m 999 0 0 0 0 0 375s 699s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2850m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2852m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2853m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2855m 999 1 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2857m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2858m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2860m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2862m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2863m 999 0 0 0 0 0 375s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2865m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2867m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2868m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2870m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2872m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2873m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2875m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2877m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2878m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 7 2880m 999 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 0s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 100s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 200s 916 1 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 300s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 400s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 500s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 600s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 700s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 800s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 900s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1000s 916 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1100s 915 1 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1200s 915 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1300s 915 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1400s 915 0 0 0 0 0 376s 698s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1500s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1600s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1700s 915 1 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1800s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1900s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2000s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2100s 915 1 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2200s 915 0 0 0 0 0 376s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2300s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2400s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2500s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2600s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2700s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2800s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2900s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3000s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3100s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3200s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3300s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3400s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3500s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3600s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3700s 915 1 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3800s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 3900s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4000s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4100s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4200s 915 0 0 0 0 0 377s 697s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4300s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4400s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4500s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4600s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4700s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4800s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 4900s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5000s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5100s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5200s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5300s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5400s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5500s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5600s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5700s 915 0 0 0 0 0 377s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5800s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 5900s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6000s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6100s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6200s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6300s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6400s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6500s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6600s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6700s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6800s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 6900s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7000s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7100s 915 0 0 0 0 0 378s 696s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7200s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7300s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7400s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7500s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7600s 915 1 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7700s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7800s 915 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 7900s 916 1 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8000s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8100s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8200s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8300s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8400s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8500s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8600s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8700s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8800s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 8900s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9000s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9100s 916 0 0 0 0 0 378s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9200s 916 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9300s 916 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9400s 916 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9500s 916 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9600s 916 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9700s 915 1 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9800s 915 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 9900s 915 0 0 0 0 0 379s 695s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10000s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10100s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10200s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10300s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10400s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10500s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10600s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10700s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10800s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 10900s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11000s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11100s 915 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11200s 914 1 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11300s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11400s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11500s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11600s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11700s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11800s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 11900s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12000s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12100s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12200s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12300s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12400s 914 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12500s 913 1 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12600s 913 0 0 0 0 0 379s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12700s 912 1 0 0 0 0 380s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12800s 912 0 0 0 0 0 380s 694s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 12900s 912 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13000s 911 1 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13100s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13200s 911 1 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13300s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13400s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13500s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13600s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13700s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13800s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 13900s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14000s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14100s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14200s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14300s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14400s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14500s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14600s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14700s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14800s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 14900s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15000s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15100s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15200s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15300s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15400s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15500s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15600s 911 0 0 0 0 0 380s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15700s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15800s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 15900s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16000s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16100s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16200s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16300s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16400s 911 0 0 0 0 0 381s 693s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16500s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16600s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16700s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16800s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 16900s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17000s 910 1 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17100s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17200s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17300s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17400s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17500s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17600s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17700s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17800s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 17900s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18000s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18100s 910 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18200s 911 1 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18300s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18400s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18500s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18600s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18700s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18800s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 18900s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19000s 911 0 0 0 0 0 381s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19100s 911 0 0 0 0 0 382s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19200s 911 0 0 0 0 0 382s 692s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19300s 911 1 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19400s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19500s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19600s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19700s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19800s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 19900s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20000s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20100s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20200s 911 1 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20300s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20400s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20500s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20600s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20700s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20800s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 20900s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21000s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21100s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21200s 911 1 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21300s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21400s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21500s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21600s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21700s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21800s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 21900s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22000s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22100s 911 0 0 0 0 0 382s 691s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22200s 911 0 0 0 0 0 382s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22300s 911 0 0 0 0 0 382s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22400s 911 0 0 0 0 0 382s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22500s 911 0 0 0 0 0 382s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22600s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22700s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22800s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 22900s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23000s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23100s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23200s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23300s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23400s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23500s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23600s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23700s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23800s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 23900s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24000s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24100s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24200s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24300s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24400s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24500s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24600s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24700s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24800s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 24900s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25000s 911 0 0 0 0 0 383s 690s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25100s 911 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25200s 911 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25300s 911 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25400s 910 1 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25500s 910 1 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25600s 910 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25700s 910 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25800s 910 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 25900s 910 0 0 0 0 0 383s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26000s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26100s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26200s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26300s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26400s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26500s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26600s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26700s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26800s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 26900s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27000s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27100s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27200s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27300s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27400s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27500s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27600s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27700s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27800s 910 0 0 0 0 0 384s 689s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 27900s 909 1 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28000s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28100s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28200s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28300s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28400s 909 1 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28500s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28600s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28700s 909 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28800s 910 1 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 28900s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29000s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29100s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29200s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29300s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29400s 910 0 0 0 0 0 384s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29500s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29600s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29700s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29800s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 29900s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30000s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30100s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30200s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30300s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30400s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30500s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30600s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30700s 910 0 0 0 0 0 385s 688s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30800s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 30900s 910 1 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31000s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31100s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31200s 910 1 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31300s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31400s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31500s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31600s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31700s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31800s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 31900s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32000s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32100s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32200s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32300s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32400s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32500s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32600s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32700s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32800s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 32900s 910 0 0 0 0 0 385s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33000s 910 0 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33100s 910 1 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33200s 910 0 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33300s 910 0 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33400s 910 0 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33500s 910 0 0 0 0 0 386s 687s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33600s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33700s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33800s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 33900s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34000s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34100s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34200s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34300s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34400s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34500s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34600s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34700s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34800s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 34900s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35000s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35100s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35200s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35300s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35400s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35500s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35600s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35700s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35800s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 35900s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36000s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36100s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36200s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36300s 910 0 0 0 0 0 386s 686s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36400s 910 0 0 0 0 0 386s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36500s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36600s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36700s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36800s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 36900s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37000s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37100s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37200s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37300s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37400s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37500s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37600s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37700s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37800s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 37900s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38000s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38100s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38200s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38300s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38400s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38500s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38600s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38700s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38800s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 38900s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39000s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39100s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39200s 910 0 0 0 0 0 387s 685s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39300s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39400s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39500s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39600s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39700s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39800s 910 0 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 39900s 909 1 0 0 0 0 387s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40000s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40100s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40200s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40300s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40400s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40500s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40600s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40700s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40800s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 40900s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41000s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41100s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41200s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41300s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41400s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41500s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41600s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41700s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41800s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 41900s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42000s 909 0 0 0 0 0 388s 684s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42100s 909 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42200s 909 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42300s 910 1 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42400s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42500s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42600s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42700s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42800s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 42900s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43000s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43100s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43200s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43300s 910 0 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43400s 908 2 0 0 0 0 388s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43500s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43600s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43700s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43800s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 43900s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44000s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44100s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44200s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44300s 908 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44400s 907 1 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44500s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44600s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44700s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44800s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 44900s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45000s 907 0 0 0 0 0 389s 683s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45100s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45200s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45300s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45400s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45500s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45600s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45700s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45800s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 45900s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46000s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46100s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46200s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46300s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46400s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46500s 907 0 0 0 0 0 389s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46600s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46700s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46800s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 46900s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47000s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47100s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47200s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47300s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47400s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47500s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47600s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47700s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47800s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 47900s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48000s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48100s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48200s 907 0 0 0 0 0 390s 682s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48300s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48400s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48500s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48600s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48700s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48800s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 48900s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49000s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49100s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49200s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49300s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49400s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49500s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49600s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49700s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49800s 907 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 49900s 906 1 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50000s 906 0 0 0 0 0 390s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50100s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50200s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50300s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50400s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50500s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50600s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50700s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50800s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 50900s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51000s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51100s 906 0 0 0 0 0 391s 681s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51200s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51300s 906 1 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51400s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51500s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51600s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51700s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51800s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 51900s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52000s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52100s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52200s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52300s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52400s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52500s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52600s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52700s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52800s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 52900s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53000s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53100s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53200s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53300s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53400s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53500s 906 0 0 0 0 0 391s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53600s 906 0 0 0 0 0 392s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53700s 906 0 0 0 0 0 392s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53800s 906 0 0 0 0 0 392s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 53900s 906 0 0 0 0 0 392s 680s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54000s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54100s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54200s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54300s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54400s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54500s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54600s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54700s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54800s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 54900s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55000s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55100s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55200s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55300s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55400s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55500s 906 1 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55600s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55700s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55800s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 55900s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56000s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56100s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56200s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56300s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56400s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56500s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56600s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56700s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56800s 906 0 0 0 0 0 392s 679s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 56900s 906 0 0 0 0 0 392s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57000s 906 0 0 0 0 0 392s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57100s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57200s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57300s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57400s 906 1 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57500s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57600s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57700s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57800s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 57900s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58000s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58100s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58200s 906 1 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58300s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58400s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58500s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58600s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58700s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58800s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 58900s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59000s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59100s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59200s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59300s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59400s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59500s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59600s 906 0 0 0 0 0 393s 678s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59700s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59800s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 59900s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60000s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60100s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60200s 906 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60300s 906 1 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60400s 905 1 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60500s 905 0 0 0 0 0 393s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60600s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60700s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60800s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 60900s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61000s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61100s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61200s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61300s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61400s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61500s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61600s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61700s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61800s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 61900s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62000s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62100s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62200s 905 1 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62300s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62400s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62500s 905 0 0 0 0 0 394s 677s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62600s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62700s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62800s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 62900s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63000s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63100s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63200s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63300s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63400s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63500s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63600s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63700s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63800s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 63900s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64000s 905 0 0 0 0 0 394s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64100s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64200s 905 1 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64300s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64400s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64500s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64600s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64700s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64800s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 64900s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65000s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65100s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65200s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65300s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65400s 905 0 0 0 0 0 395s 676s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65500s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65600s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65700s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65800s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 65900s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66000s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66100s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66200s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66300s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66400s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66500s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66600s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66700s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66800s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 66900s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67000s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67100s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67200s 905 0 0 0 0 0 395s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67300s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67400s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67500s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67600s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67700s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67800s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 67900s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68000s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68100s 905 1 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68200s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68300s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68400s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68500s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68600s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68700s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68800s 905 0 0 0 0 0 396s 675s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 68900s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69000s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69100s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69200s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69300s 905 1 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69400s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69500s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69600s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69700s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69800s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 69900s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70000s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70100s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70200s 905 0 0 0 0 0 396s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70300s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70400s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70500s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70600s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70700s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70800s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 70900s 905 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71000s 904 1 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71100s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71200s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71300s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71400s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71500s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71600s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71700s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71800s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 71900s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72000s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72100s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72200s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72300s 904 0 0 0 0 0 397s 674s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72400s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72500s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72600s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72700s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72800s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 72900s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73000s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73100s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73200s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73300s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73400s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73500s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73600s 904 0 0 0 0 0 397s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73700s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73800s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 73900s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74000s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74100s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74200s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74300s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74400s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74500s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74600s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74700s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74800s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 74900s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75000s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75100s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75200s 904 0 0 0 0 0 398s 673s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75300s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75400s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75500s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75600s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75700s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75800s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 75900s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76000s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76100s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76200s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76300s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76400s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76500s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76600s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76700s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76800s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 76900s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77000s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77100s 904 0 0 0 0 0 398s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77200s 903 2 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77300s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77400s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77500s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77600s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77700s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77800s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 77900s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78000s 903 0 0 0 0 0 399s 672s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78100s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78200s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78300s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78400s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78500s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78600s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78700s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78800s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 78900s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79000s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79100s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79200s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79300s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79400s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79500s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79600s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79700s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79800s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 79900s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80000s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80100s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80200s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80300s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80400s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80500s 903 0 0 0 0 0 399s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80600s 903 0 0 0 0 0 400s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80700s 903 0 0 0 0 0 400s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80800s 903 0 0 0 0 0 400s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 80900s 903 0 0 0 0 0 400s 671s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81000s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81100s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81200s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81300s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81400s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81500s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81600s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81700s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81800s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 81900s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82000s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82100s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82200s 903 1 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82300s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82400s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82500s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82600s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82700s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82800s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 82900s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83000s 903 1 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83100s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83200s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83300s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83400s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83500s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83600s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83700s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83800s 903 0 0 0 0 0 400s 670s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 83900s 903 0 0 0 0 0 400s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84000s 903 0 0 0 0 0 400s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84100s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84200s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84300s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84400s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84500s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84600s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84700s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84800s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 84900s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85000s 903 1 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85100s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85200s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85300s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85400s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85500s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85600s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85700s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85800s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 85900s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86000s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86100s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86200s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86300s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86400s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86500s 903 0 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86600s 902 1 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86700s 902 1 0 0 0 0 401s 669s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86800s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 86900s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87000s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87100s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87200s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87300s 902 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87400s 901 1 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87500s 901 0 0 0 0 0 401s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87600s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87700s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87800s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 87900s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88000s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88100s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88200s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88300s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88400s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88500s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88600s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88700s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88800s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 88900s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89000s 901 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89100s 900 1 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89200s 900 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89300s 900 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89400s 900 1 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89500s 900 0 0 0 0 0 402s 668s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89600s 900 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89700s 900 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89800s 900 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 89900s 900 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90000s 900 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90100s 901 1 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90200s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90300s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90400s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90500s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90600s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90700s 901 0 0 0 0 0 402s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90800s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 90900s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91000s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91100s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91200s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91300s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91400s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91500s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91600s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91700s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91800s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 91900s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92000s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92100s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92200s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92300s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92400s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92500s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92600s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92700s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92800s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 92900s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93000s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93100s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93200s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93300s 901 0 0 0 0 0 403s 667s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93400s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93500s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93600s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93700s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93800s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 93900s 901 0 0 0 0 0 403s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94000s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94100s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94200s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94300s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94400s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94500s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94600s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94700s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94800s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 94900s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95000s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95100s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95200s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95300s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95400s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95500s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95600s 901 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95700s 902 1 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95800s 902 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 95900s 902 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96000s 902 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96100s 902 0 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96200s 901 1 0 0 0 0 404s 666s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96300s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96400s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96500s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96600s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96700s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96800s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 96900s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97000s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97100s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97200s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97300s 901 0 0 0 0 0 404s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97400s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97500s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97600s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97700s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97800s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 97900s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98000s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98100s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98200s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98300s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98400s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98500s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98600s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98700s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98800s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 98900s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99000s 901 1 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99100s 901 0 0 0 0 0 405s 665s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99200s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99300s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99400s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99500s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99600s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99700s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99800s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 99900s 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1667m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1668m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1670m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1672m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1673m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1675m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1677m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1678m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1680m 901 0 0 0 0 0 405s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1682m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1683m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1685m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1687m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1688m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1690m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1692m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1693m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1695m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1697m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1698m 901 0 0 0 0 0 406s 664s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1700m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1702m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1703m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1705m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1707m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1708m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1710m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1712m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1713m 901 1 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1715m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1717m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1718m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1720m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1722m 901 2 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1723m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1725m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1727m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1728m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1730m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1732m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1733m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1735m 901 1 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1737m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1738m 901 0 0 0 0 0 406s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1740m 901 0 0 0 0 0 407s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1742m 901 0 0 0 0 0 407s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1743m 901 0 0 0 0 0 407s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1745m 901 0 0 0 0 0 407s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1747m 901 0 0 0 0 0 407s 663s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1748m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1750m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1752m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1753m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1755m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1757m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1758m 901 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1760m 900 1 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1762m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1763m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1765m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1767m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1768m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1770m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1772m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1773m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1775m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1777m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1778m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1780m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1782m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1783m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1785m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1787m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1788m 900 1 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1790m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1792m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1793m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1795m 900 0 0 0 0 0 407s 662s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1797m 900 1 0 0 0 0 407s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1798m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1800m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1802m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1803m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1805m 901 1 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1807m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1808m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1810m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1812m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1813m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1815m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1817m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1818m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1820m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1822m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1823m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1825m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1827m 901 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1828m 900 1 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1830m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1832m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1833m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1835m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1837m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1838m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1840m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1842m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1843m 900 0 0 0 0 0 408s 661s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1845m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1847m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1848m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1850m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1852m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1853m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1855m 900 0 0 0 0 0 408s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1857m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1858m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1860m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1862m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1863m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1865m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1867m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1868m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1870m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1872m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1873m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1875m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1877m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1878m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1880m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1882m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1883m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1885m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1887m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1888m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1890m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1892m 900 0 0 0 0 0 409s 660s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1893m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1895m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1897m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1898m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1900m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1902m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1903m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1905m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1907m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1908m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1910m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1912m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1913m 900 0 0 0 0 0 409s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1915m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1917m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1918m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1920m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1922m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1923m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1925m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1927m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1928m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1930m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1932m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1933m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1935m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1937m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1938m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1940m 900 0 0 0 0 0 410s 659s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1942m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1943m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1945m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1947m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1948m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1950m 900 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1952m 899 1 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1953m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1955m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1957m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1958m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1960m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1962m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1963m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1965m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1967m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1968m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1970m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1972m 899 0 0 0 0 0 410s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1973m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1975m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1977m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1978m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1980m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1982m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1983m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1985m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1987m 899 0 0 0 0 0 411s 658s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1988m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1990m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1992m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1993m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1995m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1997m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 1998m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2000m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2002m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2003m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2005m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2007m 899 1 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2008m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2010m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2012m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2013m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2015m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2017m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2018m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2020m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2022m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2023m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2025m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2027m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2028m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2030m 899 0 0 0 0 0 411s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2032m 899 0 0 0 0 0 412s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2033m 899 0 0 0 0 0 412s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2035m 899 0 0 0 0 0 412s 657s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2037m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2038m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2040m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2042m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2043m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2045m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2047m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2048m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2050m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2052m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2053m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2055m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2057m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2058m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2060m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2062m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2063m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2065m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2067m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2068m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2070m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2072m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2073m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2075m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2077m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2078m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2080m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2082m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2083m 899 0 0 0 0 0 412s 656s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2085m 899 0 0 0 0 0 412s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2087m 899 0 0 0 0 0 412s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2088m 899 0 0 0 0 0 412s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2090m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2092m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2093m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2095m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2097m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2098m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2100m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2102m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2103m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2105m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2107m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2108m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2110m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2112m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2113m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2115m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2117m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2118m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2120m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2122m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2123m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2125m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2127m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2128m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2130m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2132m 899 0 0 0 0 0 413s 655s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2133m 899 1 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2135m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2137m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2138m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2140m 899 1 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2142m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2143m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2145m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2147m 899 0 0 0 0 0 413s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2148m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2150m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2152m 900 1 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2153m 899 1 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2155m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2157m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2158m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2160m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2162m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2163m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2165m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2167m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2168m 899 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2170m 898 1 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2172m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2173m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2175m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2177m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2178m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2180m 898 0 0 0 0 0 414s 654s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2182m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2183m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2185m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2187m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2188m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2190m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2192m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2193m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2195m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2197m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2198m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2200m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2202m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2203m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2205m 898 0 0 0 0 0 414s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2207m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2208m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2210m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2212m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2213m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2215m 898 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2217m 897 1 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2218m 897 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2220m 897 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2222m 897 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2223m 897 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2225m 897 0 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2227m 897 1 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2228m 897 1 0 0 0 0 415s 653s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2230m 897 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2232m 897 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2233m 896 1 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2235m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2237m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2238m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2240m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2242m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2243m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2245m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2247m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2248m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2250m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2252m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2253m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2255m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2257m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2258m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2260m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2262m 896 0 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2263m 897 1 0 0 0 0 415s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2265m 898 1 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2267m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2268m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2270m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2272m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2273m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2275m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2277m 898 0 0 0 0 0 416s 652s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2278m 898 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2280m 898 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2282m 898 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2283m 898 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2285m 898 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2287m 897 1 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2288m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2290m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2292m 897 1 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2293m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2295m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2297m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2298m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2300m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2302m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2303m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2305m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2307m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2308m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2310m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2312m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2313m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2315m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2317m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2318m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2320m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2322m 897 0 0 0 0 0 416s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2323m 897 0 0 0 0 0 417s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2325m 897 0 0 0 0 0 417s 651s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2327m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2328m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2330m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2332m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2333m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2335m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2337m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2338m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2340m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2342m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2343m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2345m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2347m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2348m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2350m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2352m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2353m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2355m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2357m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2358m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2360m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2362m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2363m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2365m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2367m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2368m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2370m 897 1 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2372m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2373m 897 0 0 0 0 0 417s 650s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2375m 897 0 0 0 0 0 417s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2377m 897 0 0 0 0 0 417s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2378m 897 0 0 0 0 0 417s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2380m 897 0 0 0 0 0 417s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2382m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2383m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2385m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2387m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2388m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2390m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2392m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2393m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2395m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2397m 897 1 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2398m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2400m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2402m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2403m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2405m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2407m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2408m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2410m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2412m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2413m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2415m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2417m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2418m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2420m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2422m 897 0 0 0 0 0 418s 649s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2423m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2425m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2427m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2428m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2430m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2432m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2433m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2435m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2437m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2438m 897 0 0 0 0 0 418s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2440m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2442m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2443m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2445m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2447m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2448m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2450m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2452m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2453m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2455m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2457m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2458m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2460m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2462m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2463m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2465m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2467m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2468m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2470m 897 0 0 0 0 0 419s 648s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2472m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2473m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2475m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2477m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2478m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2480m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2482m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2483m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2485m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2487m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2488m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2490m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2492m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2493m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2495m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2497m 897 0 0 0 0 0 419s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2498m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2500m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2502m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2503m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2505m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2507m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2508m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2510m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2512m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2513m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2515m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2517m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2518m 897 0 0 0 0 0 420s 647s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2520m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2522m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2523m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2525m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2527m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2528m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2530m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2532m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2533m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2535m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2537m 897 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2538m 896 1 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2540m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2542m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2543m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2545m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2547m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2548m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2550m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2552m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2553m 896 0 0 0 0 0 420s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2555m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2557m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2558m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2560m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2562m 896 1 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2563m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2565m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2567m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2568m 896 0 0 0 0 0 421s 646s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2570m 897 1 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2572m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2573m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2575m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2577m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2578m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2580m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2582m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2583m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2585m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2587m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2588m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2590m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2592m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2593m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2595m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2597m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2598m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2600m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2602m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2603m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2605m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2607m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2608m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2610m 897 1 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2612m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2613m 897 0 0 0 0 0 421s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2615m 897 0 0 0 0 0 422s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2617m 897 0 0 0 0 0 422s 645s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2618m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2620m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2622m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2623m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2625m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2627m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2628m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2630m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2632m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2633m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2635m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2637m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2638m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2640m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2642m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2643m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2645m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2647m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2648m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2650m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2652m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2653m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2655m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2657m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2658m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2660m 897 1 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2662m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2663m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2665m 897 0 0 0 0 0 422s 644s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2667m 897 0 0 0 0 0 422s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2668m 897 0 0 0 0 0 422s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2670m 897 0 0 0 0 0 422s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2672m 897 0 0 0 0 0 422s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2673m 897 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2675m 896 1 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2677m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2678m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2680m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2682m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2683m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2685m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2687m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2688m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2690m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2692m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2693m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2695m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2697m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2698m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2700m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2702m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2703m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2705m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2707m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2708m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2710m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2712m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2713m 896 0 0 0 0 0 423s 643s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2715m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2717m 896 2 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2718m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2720m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2722m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2723m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2725m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2727m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2728m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2730m 896 0 0 0 0 0 423s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2732m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2733m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2735m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2737m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2738m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2740m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2742m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2743m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2745m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2747m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2748m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2750m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2752m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2753m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2755m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2757m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2758m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2760m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2762m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2763m 896 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2765m 897 1 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2767m 897 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2768m 897 0 0 0 0 0 424s 642s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2770m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2772m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2773m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2775m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2777m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2778m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2780m 897 0 0 0 0 0 424s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2782m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2783m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2785m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2787m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2788m 897 1 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2790m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2792m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2793m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2795m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2797m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2798m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2800m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2802m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2803m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2805m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2807m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2808m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2810m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2812m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2813m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2815m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2817m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2818m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2820m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2822m 897 0 0 0 0 0 425s 641s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2823m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2825m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2827m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2828m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2830m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2832m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2833m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2835m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2837m 897 0 0 0 0 0 425s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2838m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2840m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2842m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2843m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2845m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2847m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2848m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2850m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2852m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2853m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2855m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2857m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2858m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2860m 896 1 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2862m 896 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2863m 896 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2865m 896 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2867m 896 1 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2868m 897 1 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2870m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2872m 897 1 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2873m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2875m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2877m 897 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2878m 897 0 0 0 0 0 426s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 8 2880m 897 0 0 0 0 0 426s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 0s 956 0 0 0 0 0 426s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 100s 956 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 200s 956 0 0 0 0 0 426s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 300s 956 0 0 0 0 0 427s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 400s 956 0 0 0 0 0 427s 640s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 500s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 600s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 700s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 800s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 900s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1000s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1100s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1200s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1300s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1400s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1500s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1600s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1700s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1800s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1900s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2000s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2100s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2200s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2300s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2400s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2500s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2600s 956 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2700s 955 1 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2800s 955 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2900s 955 0 0 0 0 0 427s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3000s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3100s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3200s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3300s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3400s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3500s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3600s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3700s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3800s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 3900s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4000s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4100s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4200s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4300s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4400s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4500s 955 0 0 0 0 0 428s 639s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4600s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4700s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4800s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 4900s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5000s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5100s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5200s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5300s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5400s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5500s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5600s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5700s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5800s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 5900s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6000s 955 0 0 0 0 0 428s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6100s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6200s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6300s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6400s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6500s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6600s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6700s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6800s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 6900s 955 2 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7000s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7100s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7200s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7300s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7400s 955 1 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7500s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7600s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7700s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7800s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 7900s 955 0 0 0 0 0 429s 638s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8000s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8100s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8200s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8300s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8400s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8500s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8600s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8700s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8800s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 8900s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9000s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9100s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9200s 955 0 0 0 0 0 429s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9300s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9400s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9500s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9600s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9700s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9800s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 9900s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10000s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10100s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10200s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10300s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10400s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10500s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10600s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10700s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10800s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 10900s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11000s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11100s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11200s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11300s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11400s 955 0 0 0 0 0 430s 637s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11500s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11600s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11700s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11800s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 11900s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12000s 955 1 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12100s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12200s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12300s 955 0 0 0 0 0 430s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12400s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12500s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12600s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12700s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12800s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 12900s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13000s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13100s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13200s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13300s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13400s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13500s 955 1 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13600s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13700s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13800s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 13900s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14000s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14100s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14200s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14300s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14400s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14500s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14600s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14700s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14800s 955 0 0 0 0 0 431s 636s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 14900s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15000s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15100s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15200s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15300s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15400s 955 0 0 0 0 0 431s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15500s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15600s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15700s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15800s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 15900s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16000s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16100s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16200s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16300s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16400s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16500s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16600s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16700s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16800s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 16900s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17000s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17100s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17200s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17300s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17400s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17500s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17600s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17700s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17800s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 17900s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18000s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18100s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18200s 955 0 0 0 0 0 432s 635s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18300s 955 0 0 0 0 0 432s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18400s 955 0 0 0 0 0 432s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18500s 955 0 0 0 0 0 432s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18600s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18700s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18800s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 18900s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19000s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19100s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19200s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19300s 955 1 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19400s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19500s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19600s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19700s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19800s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 19900s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20000s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20100s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20200s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20300s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20400s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20500s 955 1 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20600s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20700s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20800s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 20900s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21000s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21100s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21200s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21300s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21400s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21500s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21600s 955 0 0 0 0 0 433s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21700s 955 0 0 0 0 0 434s 634s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21800s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 21900s 955 1 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22000s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22100s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22200s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22300s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22400s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22500s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22600s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22700s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22800s 955 1 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 22900s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23000s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23100s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23200s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23300s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23400s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23500s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23600s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23700s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23800s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 23900s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24000s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24100s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24200s 955 1 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24300s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24400s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24500s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24600s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24700s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24800s 955 0 0 0 0 0 434s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 24900s 955 0 0 0 0 0 435s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25000s 955 0 0 0 0 0 435s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25100s 955 0 0 0 0 0 435s 633s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25200s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25300s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25400s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25500s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25600s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25700s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25800s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 25900s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26000s 955 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26100s 954 1 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26200s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26300s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26400s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26500s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26600s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26700s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26800s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 26900s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27000s 954 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27100s 953 1 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27200s 952 1 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27300s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27400s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27500s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27600s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27700s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27800s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 27900s 952 0 0 0 0 0 435s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28000s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28100s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28200s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28300s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28400s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28500s 952 0 0 0 0 0 436s 632s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28600s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28700s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28800s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 28900s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29000s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29100s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29200s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29300s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29400s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29500s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29600s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29700s 952 1 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29800s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 29900s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30000s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30100s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30200s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30300s 952 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30400s 951 1 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30500s 951 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30600s 951 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30700s 951 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30800s 951 0 0 0 0 0 436s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 30900s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31000s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31100s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31200s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31300s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31400s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31500s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31600s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31700s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31800s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 31900s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32000s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32100s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32200s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32300s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32400s 951 0 0 0 0 0 437s 631s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32500s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32600s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32700s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32800s 951 1 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 32900s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33000s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33100s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33200s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33300s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33400s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33500s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33600s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33700s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33800s 951 0 0 0 0 0 437s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 33900s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34000s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34100s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34200s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34300s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34400s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34500s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34600s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34700s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34800s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 34900s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35000s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35100s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35200s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35300s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35400s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35500s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35600s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35700s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35800s 951 0 0 0 0 0 438s 630s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 35900s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36000s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36100s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36200s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36300s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36400s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36500s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36600s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36700s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36800s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 36900s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37000s 951 0 0 0 0 0 438s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37100s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37200s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37300s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37400s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37500s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37600s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37700s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37800s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 37900s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38000s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38100s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38200s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38300s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38400s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38500s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38600s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38700s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38800s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 38900s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39000s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39100s 951 0 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39200s 950 1 0 0 0 0 439s 629s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39300s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39400s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39500s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39600s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39700s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39800s 950 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 39900s 949 1 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40000s 949 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40100s 949 0 0 0 0 0 439s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40200s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40300s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40400s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40500s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40600s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40700s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40800s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 40900s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41000s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41100s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41200s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41300s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41400s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41500s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41600s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41700s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41800s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 41900s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42000s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42100s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42200s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42300s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42400s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42500s 949 0 0 0 0 0 440s 628s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42600s 949 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42700s 948 1 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42800s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 42900s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43000s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43100s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43200s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43300s 948 0 0 0 0 0 440s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43400s 948 1 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43500s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43600s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43700s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43800s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 43900s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44000s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44100s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44200s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44300s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44400s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44500s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44600s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44700s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44800s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 44900s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45000s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45100s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45200s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45300s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45400s 948 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45500s 947 1 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45600s 947 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45700s 947 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45800s 947 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 45900s 947 0 0 0 0 0 441s 627s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46000s 947 0 0 0 0 0 441s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46100s 947 0 0 0 0 0 441s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46200s 947 0 0 0 0 0 441s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46300s 947 0 0 0 0 0 441s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46400s 947 0 0 0 0 0 441s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46500s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46600s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46700s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46800s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 46900s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47000s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47100s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47200s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47300s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47400s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47500s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47600s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47700s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47800s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 47900s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48000s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48100s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48200s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48300s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48400s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48500s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48600s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48700s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48800s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 48900s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49000s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49100s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49200s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49300s 947 0 0 0 0 0 442s 626s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49400s 947 0 0 0 0 0 442s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49500s 947 0 0 0 0 0 442s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49600s 947 1 0 0 0 0 442s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49700s 947 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49800s 948 1 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 49900s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50000s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50100s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50200s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50300s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50400s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50500s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50600s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50700s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50800s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 50900s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51000s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51100s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51200s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51300s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51400s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51500s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51600s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51700s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51800s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 51900s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52000s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52100s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52200s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52300s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52400s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52500s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52600s 948 0 0 0 0 0 443s 625s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52700s 948 0 0 0 0 0 443s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52800s 949 1 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 52900s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53000s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53100s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53200s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53300s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53400s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53500s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53600s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53700s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53800s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 53900s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54000s 949 1 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54100s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54200s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54300s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54400s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54500s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54600s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54700s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54800s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 54900s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55000s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55100s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55200s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55300s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55400s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55500s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55600s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55700s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55800s 949 0 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 55900s 949 1 0 0 0 0 444s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56000s 949 0 0 0 0 0 445s 624s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56100s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56200s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56300s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56400s 949 1 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56500s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56600s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56700s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56800s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 56900s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57000s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57100s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57200s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57300s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57400s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57500s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57600s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57700s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57800s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 57900s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58000s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58100s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58200s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58300s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58400s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58500s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58600s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58700s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58800s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 58900s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59000s 949 0 0 0 0 0 445s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59100s 949 0 0 0 0 0 446s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59200s 948 1 0 0 0 0 446s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59300s 948 0 0 0 0 0 446s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59400s 948 0 0 0 0 0 446s 623s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59500s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59600s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59700s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59800s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 59900s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60000s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60100s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60200s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60300s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60400s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60500s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60600s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60700s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60800s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 60900s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61000s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61100s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61200s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61300s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61400s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61500s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61600s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61700s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61800s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 61900s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62000s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62100s 948 0 0 0 0 0 446s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62200s 949 1 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62300s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62400s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62500s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62600s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62700s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62800s 949 0 0 0 0 0 447s 622s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 62900s 949 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63000s 949 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63100s 949 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63200s 948 1 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63300s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63400s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63500s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63600s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63700s 948 1 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63800s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 63900s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64000s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64100s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64200s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64300s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64400s 948 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64500s 947 1 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64600s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64700s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64800s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 64900s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65000s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65100s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65200s 947 1 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65300s 947 0 0 0 0 0 447s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65400s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65500s 947 1 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65600s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65700s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65800s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 65900s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66000s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66100s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66200s 947 0 0 0 0 0 448s 621s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66300s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66400s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66500s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66600s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66700s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66800s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 66900s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67000s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67100s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67200s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67300s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67400s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67500s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67600s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67700s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67800s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 67900s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68000s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68100s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68200s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68300s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68400s 947 0 0 0 0 0 448s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68500s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68600s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68700s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68800s 947 1 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 68900s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69000s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69100s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69200s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69300s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69400s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69500s 947 0 0 0 0 0 449s 620s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69600s 947 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69700s 946 1 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69800s 946 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 69900s 946 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70000s 946 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70100s 946 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70200s 945 1 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70300s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70400s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70500s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70600s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70700s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70800s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 70900s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71000s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71100s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71200s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71300s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71400s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71500s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71600s 945 0 0 0 0 0 449s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71700s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71800s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 71900s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72000s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72100s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72200s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72300s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72400s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72500s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72600s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72700s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72800s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 72900s 945 0 0 0 0 0 450s 619s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73000s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73100s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73200s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73300s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73400s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73500s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73600s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73700s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73800s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 73900s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74000s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74100s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74200s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74300s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74400s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74500s 945 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74600s 946 1 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74700s 946 0 0 0 0 0 450s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74800s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 74900s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75000s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75100s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75200s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75300s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75400s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75500s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75600s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75700s 946 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75800s 945 1 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 75900s 945 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76000s 945 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76100s 945 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76200s 945 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76300s 945 0 0 0 0 0 451s 618s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76400s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76500s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76600s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76700s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76800s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 76900s 945 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77000s 944 1 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77100s 943 1 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77200s 943 1 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77300s 943 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77400s 942 1 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77500s 942 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77600s 942 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77700s 942 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77800s 942 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 77900s 942 0 0 0 0 0 451s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78000s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78100s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78200s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78300s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78400s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78500s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78600s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78700s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78800s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 78900s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79000s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79100s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79200s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79300s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79400s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79500s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79600s 942 0 0 0 0 0 452s 617s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79700s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79800s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 79900s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80000s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80100s 942 1 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80200s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80300s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80400s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80500s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80600s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80700s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80800s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 80900s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81000s 942 0 0 0 0 0 452s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81100s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81200s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81300s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81400s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81500s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81600s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81700s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81800s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 81900s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82000s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82100s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82200s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82300s 942 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82400s 941 1 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82500s 941 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82600s 941 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82700s 941 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82800s 941 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 82900s 941 0 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83000s 940 1 0 0 0 0 453s 616s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83100s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83200s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83300s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83400s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83500s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83600s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83700s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83800s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 83900s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84000s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84100s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84200s 940 0 0 0 0 0 453s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84300s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84400s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84500s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84600s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84700s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84800s 940 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 84900s 939 1 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85000s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85100s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85200s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85300s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85400s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85500s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85600s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85700s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85800s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 85900s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86000s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86100s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86200s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86300s 939 0 0 0 0 0 454s 615s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86400s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86500s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86600s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86700s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86800s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 86900s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87000s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87100s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87200s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87300s 939 0 0 0 0 0 454s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87400s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87500s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87600s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87700s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87800s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 87900s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88000s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88100s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88200s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88300s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88400s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88500s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88600s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88700s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88800s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 88900s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89000s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89100s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89200s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89300s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89400s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89500s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89600s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89700s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89800s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 89900s 939 0 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90000s 939 1 0 0 0 0 455s 614s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90100s 939 0 0 0 0 0 455s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90200s 939 0 0 0 0 0 455s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90300s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90400s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90500s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90600s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90700s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90800s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 90900s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91000s 939 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91100s 938 1 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91200s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91300s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91400s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91500s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91600s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91700s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91800s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 91900s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92000s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92100s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92200s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92300s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92400s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92500s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92600s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92700s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92800s 938 0 0 0 0 0 456s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 92900s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93000s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93100s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93200s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93300s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93400s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93500s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93600s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93700s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93800s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 93900s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94000s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94100s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94200s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94300s 938 0 0 0 0 0 457s 613s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94400s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94500s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94600s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94700s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94800s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 94900s 938 1 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95000s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95100s 938 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95200s 937 1 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95300s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95400s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95500s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95600s 937 1 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95700s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95800s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 95900s 937 0 0 0 0 0 457s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96000s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96100s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96200s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96300s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96400s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96500s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96600s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96700s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96800s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 96900s 937 1 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97000s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97100s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97200s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97300s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97400s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97500s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97600s 937 0 0 0 0 0 458s 612s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97700s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97800s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 97900s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98000s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98100s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98200s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98300s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98400s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98500s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98600s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98700s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98800s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 98900s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99000s 937 0 0 0 0 0 458s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99100s 937 1 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99200s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99300s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99400s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99500s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99600s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99700s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99800s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 99900s 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1667m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1668m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1670m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1672m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1673m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1675m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1677m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1678m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1680m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1682m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1683m 937 0 0 0 0 0 459s 611s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1685m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1687m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1688m 937 1 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1690m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1692m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1693m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1695m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1697m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1698m 937 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1700m 936 1 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1702m 936 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1703m 936 0 0 0 0 0 459s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1705m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1707m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1708m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1710m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1712m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1713m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1715m 936 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1717m 935 1 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1718m 934 1 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1720m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1722m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1723m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1725m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1727m 934 1 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1728m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1730m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1732m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1733m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1735m 934 2 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1737m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1738m 934 0 0 0 0 0 460s 610s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1740m 934 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1742m 934 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1743m 934 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1745m 933 1 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1747m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1748m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1750m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1752m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1753m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1755m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1757m 933 0 0 0 0 0 460s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1758m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1760m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1762m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1763m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1765m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1767m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1768m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1770m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1772m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1773m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1775m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1777m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1778m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1780m 933 1 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1782m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1783m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1785m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1787m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1788m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1790m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1792m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1793m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1795m 933 0 0 0 0 0 461s 609s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1797m 934 1 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1798m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1800m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1802m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1803m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1805m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1807m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1808m 934 0 0 0 0 0 461s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1810m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1812m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1813m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1815m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1817m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1818m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1820m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1822m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1823m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1825m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1827m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1828m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1830m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1832m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1833m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1835m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1837m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1838m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1840m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1842m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1843m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1845m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1847m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1848m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1850m 934 0 0 0 0 0 462s 608s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1852m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1853m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1855m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1857m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1858m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1860m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1862m 934 0 0 0 0 0 462s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1863m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1865m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1867m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1868m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1870m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1872m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1873m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1875m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1877m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1878m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1880m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1882m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1883m 934 1 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1885m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1887m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1888m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1890m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1892m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1893m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1895m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1897m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1898m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1900m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1902m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1903m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1905m 934 0 0 0 0 0 463s 607s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1907m 934 0 0 0 0 0 463s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1908m 934 0 0 0 0 0 463s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1910m 934 0 0 0 0 0 463s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1912m 934 0 0 0 0 0 463s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1913m 934 0 0 0 0 0 463s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1915m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1917m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1918m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1920m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1922m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1923m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1925m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1927m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1928m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1930m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1932m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1933m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1935m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1937m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1938m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1940m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1942m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1943m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1945m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1947m 934 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1948m 933 1 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1950m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1952m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1953m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1955m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1957m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1958m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1960m 933 0 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1962m 933 1 0 0 0 0 464s 606s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1963m 933 0 0 0 0 0 464s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1965m 933 0 0 0 0 0 464s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1967m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1968m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1970m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1972m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1973m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1975m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1977m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1978m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1980m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1982m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1983m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1985m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1987m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1988m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1990m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1992m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1993m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1995m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1997m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 1998m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2000m 933 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2002m 932 1 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2003m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2005m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2007m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2008m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2010m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2012m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2013m 932 0 0 0 0 0 465s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2015m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2017m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2018m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2020m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2022m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2023m 932 0 0 0 0 0 466s 605s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2025m 932 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2027m 932 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2028m 932 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2030m 932 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2032m 931 1 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2033m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2035m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2037m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2038m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2040m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2042m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2043m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2045m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2047m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2048m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2050m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2052m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2053m 931 1 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2055m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2057m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2058m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2060m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2062m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2063m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2065m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2067m 931 0 0 0 0 0 466s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2068m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2070m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2072m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2073m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2075m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2077m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2078m 931 0 0 0 0 0 467s 604s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2080m 931 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2082m 931 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2083m 931 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2085m 930 1 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2087m 930 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2088m 930 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2090m 930 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2092m 930 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2093m 929 1 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2095m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2097m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2098m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2100m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2102m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2103m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2105m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2107m 929 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2108m 928 1 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2110m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2112m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2113m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2115m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2117m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2118m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2120m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2122m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2123m 928 0 0 0 0 0 467s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2125m 927 1 0 0 0 0 468s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2127m 927 0 0 0 0 0 468s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2128m 927 0 0 0 0 0 468s 603s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2130m 927 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2132m 927 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2133m 927 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2135m 927 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2137m 927 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2138m 926 1 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2140m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2142m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2143m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2145m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2147m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2148m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2150m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2152m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2153m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2155m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2157m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2158m 926 1 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2160m 926 1 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2162m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2163m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2165m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2167m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2168m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2170m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2172m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2173m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2175m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2177m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2178m 926 0 0 0 0 0 468s 602s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2180m 926 0 0 0 0 0 468s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2182m 926 0 0 0 0 0 468s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2183m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2185m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2187m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2188m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2190m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2192m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2193m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2195m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2197m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2198m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2200m 926 1 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2202m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2203m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2205m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2207m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2208m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2210m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2212m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2213m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2215m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2217m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2218m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2220m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2222m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2223m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2225m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2227m 926 0 0 0 0 0 469s 601s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2228m 926 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2230m 926 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2232m 926 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2233m 926 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2235m 926 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2237m 925 1 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2238m 925 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2240m 925 0 0 0 0 0 469s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2242m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2243m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2245m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2247m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2248m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2250m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2252m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2253m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2255m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2257m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2258m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2260m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2262m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2263m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2265m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2267m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2268m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2270m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2272m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2273m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2275m 925 0 0 0 0 0 470s 600s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2277m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2278m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2280m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2282m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2283m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2285m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2287m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2288m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2290m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2292m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2293m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2295m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2297m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2298m 925 0 0 0 0 0 470s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2300m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2302m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2303m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2305m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2307m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2308m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2310m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2312m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2313m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2315m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2317m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2318m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2320m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2322m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2323m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2325m 925 0 0 0 0 0 471s 599s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2327m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2328m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2330m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2332m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2333m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2335m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2337m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2338m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2340m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2342m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2343m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2345m 925 1 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2347m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2348m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2350m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2352m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2353m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2355m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2357m 925 0 0 0 0 0 471s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2358m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2360m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2362m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2363m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2365m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2367m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2368m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2370m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2372m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2373m 925 0 0 0 0 0 472s 598s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2375m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2377m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2378m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2380m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2382m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2383m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2385m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2387m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2388m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2390m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2392m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2393m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2395m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2397m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2398m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2400m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2402m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2403m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2405m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2407m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2408m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2410m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2412m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2413m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2415m 925 0 0 0 0 0 472s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2417m 925 0 0 0 0 0 473s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2418m 925 0 0 0 0 0 473s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2420m 925 0 0 0 0 0 473s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2422m 925 0 0 0 0 0 473s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2423m 925 0 0 0 0 0 473s 597s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2425m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2427m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2428m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2430m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2432m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2433m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2435m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2437m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2438m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2440m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2442m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2443m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2445m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2447m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2448m 925 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2450m 924 2 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2452m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2453m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2455m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2457m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2458m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2460m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2462m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2463m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2465m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2467m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2468m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2470m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2472m 924 0 0 0 0 0 473s 596s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2473m 924 0 0 0 0 0 473s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2475m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2477m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2478m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2480m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2482m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2483m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2485m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2487m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2488m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2490m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2492m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2493m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2495m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2497m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2498m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2500m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2502m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2503m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2505m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2507m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2508m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2510m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2512m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2513m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2515m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2517m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2518m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2520m 924 0 0 0 0 0 474s 595s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2522m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2523m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2525m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2527m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2528m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2530m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2532m 924 0 0 0 0 0 474s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2533m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2535m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2537m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2538m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2540m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2542m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2543m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2545m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2547m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2548m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2550m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2552m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2553m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2555m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2557m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2558m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2560m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2562m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2563m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2565m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2567m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2568m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2570m 924 0 0 0 0 0 475s 594s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2572m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2573m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2575m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2577m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2578m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2580m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2582m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2583m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2585m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2587m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2588m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2590m 924 0 0 0 0 0 475s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2592m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2593m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2595m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2597m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2598m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2600m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2602m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2603m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2605m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2607m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2608m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2610m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2612m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2613m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2615m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2617m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2618m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2620m 924 0 0 0 0 0 476s 593s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2622m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2623m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2625m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2627m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2628m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2630m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2632m 924 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2633m 925 1 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2635m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2637m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2638m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2640m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2642m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2643m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2645m 925 0 0 0 0 0 476s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2647m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2648m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2650m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2652m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2653m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2655m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2657m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2658m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2660m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2662m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2663m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2665m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2667m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2668m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2670m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2672m 925 0 0 0 0 0 477s 592s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2673m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2675m 925 1 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2677m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2678m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2680m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2682m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2683m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2685m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2687m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2688m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2690m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2692m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2693m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2695m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2697m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2698m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2700m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2702m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2703m 925 0 0 0 0 0 477s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2705m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2707m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2708m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2710m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2712m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2713m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2715m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2717m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2718m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2720m 925 0 0 0 0 0 478s 591s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2722m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2723m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2725m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2727m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2728m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2730m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2732m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2733m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2735m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2737m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2738m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2740m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2742m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2743m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2745m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2747m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2748m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2750m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2752m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2753m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2755m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2757m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2758m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2760m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2762m 925 0 0 0 0 0 478s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2763m 925 0 0 0 0 0 479s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2765m 925 0 0 0 0 0 479s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2767m 925 0 0 0 0 0 479s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2768m 925 0 0 0 0 0 479s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2770m 925 0 0 0 0 0 479s 590s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2772m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2773m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2775m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2777m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2778m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2780m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2782m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2783m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2785m 925 1 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2787m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2788m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2790m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2792m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2793m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2795m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2797m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2798m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2800m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2802m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2803m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2805m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2807m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2808m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2810m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2812m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2813m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2815m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2817m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2818m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2820m 925 0 0 0 0 0 479s 589s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2822m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2823m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2825m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2827m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2828m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2830m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2832m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2833m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2835m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2837m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2838m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2840m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2842m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2843m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2845m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2847m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2848m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2850m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2852m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2853m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2855m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2857m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2858m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2860m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2862m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2863m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2865m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2867m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2868m 925 0 0 0 0 0 480s 588s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2870m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2872m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2873m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2875m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2877m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2878m 925 0 0 0 0 0 480s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 9 2880m 925 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 0s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 100s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 200s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 300s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 400s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 500s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 600s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 700s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 800s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 900s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1000s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1100s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1200s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1300s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1400s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1500s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1600s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1700s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1800s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1900s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2000s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2100s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2200s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2300s 1013 0 0 0 0 0 481s 587s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2400s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2500s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2600s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2700s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2800s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2900s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3000s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3100s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3200s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3300s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3400s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3500s 1013 0 0 0 0 0 481s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3600s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3700s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3800s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 3900s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4000s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4100s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4200s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4300s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4400s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4500s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4600s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4700s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4800s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 4900s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5000s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5100s 1013 0 0 0 0 0 482s 586s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5200s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5300s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5400s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5500s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5600s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5700s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5800s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 5900s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6000s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6100s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6200s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6300s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6400s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6500s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6600s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6700s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6800s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 6900s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7000s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7100s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7200s 1013 0 0 0 0 0 482s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7300s 1012 1 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7400s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7500s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7600s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7700s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7800s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 7900s 1012 0 0 0 0 0 483s 585s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8000s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8100s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8200s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8300s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8400s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8500s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8600s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8700s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8800s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 8900s 1012 1 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9000s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9100s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9200s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9300s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9400s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9500s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9600s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9700s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9800s 1012 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 9900s 1011 1 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10000s 1011 1 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10100s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10200s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10300s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10400s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10500s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10600s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10700s 1011 0 0 0 0 0 483s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10800s 1011 0 0 0 0 0 484s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 10900s 1011 0 0 0 0 0 484s 584s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11000s 1011 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11100s 1010 1 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11200s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11300s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11400s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11500s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11600s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11700s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11800s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 11900s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12000s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12100s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12200s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12300s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12400s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12500s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12600s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12700s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12800s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 12900s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13000s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13100s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13200s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13300s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13400s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13500s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13600s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13700s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13800s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 13900s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14000s 1010 0 0 0 0 0 484s 583s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14100s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14200s 1010 1 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14300s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14400s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14500s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14600s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14700s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14800s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 14900s 1010 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15000s 1009 1 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15100s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15200s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15300s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15400s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15500s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15600s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15700s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15800s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 15900s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16000s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16100s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16200s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16300s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16400s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16500s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16600s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16700s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16800s 1009 0 0 0 0 0 485s 582s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 16900s 1008 1 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17000s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17100s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17200s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17300s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17400s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17500s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17600s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17700s 1008 0 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17800s 1008 1 0 0 0 0 485s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 17900s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18000s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18100s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18200s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18300s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18400s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18500s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18600s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18700s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18800s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 18900s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19000s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19100s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19200s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19300s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19400s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19500s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19600s 1008 0 0 0 0 0 486s 581s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19700s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19800s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 19900s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20000s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20100s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20200s 1008 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20300s 1007 1 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20400s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20500s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20600s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20700s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20800s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 20900s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21000s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21100s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21200s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21300s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21400s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21500s 1007 0 0 0 0 0 486s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21600s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21700s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21800s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 21900s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22000s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22100s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22200s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22300s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22400s 1007 0 0 0 0 0 487s 580s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22500s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22600s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22700s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22800s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 22900s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23000s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23100s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23200s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23300s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23400s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23500s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23600s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23700s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23800s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 23900s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24000s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24100s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24200s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24300s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24400s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24500s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24600s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24700s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24800s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 24900s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25000s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25100s 1007 0 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25200s 1007 1 0 0 0 0 487s 579s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25300s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25400s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25500s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25600s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25700s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25800s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 25900s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26000s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26100s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26200s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26300s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26400s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26500s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26600s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26700s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26800s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 26900s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27000s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27100s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27200s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27300s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27400s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27500s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27600s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27700s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27800s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 27900s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28000s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28100s 1007 0 0 0 0 0 488s 578s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28200s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28300s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28400s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28500s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28600s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28700s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28800s 1007 0 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 28900s 1006 1 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29000s 1005 1 0 0 0 0 488s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29100s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29200s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29300s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29400s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29500s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29600s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29700s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29800s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 29900s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30000s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30100s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30200s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30300s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30400s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30500s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30600s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30700s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30800s 1005 0 0 0 0 0 489s 577s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 30900s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31000s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31100s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31200s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31300s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31400s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31500s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31600s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31700s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31800s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 31900s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32000s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32100s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32200s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32300s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32400s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32500s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32600s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32700s 1005 0 0 0 0 0 489s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32800s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 32900s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33000s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33100s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33200s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33300s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33400s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33500s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33600s 1005 0 0 0 0 0 490s 576s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33700s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33800s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 33900s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34000s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34100s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34200s 1005 1 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34300s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34400s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34500s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34600s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34700s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34800s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 34900s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35000s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35100s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35200s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35300s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35400s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35500s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35600s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35700s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35800s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 35900s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36000s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36100s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36200s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36300s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36400s 1005 0 0 0 0 0 490s 575s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36500s 1005 0 0 0 0 0 490s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36600s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36700s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36800s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 36900s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37000s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37100s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37200s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37300s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37400s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37500s 1005 1 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37600s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37700s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37800s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 37900s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38000s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38100s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38200s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38300s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38400s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38500s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38600s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38700s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38800s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 38900s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39000s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39100s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39200s 1005 0 0 0 0 0 491s 574s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39300s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39400s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39500s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39600s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39700s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39800s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 39900s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40000s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40100s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40200s 1005 0 0 0 0 0 491s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40300s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40400s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40500s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40600s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40700s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40800s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 40900s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41000s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41100s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41200s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41300s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41400s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41500s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41600s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41700s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41800s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 41900s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42000s 1005 0 0 0 0 0 492s 573s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42100s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42200s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42300s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42400s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42500s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42600s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42700s 1005 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42800s 1006 1 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 42900s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43000s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43100s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43200s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43300s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43400s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43500s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43600s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43700s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43800s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 43900s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44000s 1006 0 0 0 0 0 492s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44100s 1006 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44200s 1006 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44300s 1006 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44400s 1005 1 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44500s 1005 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44600s 1005 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44700s 1005 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44800s 1005 0 0 0 0 0 493s 572s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 44900s 1005 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45000s 1005 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45100s 1005 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45200s 1006 2 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45300s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45400s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45500s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45600s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45700s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45800s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 45900s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46000s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46100s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46200s 1006 1 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46300s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46400s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46500s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46600s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46700s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46800s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 46900s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47000s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47100s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47200s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47300s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47400s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47500s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47600s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47700s 1006 0 0 0 0 0 493s 571s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47800s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 47900s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48000s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48100s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48200s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48300s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48400s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48500s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48600s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48700s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48800s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 48900s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49000s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49100s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49200s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49300s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49400s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49500s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49600s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49700s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49800s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 49900s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50000s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50100s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50200s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50300s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50400s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50500s 1006 0 0 0 0 0 494s 570s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50600s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50700s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50800s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 50900s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51000s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51100s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51200s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51300s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51400s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51500s 1006 0 0 0 0 0 494s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51600s 1005 1 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51700s 1005 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51800s 1005 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 51900s 1005 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52000s 1005 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52100s 1004 1 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52200s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52300s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52400s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52500s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52600s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52700s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52800s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 52900s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53000s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53100s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53200s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53300s 1004 0 0 0 0 0 495s 569s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53400s 1004 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53500s 1004 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53600s 1004 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53700s 1004 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53800s 1003 1 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 53900s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54000s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54100s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54200s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54300s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54400s 1003 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54500s 1002 1 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54600s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54700s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54800s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 54900s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55000s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55100s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55200s 1002 0 0 0 0 0 495s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55300s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55400s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55500s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55600s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55700s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55800s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 55900s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56000s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56100s 1002 0 0 0 0 0 496s 568s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56200s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56300s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56400s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56500s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56600s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56700s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56800s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 56900s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57000s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57100s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57200s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57300s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57400s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57500s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57600s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57700s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57800s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 57900s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58000s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58100s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58200s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58300s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58400s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58500s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58600s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58700s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58800s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 58900s 1002 0 0 0 0 0 496s 567s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59000s 1002 0 0 0 0 0 496s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59100s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59200s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59300s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59400s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59500s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59600s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59700s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59800s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 59900s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60000s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60100s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60200s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60300s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60400s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60500s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60600s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60700s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60800s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 60900s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61000s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61100s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61200s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61300s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61400s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61500s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61600s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61700s 1002 1 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61800s 1002 0 0 0 0 0 497s 566s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 61900s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62000s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62100s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62200s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62300s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62400s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62500s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62600s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62700s 1002 0 0 0 0 0 497s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62800s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 62900s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63000s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63100s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63200s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63300s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63400s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63500s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63600s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63700s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63800s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 63900s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64000s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64100s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64200s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64300s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64400s 1002 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64500s 1001 1 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64600s 1001 0 0 0 0 0 498s 565s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64700s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64800s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 64900s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65000s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65100s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65200s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65300s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65400s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65500s 1001 1 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65600s 1001 1 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65700s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65800s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 65900s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66000s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66100s 1001 1 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66200s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66300s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66400s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66500s 1001 0 0 0 0 0 498s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66600s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66700s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66800s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 66900s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67000s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67100s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67200s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67300s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67400s 1001 0 0 0 0 0 499s 564s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67500s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67600s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67700s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67800s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 67900s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68000s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68100s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68200s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68300s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68400s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68500s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68600s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68700s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68800s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 68900s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69000s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69100s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69200s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69300s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69400s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69500s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69600s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69700s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69800s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 69900s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70000s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70100s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70200s 1001 0 0 0 0 0 499s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70300s 1001 0 0 0 0 0 500s 563s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70400s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70500s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70600s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70700s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70800s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 70900s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71000s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71100s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71200s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71300s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71400s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71500s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71600s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71700s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71800s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 71900s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72000s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72100s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72200s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72300s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72400s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72500s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72600s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72700s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72800s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 72900s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73000s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73100s 1001 0 0 0 0 0 500s 562s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73200s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73300s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73400s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73500s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73600s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73700s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73800s 1001 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 73900s 1000 1 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74000s 1000 0 0 0 0 0 500s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74100s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74200s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74300s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74400s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74500s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74600s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74700s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74800s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 74900s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75000s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75100s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75200s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75300s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75400s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75500s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75600s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75700s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75800s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 75900s 1000 0 0 0 0 0 501s 561s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76000s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76100s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76200s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76300s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76400s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76500s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76600s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76700s 1000 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76800s 1001 1 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 76900s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77000s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77100s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77200s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77300s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77400s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77500s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77600s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77700s 1001 0 0 0 0 0 501s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77800s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 77900s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78000s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78100s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78200s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78300s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78400s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78500s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78600s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78700s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78800s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 78900s 1001 0 0 0 0 0 502s 560s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79000s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79100s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79200s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79300s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79400s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79500s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79600s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79700s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79800s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 79900s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80000s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80100s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80200s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80300s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80400s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80500s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80600s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80700s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80800s 1001 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 80900s 1000 1 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81000s 1000 0 0 0 0 0 502s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81100s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81200s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81300s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81400s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81500s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81600s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81700s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81800s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 81900s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82000s 1000 0 0 0 0 0 503s 559s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82100s 1000 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82200s 1000 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82300s 1000 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82400s 1001 1 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82500s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82600s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82700s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82800s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 82900s 1001 1 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83000s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83100s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83200s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83300s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83400s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83500s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83600s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83700s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83800s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 83900s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84000s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84100s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84200s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84300s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84400s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84500s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84600s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84700s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84800s 1001 0 0 0 0 0 503s 558s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 84900s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85000s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85100s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85200s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85300s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85400s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85500s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85600s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85700s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85800s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 85900s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86000s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86100s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86200s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86300s 1001 1 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86400s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86500s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86600s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86700s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86800s 1001 1 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 86900s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87000s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87100s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87200s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87300s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87400s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87500s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87600s 1001 0 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87700s 1001 1 0 0 0 0 504s 557s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87800s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 87900s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88000s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88100s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88200s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88300s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88400s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88500s 1001 0 0 0 0 0 504s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88600s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88700s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88800s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 88900s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89000s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89100s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89200s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89300s 1001 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89400s 1000 1 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89500s 1000 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89600s 1000 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89700s 1000 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89800s 1000 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 89900s 999 1 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90000s 999 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90100s 999 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90200s 999 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90300s 999 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90400s 1000 1 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90500s 1000 0 0 0 0 0 505s 556s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90600s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90700s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90800s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 90900s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91000s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91100s 1000 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91200s 999 1 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91300s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91400s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91500s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91600s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91700s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91800s 999 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 91900s 998 1 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92000s 998 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92100s 998 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92200s 998 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92300s 998 0 0 0 0 0 505s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92400s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92500s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92600s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92700s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92800s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 92900s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93000s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93100s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93200s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93300s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93400s 998 0 0 0 0 0 506s 555s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93500s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93600s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93700s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93800s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 93900s 999 1 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94000s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94100s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94200s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94300s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94400s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94500s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94600s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94700s 999 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94800s 998 1 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 94900s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95000s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95100s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95200s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95300s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95400s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95500s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95600s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95700s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95800s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 95900s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96000s 998 0 0 0 0 0 506s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96100s 998 0 0 0 0 0 507s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96200s 998 0 0 0 0 0 507s 554s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96300s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96400s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96500s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96600s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96700s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96800s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 96900s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97000s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97100s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97200s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97300s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97400s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97500s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97600s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97700s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97800s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 97900s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98000s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98100s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98200s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98300s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98400s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98500s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98600s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98700s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98800s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 98900s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99000s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99100s 998 0 0 0 0 0 507s 553s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99200s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99300s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99400s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99500s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99600s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99700s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99800s 998 0 0 0 0 0 507s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 99900s 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1667m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1668m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1670m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1672m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1673m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1675m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1677m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1678m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1680m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1682m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1683m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1685m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1687m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1688m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1690m 998 1 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1692m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1693m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1695m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1697m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1698m 998 0 0 0 0 0 508s 552s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1700m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1702m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1703m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1705m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1707m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1708m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1710m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1712m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1713m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1715m 998 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1717m 999 1 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1718m 999 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1720m 999 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1722m 999 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1723m 999 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1725m 999 0 0 0 0 0 508s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1727m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1728m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1730m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1732m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1733m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1735m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1737m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1738m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1740m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1742m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1743m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1745m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1747m 999 0 0 0 0 0 509s 551s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1748m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1750m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1752m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1753m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1755m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1757m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1758m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1760m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1762m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1763m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1765m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1767m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1768m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1770m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1772m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1773m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1775m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1777m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1778m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1780m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1782m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1783m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1785m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1787m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1788m 999 0 0 0 0 0 509s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1790m 999 0 0 0 0 0 510s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1792m 999 0 0 0 0 0 510s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1793m 999 0 0 0 0 0 510s 550s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1795m 999 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1797m 999 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1798m 999 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1800m 999 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1802m 998 1 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1803m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1805m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1807m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1808m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1810m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1812m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1813m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1815m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1817m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1818m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1820m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1822m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1823m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1825m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1827m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1828m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1830m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1832m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1833m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1835m 998 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1837m 997 1 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1838m 997 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1840m 997 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1842m 997 0 0 0 0 0 510s 549s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1843m 997 0 0 0 0 0 510s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1845m 997 0 0 0 0 0 510s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1847m 997 0 0 0 0 0 510s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1848m 997 0 0 0 0 0 510s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1850m 997 0 0 0 0 0 510s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1852m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1853m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1855m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1857m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1858m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1860m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1862m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1863m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1865m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1867m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1868m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1870m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1872m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1873m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1875m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1877m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1878m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1880m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1882m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1883m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1885m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1887m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1888m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1890m 997 0 0 0 0 0 511s 548s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1892m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1893m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1895m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1897m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1898m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1900m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1902m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1903m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1905m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1907m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1908m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1910m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1912m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1913m 997 0 0 0 0 0 511s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1915m 997 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1917m 997 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1918m 997 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1920m 997 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1922m 997 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1923m 996 1 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1925m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1927m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1928m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1930m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1932m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1933m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1935m 996 0 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1937m 996 1 0 0 0 0 512s 547s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1938m 996 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1940m 996 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1942m 995 2 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1943m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1945m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1947m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1948m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1950m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1952m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1953m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1955m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1957m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1958m 995 1 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1960m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1962m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1963m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1965m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1967m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1968m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1970m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1972m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1973m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1975m 995 0 0 0 0 0 512s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1977m 994 1 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1978m 994 0 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1980m 994 0 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1982m 994 0 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1983m 994 0 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1985m 994 0 0 0 0 0 513s 546s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1987m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1988m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1990m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1992m 994 1 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1993m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1995m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1997m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 1998m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2000m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2002m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2003m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2005m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2007m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2008m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2010m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2012m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2013m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2015m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2017m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2018m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2020m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2022m 994 1 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2023m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2025m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2027m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2028m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2030m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2032m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2033m 994 0 0 0 0 0 513s 545s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2035m 994 0 0 0 0 0 513s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2037m 994 1 0 0 0 0 513s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2038m 994 0 0 0 0 0 513s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2040m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2042m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2043m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2045m 994 1 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2047m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2048m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2050m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2052m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2053m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2055m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2057m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2058m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2060m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2062m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2063m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2065m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2067m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2068m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2070m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2072m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2073m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2075m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2077m 994 1 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2078m 994 0 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2080m 993 1 0 0 0 0 514s 544s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2082m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2083m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2085m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2087m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2088m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2090m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2092m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2093m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2095m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2097m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2098m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2100m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2102m 993 0 0 0 0 0 514s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2103m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2105m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2107m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2108m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2110m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2112m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2113m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2115m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2117m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2118m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2120m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2122m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2123m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2125m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2127m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2128m 993 0 0 0 0 0 515s 543s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2130m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2132m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2133m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2135m 993 1 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2137m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2138m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2140m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2142m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2143m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2145m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2147m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2148m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2150m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2152m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2153m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2155m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2157m 993 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2158m 992 1 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2160m 992 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2162m 991 1 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2163m 991 0 0 0 0 0 515s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2165m 991 1 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2167m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2168m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2170m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2172m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2173m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2175m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2177m 991 0 0 0 0 0 516s 542s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2178m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2180m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2182m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2183m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2185m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2187m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2188m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2190m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2192m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2193m 991 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2195m 990 1 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2197m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2198m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2200m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2202m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2203m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2205m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2207m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2208m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2210m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2212m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2213m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2215m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2217m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2218m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2220m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2222m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2223m 990 0 0 0 0 0 516s 541s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2225m 990 0 0 0 0 0 516s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2227m 990 0 0 0 0 0 516s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2228m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2230m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2232m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2233m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2235m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2237m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2238m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2240m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2242m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2243m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2245m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2247m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2248m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2250m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2252m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2253m 990 1 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2255m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2257m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2258m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2260m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2262m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2263m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2265m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2267m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2268m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2270m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2272m 990 0 0 0 0 0 517s 540s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2273m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2275m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2277m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2278m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2280m 990 1 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2282m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2283m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2285m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2287m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2288m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2290m 990 0 0 0 0 0 517s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2292m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2293m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2295m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2297m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2298m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2300m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2302m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2303m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2305m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2307m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2308m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2310m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2312m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2313m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2315m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2317m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2318m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2320m 990 0 0 0 0 0 518s 539s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2322m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2323m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2325m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2327m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2328m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2330m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2332m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2333m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2335m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2337m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2338m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2340m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2342m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2343m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2345m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2347m 990 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2348m 989 1 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2350m 989 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2352m 989 0 0 0 0 0 518s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2353m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2355m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2357m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2358m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2360m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2362m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2363m 989 1 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2365m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2367m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2368m 989 0 0 0 0 0 519s 538s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2370m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2372m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2373m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2375m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2377m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2378m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2380m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2382m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2383m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2385m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2387m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2388m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2390m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2392m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2393m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2395m 990 1 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2397m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2398m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2400m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2402m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2403m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2405m 990 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2407m 989 1 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2408m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2410m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2412m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2413m 989 1 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2415m 989 0 0 0 0 0 519s 537s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2417m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2418m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2420m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2422m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2423m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2425m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2427m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2428m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2430m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2432m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2433m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2435m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2437m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2438m 989 1 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2440m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2442m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2443m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2445m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2447m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2448m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2450m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2452m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2453m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2455m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2457m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2458m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2460m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2462m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2463m 989 0 0 0 0 0 520s 536s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2465m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2467m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2468m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2470m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2472m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2473m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2475m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2477m 989 0 0 0 0 0 520s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2478m 989 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2480m 989 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2482m 989 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2483m 988 1 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2485m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2487m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2488m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2490m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2492m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2493m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2495m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2497m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2498m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2500m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2502m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2503m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2505m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2507m 988 1 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2508m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2510m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2512m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2513m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2515m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2517m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2518m 988 0 0 0 0 0 521s 535s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2520m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2522m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2523m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2525m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2527m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2528m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2530m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2532m 988 0 0 0 0 0 521s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2533m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2535m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2537m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2538m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2540m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2542m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2543m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2545m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2547m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2548m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2550m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2552m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2553m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2555m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2557m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2558m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2560m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2562m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2563m 988 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2565m 987 1 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2567m 987 0 0 0 0 0 522s 534s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2568m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2570m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2572m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2573m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2575m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2577m 987 1 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2578m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2580m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2582m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2583m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2585m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2587m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2588m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2590m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2592m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2593m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2595m 987 0 0 0 0 0 522s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2597m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2598m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2600m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2602m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2603m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2605m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2607m 987 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2608m 986 1 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2610m 986 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2612m 986 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2613m 986 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2615m 986 0 0 0 0 0 523s 533s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2617m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2618m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2620m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2622m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2623m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2625m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2627m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2628m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2630m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2632m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2633m 986 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2635m 985 1 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2637m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2638m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2640m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2642m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2643m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2645m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2647m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2648m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2650m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2652m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2653m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2655m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2657m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2658m 985 0 0 0 0 0 523s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2660m 985 0 0 0 0 0 524s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2662m 985 0 0 0 0 0 524s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2663m 985 0 0 0 0 0 524s 532s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2665m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2667m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2668m 986 1 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2670m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2672m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2673m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2675m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2677m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2678m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2680m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2682m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2683m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2685m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2687m 986 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2688m 985 1 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2690m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2692m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2693m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2695m 985 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2697m 984 1 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2698m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2700m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2702m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2703m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2705m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2707m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2708m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2710m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2712m 984 0 0 0 0 0 524s 531s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2713m 984 0 0 0 0 0 524s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2715m 984 0 0 0 0 0 524s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2717m 984 0 0 0 0 0 524s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2718m 984 0 0 0 0 0 524s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2720m 984 0 0 0 0 0 524s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2722m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2723m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2725m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2727m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2728m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2730m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2732m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2733m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2735m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2737m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2738m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2740m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2742m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2743m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2745m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2747m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2748m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2750m 984 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2752m 983 1 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2753m 983 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2755m 983 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2757m 982 1 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2758m 982 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2760m 982 0 0 0 0 0 525s 530s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2762m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2763m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2765m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2767m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2768m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2770m 982 1 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2772m 982 1 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2773m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2775m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2777m 982 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2778m 981 1 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2780m 981 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2782m 981 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2783m 981 0 0 0 0 0 525s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2785m 981 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2787m 981 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2788m 981 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2790m 981 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2792m 980 1 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2793m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2795m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2797m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2798m 980 1 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2800m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2802m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2803m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2805m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2807m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2808m 980 0 0 0 0 0 526s 529s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2810m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2812m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2813m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2815m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2817m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2818m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2820m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2822m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2823m 980 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2825m 979 1 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2827m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2828m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2830m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2832m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2833m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2835m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2837m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2838m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2840m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2842m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2843m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2845m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2847m 979 0 0 0 0 0 526s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2848m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2850m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2852m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2853m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2855m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2857m 979 0 0 0 0 0 527s 528s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2858m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2860m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2862m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2863m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2865m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2867m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2868m 979 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2870m 978 1 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2872m 978 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2873m 978 1 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2875m 978 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2877m 978 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2878m 978 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 10 2880m 978 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 0s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 100s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 200s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 300s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 400s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 500s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 600s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 700s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 800s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 900s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1000s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1100s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1200s 948 0 0 0 0 0 527s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1300s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1400s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1500s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1600s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1700s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1800s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1900s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2000s 948 0 0 0 0 0 528s 527s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2100s 948 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2200s 947 1 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2300s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2400s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2500s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2600s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2700s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2800s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2900s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3000s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3100s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3200s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3300s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3400s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3500s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3600s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3700s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3800s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 3900s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4000s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4100s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4200s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4300s 947 0 0 0 0 0 528s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4400s 947 1 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4500s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4600s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4700s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4800s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 4900s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5000s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5100s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5200s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5300s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5400s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5500s 947 0 0 0 0 0 529s 526s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5600s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5700s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5800s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 5900s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6000s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6100s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6200s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6300s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6400s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6500s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6600s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6700s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6800s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 6900s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7000s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7100s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7200s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7300s 947 0 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7400s 946 1 0 0 0 0 529s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7500s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7600s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7700s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7800s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 7900s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8000s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8100s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8200s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8300s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8400s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8500s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8600s 946 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8700s 947 1 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8800s 947 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 8900s 947 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9000s 947 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9100s 947 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9200s 947 0 0 0 0 0 530s 525s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9300s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9400s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9500s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9600s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9700s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9800s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 9900s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10000s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10100s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10200s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10300s 947 0 0 0 0 0 530s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10400s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10500s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10600s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10700s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10800s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 10900s 947 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11000s 947 1 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11100s 948 1 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11200s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11300s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11400s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11500s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11600s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11700s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11800s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 11900s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12000s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12100s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12200s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12300s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12400s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12500s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12600s 948 0 0 0 0 0 531s 524s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12700s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12800s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 12900s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13000s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13100s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13200s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13300s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13400s 948 0 0 0 0 0 531s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13500s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13600s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13700s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13800s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 13900s 948 1 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14000s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14100s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14200s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14300s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14400s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14500s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14600s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14700s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14800s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 14900s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15000s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15100s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15200s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15300s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15400s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15500s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15600s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15700s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15800s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 15900s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16000s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16100s 948 0 0 0 0 0 532s 523s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16200s 948 0 0 0 0 0 532s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16300s 948 0 0 0 0 0 532s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16400s 948 0 0 0 0 0 532s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16500s 947 1 0 0 0 0 532s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16600s 947 0 0 0 0 0 532s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16700s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16800s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 16900s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17000s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17100s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17200s 947 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17300s 946 1 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17400s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17500s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17600s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17700s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17800s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 17900s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18000s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18100s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18200s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18300s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18400s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18500s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18600s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18700s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18800s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 18900s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19000s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19100s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19200s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19300s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19400s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19500s 946 0 0 0 0 0 533s 522s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19600s 946 0 0 0 0 0 533s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19700s 946 0 0 0 0 0 533s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19800s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 19900s 946 1 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20000s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20100s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20200s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20300s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20400s 946 1 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20500s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20600s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20700s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20800s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 20900s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21000s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21100s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21200s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21300s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21400s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21500s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21600s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21700s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21800s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 21900s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22000s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22100s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22200s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22300s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22400s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22500s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22600s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22700s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22800s 946 0 0 0 0 0 534s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 22900s 946 0 0 0 0 0 535s 521s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23000s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23100s 946 1 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23200s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23300s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23400s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23500s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23600s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23700s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23800s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 23900s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24000s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24100s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24200s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24300s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24400s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24500s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24600s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24700s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24800s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 24900s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25000s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25100s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25200s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25300s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25400s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25500s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25600s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25700s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25800s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 25900s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26000s 946 0 0 0 0 0 535s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26100s 946 0 0 0 0 0 536s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26200s 946 0 0 0 0 0 536s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26300s 946 0 0 0 0 0 536s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26400s 946 0 0 0 0 0 536s 520s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26500s 946 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26600s 946 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26700s 946 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26800s 946 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 26900s 946 1 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27000s 946 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27100s 945 1 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27200s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27300s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27400s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27500s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27600s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27700s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27800s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 27900s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28000s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28100s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28200s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28300s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28400s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28500s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28600s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28700s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28800s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 28900s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29000s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29100s 945 0 0 0 0 0 536s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29200s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29300s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29400s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29500s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29600s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29700s 945 0 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29800s 944 1 0 0 0 0 537s 519s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 29900s 943 1 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30000s 943 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30100s 942 1 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30200s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30300s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30400s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30500s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30600s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30700s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30800s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 30900s 942 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31000s 941 1 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31100s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31200s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31300s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31400s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31500s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31600s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31700s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31800s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 31900s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32000s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32100s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32200s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32300s 941 0 0 0 0 0 537s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32400s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32500s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32600s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32700s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32800s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 32900s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33000s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33100s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33200s 941 0 0 0 0 0 538s 518s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33300s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33400s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33500s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33600s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33700s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33800s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 33900s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34000s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34100s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34200s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34300s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34400s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34500s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34600s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34700s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34800s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 34900s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35000s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35100s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35200s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35300s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35400s 941 0 0 0 0 0 538s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35500s 941 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35600s 940 1 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35700s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35800s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 35900s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36000s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36100s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36200s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36300s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36400s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36500s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36600s 940 0 0 0 0 0 539s 517s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36700s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36800s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 36900s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37000s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37100s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37200s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37300s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37400s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37500s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37600s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37700s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37800s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 37900s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38000s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38100s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38200s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38300s 940 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38400s 939 1 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38500s 939 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38600s 939 0 0 0 0 0 539s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38700s 939 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38800s 939 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 38900s 939 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39000s 939 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39100s 938 1 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39200s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39300s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39400s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39500s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39600s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39700s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39800s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 39900s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40000s 938 0 0 0 0 0 540s 516s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40100s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40200s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40300s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40400s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40500s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40600s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40700s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40800s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 40900s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41000s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41100s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41200s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41300s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41400s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41500s 938 1 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41600s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41700s 938 0 0 0 0 0 540s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41800s 937 1 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 41900s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42000s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42100s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42200s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42300s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42400s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42500s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42600s 937 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42700s 936 1 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42800s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 42900s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43000s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43100s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43200s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43300s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43400s 936 0 0 0 0 0 541s 515s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43500s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43600s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43700s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43800s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 43900s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44000s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44100s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44200s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44300s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44400s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44500s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44600s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44700s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44800s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 44900s 936 0 0 0 0 0 541s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45000s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45100s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45200s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45300s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45400s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45500s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45600s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45700s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45800s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 45900s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46000s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46100s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46200s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46300s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46400s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46500s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46600s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46700s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46800s 936 0 0 0 0 0 542s 514s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 46900s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47000s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47100s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47200s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47300s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47400s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47500s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47600s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47700s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47800s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 47900s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48000s 936 0 0 0 0 0 542s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48100s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48200s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48300s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48400s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48500s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48600s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48700s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48800s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 48900s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49000s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49100s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49200s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49300s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49400s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49500s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49600s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49700s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49800s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 49900s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50000s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50100s 936 0 0 0 0 0 543s 513s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50200s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50300s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50400s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50500s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50600s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50700s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50800s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 50900s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51000s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51100s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51200s 936 0 0 0 0 0 543s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51300s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51400s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51500s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51600s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51700s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51800s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 51900s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52000s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52100s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52200s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52300s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52400s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52500s 936 1 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52600s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52700s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52800s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 52900s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53000s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53100s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53200s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53300s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53400s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53500s 936 0 0 0 0 0 544s 512s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53600s 936 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53700s 936 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53800s 936 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 53900s 936 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54000s 936 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54100s 935 1 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54200s 935 1 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54300s 935 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54400s 935 0 0 0 0 0 544s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54500s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54600s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54700s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54800s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 54900s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55000s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55100s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55200s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55300s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55400s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55500s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55600s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55700s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55800s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 55900s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56000s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56100s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56200s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56300s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56400s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56500s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56600s 935 1 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56700s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56800s 935 1 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 56900s 935 0 0 0 0 0 545s 511s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57000s 934 1 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57100s 934 0 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57200s 934 0 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57300s 934 0 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57400s 934 0 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57500s 934 0 0 0 0 0 545s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57600s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57700s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57800s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 57900s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58000s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58100s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58200s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58300s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58400s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58500s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58600s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58700s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58800s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 58900s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59000s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59100s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59200s 934 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59300s 933 1 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59400s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59500s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59600s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59700s 933 1 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59800s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 59900s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60000s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60100s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60200s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60300s 933 0 0 0 0 0 546s 510s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60400s 933 0 0 0 0 0 546s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60500s 933 0 0 0 0 0 546s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60600s 933 0 0 0 0 0 546s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60700s 932 1 0 0 0 0 546s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60800s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 60900s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61000s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61100s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61200s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61300s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61400s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61500s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61600s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61700s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61800s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 61900s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62000s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62100s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62200s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62300s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62400s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62500s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62600s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62700s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62800s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 62900s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63000s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63100s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63200s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63300s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63400s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63500s 932 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63600s 931 1 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63700s 931 0 0 0 0 0 547s 509s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63800s 931 0 0 0 0 0 547s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 63900s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64000s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64100s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64200s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64300s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64400s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64500s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64600s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64700s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64800s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 64900s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65000s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65100s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65200s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65300s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65400s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65500s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65600s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65700s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65800s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 65900s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66000s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66100s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66200s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66300s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66400s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66500s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66600s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66700s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66800s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 66900s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67000s 931 0 0 0 0 0 548s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67100s 931 0 0 0 0 0 549s 508s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67200s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67300s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67400s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67500s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67600s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67700s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67800s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 67900s 931 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68000s 930 1 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68100s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68200s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68300s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68400s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68500s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68600s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68700s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68800s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 68900s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69000s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69100s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69200s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69300s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69400s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69500s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69600s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69700s 930 0 0 0 0 0 549s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69800s 930 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 69900s 930 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70000s 930 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70100s 930 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70200s 929 1 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70300s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70400s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70500s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70600s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70700s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70800s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 70900s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71000s 929 0 0 0 0 0 550s 507s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71100s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71200s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71300s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71400s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71500s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71600s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71700s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71800s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 71900s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72000s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72100s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72200s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72300s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72400s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72500s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72600s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72700s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72800s 929 0 0 0 0 0 550s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 72900s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73000s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73100s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73200s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73300s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73400s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73500s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73600s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73700s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73800s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 73900s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74000s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74100s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74200s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74300s 929 0 0 0 0 0 551s 506s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74400s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74500s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74600s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74700s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74800s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 74900s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75000s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75100s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75200s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75300s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75400s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75500s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75600s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75700s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75800s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 75900s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76000s 929 0 0 0 0 0 551s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76100s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76200s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76300s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76400s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76500s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76600s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76700s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76800s 929 1 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 76900s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77000s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77100s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77200s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77300s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77400s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77500s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77600s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77700s 929 0 0 0 0 0 552s 505s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77800s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 77900s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78000s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78100s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78200s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78300s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78400s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78500s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78600s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78700s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78800s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 78900s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79000s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79100s 929 0 0 0 0 0 552s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79200s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79300s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79400s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79500s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79600s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79700s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79800s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 79900s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80000s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80100s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80200s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80300s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80400s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80500s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80600s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80700s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80800s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 80900s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81000s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81100s 929 0 0 0 0 0 553s 504s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81200s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81300s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81400s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81500s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81600s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81700s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81800s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 81900s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82000s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82100s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82200s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82300s 929 0 0 0 0 0 553s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82400s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82500s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82600s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82700s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82800s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 82900s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83000s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83100s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83200s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83300s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83400s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83500s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83600s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83700s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83800s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 83900s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84000s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84100s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84200s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84300s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84400s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84500s 929 0 0 0 0 0 554s 503s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84600s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84700s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84800s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 84900s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85000s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85100s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85200s 929 1 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85300s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85400s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85500s 929 0 0 0 0 0 554s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85600s 929 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85700s 928 1 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85800s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 85900s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86000s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86100s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86200s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86300s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86400s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86500s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86600s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86700s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86800s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 86900s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87000s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87100s 928 1 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87200s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87300s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87400s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87500s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87600s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87700s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87800s 928 0 0 0 0 0 555s 502s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 87900s 928 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88000s 928 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88100s 928 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88200s 927 1 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88300s 927 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88400s 927 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88500s 927 0 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88600s 927 1 0 0 0 0 555s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88700s 927 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88800s 927 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 88900s 927 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89000s 927 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89100s 927 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89200s 926 1 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89300s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89400s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89500s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89600s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89700s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89800s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 89900s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90000s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90100s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90200s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90300s 926 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90400s 925 1 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90500s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90600s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90700s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90800s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 90900s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91000s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91100s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91200s 925 0 0 0 0 0 556s 501s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91300s 925 0 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91400s 925 0 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91500s 925 0 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91600s 925 1 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91700s 925 0 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91800s 924 2 0 0 0 0 556s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 91900s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92000s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92100s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92200s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92300s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92400s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92500s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92600s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92700s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92800s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 92900s 924 1 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93000s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93100s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93200s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93300s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93400s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93500s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93600s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93700s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93800s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 93900s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94000s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94100s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94200s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94300s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94400s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94500s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94600s 924 0 0 0 0 0 557s 500s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94700s 924 0 0 0 0 0 557s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94800s 924 0 0 0 0 0 557s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 94900s 924 0 0 0 0 0 557s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95000s 924 0 0 0 0 0 557s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95100s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95200s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95300s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95400s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95500s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95600s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95700s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95800s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 95900s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96000s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96100s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96200s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96300s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96400s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96500s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96600s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96700s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96800s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 96900s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97000s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97100s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97200s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97300s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97400s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97500s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97600s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97700s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97800s 924 0 0 0 0 0 558s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 97900s 924 0 0 0 0 0 559s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98000s 924 0 0 0 0 0 559s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98100s 924 0 0 0 0 0 559s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98200s 924 0 0 0 0 0 559s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98300s 924 0 0 0 0 0 559s 499s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98400s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98500s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98600s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98700s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98800s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 98900s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99000s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99100s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99200s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99300s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99400s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99500s 924 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99600s 922 2 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99700s 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99800s 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 99900s 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1667m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1668m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1670m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1672m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1673m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1675m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1677m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1678m 922 0 0 0 0 0 559s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1680m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1682m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1683m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1685m 922 1 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1687m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1688m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1690m 922 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1692m 921 1 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1693m 921 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1695m 921 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1697m 921 0 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1698m 922 1 0 0 0 0 560s 498s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1700m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1702m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1703m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1705m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1707m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1708m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1710m 922 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1712m 921 1 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1713m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1715m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1717m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1718m 921 1 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1720m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1722m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1723m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1725m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1727m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1728m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1730m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1732m 921 0 0 0 0 0 560s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1733m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1735m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1737m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1738m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1740m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1742m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1743m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1745m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1747m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1748m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1750m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1752m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1753m 921 0 0 0 0 0 561s 497s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1755m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1757m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1758m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1760m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1762m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1763m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1765m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1767m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1768m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1770m 921 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1772m 920 1 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1773m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1775m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1777m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1778m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1780m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1782m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1783m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1785m 920 0 0 0 0 0 561s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1787m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1788m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1790m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1792m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1793m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1795m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1797m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1798m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1800m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1802m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1803m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1805m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1807m 920 1 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1808m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1810m 920 0 0 0 0 0 562s 496s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1812m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1813m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1815m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1817m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1818m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1820m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1822m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1823m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1825m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1827m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1828m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1830m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1832m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1833m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1835m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1837m 920 0 0 0 0 0 562s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1838m 920 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1840m 919 1 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1842m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1843m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1845m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1847m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1848m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1850m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1852m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1853m 919 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1855m 918 1 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1857m 917 1 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1858m 917 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1860m 917 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1862m 917 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1863m 917 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1865m 917 0 0 0 0 0 563s 495s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1867m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1868m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1870m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1872m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1873m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1875m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1877m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1878m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1880m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1882m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1883m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1885m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1887m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1888m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1890m 917 0 0 0 0 0 563s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1892m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1893m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1895m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1897m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1898m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1900m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1902m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1903m 917 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1905m 916 1 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1907m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1908m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1910m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1912m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1913m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1915m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1917m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1918m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1920m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1922m 916 0 0 0 0 0 564s 494s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1923m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1925m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1927m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1928m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1930m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1932m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1933m 916 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1935m 917 1 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1937m 917 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1938m 917 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1940m 917 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1942m 917 0 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1943m 916 1 0 0 0 0 564s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1945m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1947m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1948m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1950m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1952m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1953m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1955m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1957m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1958m 916 1 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1960m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1962m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1963m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1965m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1967m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1968m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1970m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1972m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1973m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1975m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1977m 916 0 0 0 0 0 565s 493s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1978m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1980m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1982m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1983m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1985m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1987m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1988m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1990m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1992m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1993m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1995m 916 1 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1997m 916 0 0 0 0 0 565s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 1998m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2000m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2002m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2003m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2005m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2007m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2008m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2010m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2012m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2013m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2015m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2017m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2018m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2020m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2022m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2023m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2025m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2027m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2028m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2030m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2032m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2033m 916 0 0 0 0 0 566s 492s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2035m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2037m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2038m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2040m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2042m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2043m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2045m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2047m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2048m 916 0 0 0 0 0 566s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2050m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2052m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2053m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2055m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2057m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2058m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2060m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2062m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2063m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2065m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2067m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2068m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2070m 916 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2072m 915 1 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2073m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2075m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2077m 915 1 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2078m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2080m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2082m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2083m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2085m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2087m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2088m 915 0 0 0 0 0 567s 491s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2090m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2092m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2093m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2095m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2097m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2098m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2100m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2102m 915 0 0 0 0 0 567s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2103m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2105m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2107m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2108m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2110m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2112m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2113m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2115m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2117m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2118m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2120m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2122m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2123m 916 1 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2125m 916 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2127m 915 1 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2128m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2130m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2132m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2133m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2135m 915 1 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2137m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2138m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2140m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2142m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2143m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2145m 915 0 0 0 0 0 568s 490s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2147m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2148m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2150m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2152m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2153m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2155m 915 0 0 0 0 0 568s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2157m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2158m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2160m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2162m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2163m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2165m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2167m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2168m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2170m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2172m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2173m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2175m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2177m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2178m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2180m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2182m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2183m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2185m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2187m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2188m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2190m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2192m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2193m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2195m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2197m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2198m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2200m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2202m 915 0 0 0 0 0 569s 489s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2203m 915 0 0 0 0 0 569s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2205m 915 0 0 0 0 0 569s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2207m 915 0 0 0 0 0 569s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2208m 915 0 0 0 0 0 569s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2210m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2212m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2213m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2215m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2217m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2218m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2220m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2222m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2223m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2225m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2227m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2228m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2230m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2232m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2233m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2235m 915 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2237m 914 1 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2238m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2240m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2242m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2243m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2245m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2247m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2248m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2250m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2252m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2253m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2255m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2257m 914 0 0 0 0 0 570s 488s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2258m 914 0 0 0 0 0 570s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2260m 914 0 0 0 0 0 570s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2262m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2263m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2265m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2267m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2268m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2270m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2272m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2273m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2275m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2277m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2278m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2280m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2282m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2283m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2285m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2287m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2288m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2290m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2292m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2293m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2295m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2297m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2298m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2300m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2302m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2303m 914 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2305m 914 1 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2307m 913 1 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2308m 913 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2310m 913 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2312m 913 0 0 0 0 0 571s 487s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2313m 913 0 0 0 0 0 571s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2315m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2317m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2318m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2320m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2322m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2323m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2325m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2327m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2328m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2330m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2332m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2333m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2335m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2337m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2338m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2340m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2342m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2343m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2345m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2347m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2348m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2350m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2352m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2353m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2355m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2357m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2358m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2360m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2362m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2363m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2365m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2367m 913 0 0 0 0 0 572s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2368m 913 0 0 0 0 0 573s 486s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2370m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2372m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2373m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2375m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2377m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2378m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2380m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2382m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2383m 913 1 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2385m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2387m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2388m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2390m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2392m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2393m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2395m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2397m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2398m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2400m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2402m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2403m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2405m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2407m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2408m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2410m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2412m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2413m 913 1 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2415m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2417m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2418m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2420m 913 0 0 0 0 0 573s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2422m 913 0 0 0 0 0 574s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2423m 913 0 0 0 0 0 574s 485s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2425m 913 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2427m 913 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2428m 913 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2430m 912 1 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2432m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2433m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2435m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2437m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2438m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2440m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2442m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2443m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2445m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2447m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2448m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2450m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2452m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2453m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2455m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2457m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2458m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2460m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2462m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2463m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2465m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2467m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2468m 912 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2470m 911 1 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2472m 911 0 0 0 0 0 574s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2473m 911 0 0 0 0 0 575s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2475m 911 0 0 0 0 0 575s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2477m 911 0 0 0 0 0 575s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2478m 911 0 0 0 0 0 575s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2480m 911 0 0 0 0 0 575s 484s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2482m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2483m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2485m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2487m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2488m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2490m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2492m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2493m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2495m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2497m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2498m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2500m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2502m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2503m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2505m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2507m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2508m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2510m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2512m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2513m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2515m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2517m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2518m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2520m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2522m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2523m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2525m 911 0 0 0 0 0 575s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2527m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2528m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2530m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2532m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2533m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2535m 911 0 0 0 0 0 576s 483s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2537m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2538m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2540m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2542m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2543m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2545m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2547m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2548m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2550m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2552m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2553m 911 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2555m 910 1 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2557m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2558m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2560m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2562m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2563m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2565m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2567m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2568m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2570m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2572m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2573m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2575m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2577m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2578m 910 0 0 0 0 0 576s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2580m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2582m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2583m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2585m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2587m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2588m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2590m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2592m 910 0 0 0 0 0 577s 482s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2593m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2595m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2597m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2598m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2600m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2602m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2603m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2605m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2607m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2608m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2610m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2612m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2613m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2615m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2617m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2618m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2620m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2622m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2623m 910 0 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2625m 910 1 0 0 0 0 577s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2627m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2628m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2630m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2632m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2633m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2635m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2637m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2638m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2640m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2642m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2643m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2645m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2647m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2648m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2650m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2652m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2653m 910 0 0 0 0 0 578s 481s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2655m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2657m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2658m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2660m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2662m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2663m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2665m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2667m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2668m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2670m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2672m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2673m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2675m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2677m 910 0 0 0 0 0 578s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2678m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2680m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2682m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2683m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2685m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2687m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2688m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2690m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2692m 910 1 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2693m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2695m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2697m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2698m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2700m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2702m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2703m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2705m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2707m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2708m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2710m 910 0 0 0 0 0 579s 480s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2712m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2713m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2715m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2717m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2718m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2720m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2722m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2723m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2725m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2727m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2728m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2730m 910 0 0 0 0 0 579s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2732m 910 1 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2733m 910 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2735m 910 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2737m 910 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2738m 910 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2740m 910 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2742m 909 1 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2743m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2745m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2747m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2748m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2750m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2752m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2753m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2755m 909 1 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2757m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2758m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2760m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2762m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2763m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2765m 909 0 0 0 0 0 580s 479s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2767m 907 2 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2768m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2770m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2772m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2773m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2775m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2777m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2778m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2780m 907 1 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2782m 907 0 0 0 0 0 580s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2783m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2785m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2787m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2788m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2790m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2792m 907 1 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2793m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2795m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2797m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2798m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2800m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2802m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2803m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2805m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2807m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2808m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2810m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2812m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2813m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2815m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2817m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2818m 907 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2820m 906 1 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2822m 906 0 0 0 0 0 581s 478s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2823m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2825m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2827m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2828m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2830m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2832m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2833m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2835m 906 0 0 0 0 0 581s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2837m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2838m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2840m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2842m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2843m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2845m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2847m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2848m 907 1 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2850m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2852m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2853m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2855m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2857m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2858m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2860m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2862m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2863m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2865m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2867m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2868m 907 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2870m 906 1 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2872m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2873m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2875m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2877m 906 0 0 0 0 0 582s 477s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2878m 906 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 11 2880m 906 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 0s 1036 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 100s 1036 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 200s 1036 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 300s 1036 0 0 0 0 0 582s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 400s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 500s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 600s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 700s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 800s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 900s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1000s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1100s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1200s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1300s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1400s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1500s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1600s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1700s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1800s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1900s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2000s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2100s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2200s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2300s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2400s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2500s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2600s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2700s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2800s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2900s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3000s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3100s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3200s 1036 0 0 0 0 0 583s 476s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3300s 1036 0 0 0 0 0 583s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3400s 1036 0 0 0 0 0 583s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3500s 1036 0 0 0 0 0 583s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3600s 1036 0 0 0 0 0 583s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3700s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3800s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 3900s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4000s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4100s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4200s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4300s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4400s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4500s 1035 1 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4600s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4700s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4800s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 4900s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5000s 1035 1 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5100s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5200s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5300s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5400s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5500s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5600s 1036 1 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5700s 1036 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5800s 1035 1 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 5900s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6000s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6100s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6200s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6300s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6400s 1035 0 0 0 0 0 584s 475s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6500s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6600s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6700s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6800s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 6900s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7000s 1035 0 0 0 0 0 584s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7100s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7200s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7300s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7400s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7500s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7600s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7700s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7800s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 7900s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8000s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8100s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8200s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8300s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8400s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8500s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8600s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8700s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8800s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 8900s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9000s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9100s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9200s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9300s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9400s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9500s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9600s 1035 0 0 0 0 0 585s 474s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9700s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9800s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 9900s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10000s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10100s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10200s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10300s 1035 0 0 0 0 0 585s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10400s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10500s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10600s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10700s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10800s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 10900s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11000s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11100s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11200s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11300s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11400s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11500s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11600s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11700s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11800s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 11900s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12000s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12100s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12200s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12300s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12400s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12500s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12600s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12700s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12800s 1035 0 0 0 0 0 586s 473s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 12900s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13000s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13100s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13200s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13300s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13400s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13500s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13600s 1035 0 0 0 0 0 586s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13700s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13800s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 13900s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14000s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14100s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14200s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14300s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14400s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14500s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14600s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14700s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14800s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 14900s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15000s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15100s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15200s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15300s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15400s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15500s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15600s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15700s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15800s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 15900s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16000s 1035 1 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16100s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16200s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16300s 1035 0 0 0 0 0 587s 472s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16400s 1035 0 0 0 0 0 587s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16500s 1035 0 0 0 0 0 587s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16600s 1035 0 0 0 0 0 587s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16700s 1035 0 0 0 0 0 587s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16800s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 16900s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17000s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17100s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17200s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17300s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17400s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17500s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17600s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17700s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17800s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 17900s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18000s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18100s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18200s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18300s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18400s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18500s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18600s 1035 1 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18700s 1035 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18800s 1034 2 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 18900s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19000s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19100s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19200s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19300s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19400s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19500s 1034 0 0 0 0 0 588s 471s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19600s 1034 0 0 0 0 0 588s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19700s 1034 1 0 0 0 0 588s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19800s 1034 0 0 0 0 0 588s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 19900s 1034 0 0 0 0 0 588s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20000s 1034 0 0 0 0 0 588s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20100s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20200s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20300s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20400s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20500s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20600s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20700s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20800s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 20900s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21000s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21100s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21200s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21300s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21400s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21500s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21600s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21700s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21800s 1034 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 21900s 1033 1 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22000s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22100s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22200s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22300s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22400s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22500s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22600s 1033 0 0 0 0 0 589s 470s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22700s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22800s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 22900s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23000s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23100s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23200s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23300s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23400s 1033 0 0 0 0 0 589s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23500s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23600s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23700s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23800s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 23900s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24000s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24100s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24200s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24300s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24400s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24500s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24600s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24700s 1033 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24800s 1032 2 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 24900s 1032 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25000s 1032 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25100s 1032 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25200s 1032 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25300s 1032 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25400s 1031 1 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25500s 1031 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25600s 1031 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25700s 1031 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25800s 1031 0 0 0 0 0 590s 469s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 25900s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26000s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26100s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26200s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26300s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26400s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26500s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26600s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26700s 1031 0 0 0 0 0 590s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26800s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 26900s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27000s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27100s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27200s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27300s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27400s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27500s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27600s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27700s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27800s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 27900s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28000s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28100s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28200s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28300s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28400s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28500s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28600s 1031 1 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28700s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28800s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 28900s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29000s 1031 0 0 0 0 0 591s 468s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29100s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29200s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29300s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29400s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29500s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29600s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29700s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29800s 1031 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 29900s 1030 1 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30000s 1030 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30100s 1030 0 0 0 0 0 591s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30200s 1030 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30300s 1030 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30400s 1030 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30500s 1030 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30600s 1029 1 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30700s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30800s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 30900s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31000s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31100s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31200s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31300s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31400s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31500s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31600s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31700s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31800s 1029 1 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 31900s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32000s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32100s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32200s 1029 0 0 0 0 0 592s 467s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32300s 1029 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32400s 1029 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32500s 1028 1 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32600s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32700s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32800s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 32900s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33000s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33100s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33200s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33300s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33400s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33500s 1028 0 0 0 0 0 592s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33600s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33700s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33800s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 33900s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34000s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34100s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34200s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34300s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34400s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34500s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34600s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34700s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34800s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 34900s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35000s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35100s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35200s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35300s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35400s 1028 0 0 0 0 0 593s 466s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35500s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35600s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35700s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35800s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 35900s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36000s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36100s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36200s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36300s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36400s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36500s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36600s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36700s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36800s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 36900s 1028 0 0 0 0 0 593s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37000s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37100s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37200s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37300s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37400s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37500s 1028 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37600s 1027 1 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37700s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37800s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 37900s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38000s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38100s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38200s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38300s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38400s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38500s 1027 0 0 0 0 0 594s 465s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38600s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38700s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38800s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 38900s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39000s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39100s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39200s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39300s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39400s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39500s 1027 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39600s 1026 1 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39700s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39800s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 39900s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40000s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40100s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40200s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40300s 1026 0 0 0 0 0 594s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40400s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40500s 1026 1 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40600s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40700s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40800s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 40900s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41000s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41100s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41200s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41300s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41400s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41500s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41600s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41700s 1026 0 0 0 0 0 595s 464s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41800s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 41900s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42000s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42100s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42200s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42300s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42400s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42500s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42600s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42700s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42800s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 42900s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43000s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43100s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43200s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43300s 1026 1 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43400s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43500s 1026 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43600s 1025 1 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43700s 1025 0 0 0 0 0 595s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43800s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 43900s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44000s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44100s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44200s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44300s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44400s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44500s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44600s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44700s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44800s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 44900s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45000s 1025 0 0 0 0 0 596s 463s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45100s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45200s 1025 1 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45300s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45400s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45500s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45600s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45700s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45800s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 45900s 1025 1 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46000s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46100s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46200s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46300s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46400s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46500s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46600s 1025 0 0 0 0 0 596s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46700s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46800s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 46900s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47000s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47100s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47200s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47300s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47400s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47500s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47600s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47700s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47800s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 47900s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48000s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48100s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48200s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48300s 1025 1 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48400s 1025 0 0 0 0 0 597s 462s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48500s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48600s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48700s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48800s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 48900s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49000s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49100s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49200s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49300s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49400s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49500s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49600s 1025 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49700s 1024 1 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49800s 1024 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 49900s 1024 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50000s 1024 0 0 0 0 0 597s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50100s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50200s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50300s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50400s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50500s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50600s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50700s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50800s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 50900s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51000s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51100s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51200s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51300s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51400s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51500s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51600s 1024 0 0 0 0 0 598s 461s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51700s 1024 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51800s 1024 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 51900s 1024 1 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52000s 1024 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52100s 1024 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52200s 1023 1 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52300s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52400s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52500s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52600s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52700s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52800s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 52900s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53000s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53100s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53200s 1023 1 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53300s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53400s 1023 0 0 0 0 0 598s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53500s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53600s 1023 1 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53700s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53800s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 53900s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54000s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54100s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54200s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54300s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54400s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54500s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54600s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54700s 1023 0 0 0 0 0 599s 460s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54800s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 54900s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55000s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55100s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55200s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55300s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55400s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55500s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55600s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55700s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55800s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 55900s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56000s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56100s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56200s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56300s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56400s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56500s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56600s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56700s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56800s 1023 0 0 0 0 0 599s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 56900s 1023 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57000s 1023 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57100s 1023 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57200s 1023 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57300s 1023 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57400s 1022 1 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57500s 1022 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57600s 1022 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57700s 1022 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57800s 1022 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 57900s 1022 0 0 0 0 0 600s 459s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58000s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58100s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58200s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58300s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58400s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58500s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58600s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58700s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58800s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 58900s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59000s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59100s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59200s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59300s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59400s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59500s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59600s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59700s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59800s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 59900s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60000s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60100s 1022 0 0 0 0 0 600s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60200s 1022 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60300s 1021 1 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60400s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60500s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60600s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60700s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60800s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 60900s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61000s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61100s 1021 0 0 0 0 0 601s 458s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61200s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61300s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61400s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61500s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61600s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61700s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61800s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 61900s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62000s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62100s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62200s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62300s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62400s 1021 1 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62500s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62600s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62700s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62800s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 62900s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63000s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63100s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63200s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63300s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63400s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63500s 1021 0 0 0 0 0 601s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63600s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63700s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63800s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 63900s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64000s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64100s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64200s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64300s 1021 0 0 0 0 0 602s 457s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64400s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64500s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64600s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64700s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64800s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 64900s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65000s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65100s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65200s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65300s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65400s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65500s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65600s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65700s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65800s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 65900s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66000s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66100s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66200s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66300s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66400s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66500s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66600s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66700s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66800s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 66900s 1021 0 0 0 0 0 602s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67000s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67100s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67200s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67300s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67400s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67500s 1021 0 0 0 0 0 603s 456s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67600s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67700s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67800s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 67900s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68000s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68100s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68200s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68300s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68400s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68500s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68600s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68700s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68800s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 68900s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69000s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69100s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69200s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69300s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69400s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69500s 1021 1 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69600s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69700s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69800s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 69900s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70000s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70100s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70200s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70300s 1021 0 0 0 0 0 603s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70400s 1021 0 0 0 0 0 604s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70500s 1021 0 0 0 0 0 604s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70600s 1021 0 0 0 0 0 604s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70700s 1021 0 0 0 0 0 604s 455s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70800s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 70900s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71000s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71100s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71200s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71300s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71400s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71500s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71600s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71700s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71800s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 71900s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72000s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72100s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72200s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72300s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72400s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72500s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72600s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72700s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72800s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 72900s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73000s 1021 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73100s 1020 1 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73200s 1020 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73300s 1020 1 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73400s 1020 1 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73500s 1020 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73600s 1020 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73700s 1020 0 0 0 0 0 604s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73800s 1020 0 0 0 0 0 605s 454s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 73900s 1020 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74000s 1020 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74100s 1020 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74200s 1020 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74300s 1020 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74400s 1019 1 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74500s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74600s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74700s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74800s 1019 1 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 74900s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75000s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75100s 1019 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75200s 1018 1 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75300s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75400s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75500s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75600s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75700s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75800s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 75900s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76000s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76100s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76200s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76300s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76400s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76500s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76600s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76700s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76800s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 76900s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77000s 1018 0 0 0 0 0 605s 453s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77100s 1018 0 0 0 0 0 605s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77200s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77300s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77400s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77500s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77600s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77700s 1018 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77800s 1017 1 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 77900s 1017 1 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78000s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78100s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78200s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78300s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78400s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78500s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78600s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78700s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78800s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 78900s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79000s 1017 1 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79100s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79200s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79300s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79400s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79500s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79600s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79700s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79800s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 79900s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80000s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80100s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80200s 1017 0 0 0 0 0 606s 452s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80300s 1017 0 0 0 0 0 606s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80400s 1017 0 0 0 0 0 606s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80500s 1017 0 0 0 0 0 606s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80600s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80700s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80800s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 80900s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81000s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81100s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81200s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81300s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81400s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81500s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81600s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81700s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81800s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 81900s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82000s 1017 1 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82100s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82200s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82300s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82400s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82500s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82600s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82700s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82800s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 82900s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83000s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83100s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83200s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83300s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83400s 1017 0 0 0 0 0 607s 451s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83500s 1017 0 0 0 0 0 607s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83600s 1017 0 0 0 0 0 607s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83700s 1017 0 0 0 0 0 607s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83800s 1017 0 0 0 0 0 607s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 83900s 1017 0 0 0 0 0 607s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84000s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84100s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84200s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84300s 1017 1 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84400s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84500s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84600s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84700s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84800s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 84900s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85000s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85100s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85200s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85300s 1017 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85400s 1016 2 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85500s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85600s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85700s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85800s 1016 1 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 85900s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86000s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86100s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86200s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86300s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86400s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86500s 1016 0 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86600s 1015 1 0 0 0 0 608s 450s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86700s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86800s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 86900s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87000s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87100s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87200s 1015 0 0 0 0 0 608s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87300s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87400s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87500s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87600s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87700s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87800s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 87900s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88000s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88100s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88200s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88300s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88400s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88500s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88600s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88700s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88800s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 88900s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89000s 1015 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89100s 1014 1 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89200s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89300s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89400s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89500s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89600s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89700s 1014 0 0 0 0 0 609s 449s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89800s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 89900s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90000s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90100s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90200s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90300s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90400s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90500s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90600s 1014 0 0 0 0 0 609s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90700s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90800s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 90900s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91000s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91100s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91200s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91300s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91400s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91500s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91600s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91700s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91800s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 91900s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92000s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92100s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92200s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92300s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92400s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92500s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92600s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92700s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92800s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 92900s 1014 0 0 0 0 0 610s 448s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93000s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93100s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93200s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93300s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93400s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93500s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93600s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93700s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93800s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 93900s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94000s 1014 0 0 0 0 0 610s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94100s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94200s 1014 1 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94300s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94400s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94500s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94600s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94700s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94800s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 94900s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95000s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95100s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95200s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95300s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95400s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95500s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95600s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95700s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95800s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 95900s 1014 1 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96000s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96100s 1014 0 0 0 0 0 611s 447s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96200s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96300s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96400s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96500s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96600s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96700s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96800s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 96900s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97000s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97100s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97200s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97300s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97400s 1014 0 0 0 0 0 611s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97500s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97600s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97700s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97800s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 97900s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98000s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98100s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98200s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98300s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98400s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98500s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98600s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98700s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98800s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 98900s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99000s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99100s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99200s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99300s 1014 0 0 0 0 0 612s 446s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99400s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99500s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99600s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99700s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99800s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 99900s 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1667m 1014 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1668m 1013 1 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1670m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1672m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1673m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1675m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1677m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1678m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1680m 1013 0 0 0 0 0 612s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1682m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1683m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1685m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1687m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1688m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1690m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1692m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1693m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1695m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1697m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1698m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1700m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1702m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1703m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1705m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1707m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1708m 1013 0 0 0 0 0 613s 445s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1710m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1712m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1713m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1715m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1717m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1718m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1720m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1722m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1723m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1725m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1727m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1728m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1730m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1732m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1733m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1735m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1737m 1013 0 0 0 0 0 613s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1738m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1740m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1742m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1743m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1745m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1747m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1748m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1750m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1752m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1753m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1755m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1757m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1758m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1760m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1762m 1013 0 0 0 0 0 614s 444s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1763m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1765m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1767m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1768m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1770m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1772m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1773m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1775m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1777m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1778m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1780m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1782m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1783m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1785m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1787m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1788m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1790m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1792m 1013 0 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1793m 1012 1 0 0 0 0 614s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1795m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1797m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1798m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1800m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1802m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1803m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1805m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1807m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1808m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1810m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1812m 1012 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1813m 1011 1 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1815m 1011 1 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1817m 1011 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1818m 1011 0 0 0 0 0 615s 443s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1820m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1822m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1823m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1825m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1827m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1828m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1830m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1832m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1833m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1835m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1837m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1838m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1840m 1011 0 0 0 0 0 615s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1842m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1843m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1845m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1847m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1848m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1850m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1852m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1853m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1855m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1857m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1858m 1011 1 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1860m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1862m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1863m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1865m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1867m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1868m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1870m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1872m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1873m 1011 0 0 0 0 0 616s 442s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1875m 1011 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1877m 1011 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1878m 1011 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1880m 1011 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1882m 1010 1 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1883m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1885m 1010 1 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1887m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1888m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1890m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1892m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1893m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1895m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1897m 1010 0 0 0 0 0 616s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1898m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1900m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1902m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1903m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1905m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1907m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1908m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1910m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1912m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1913m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1915m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1917m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1918m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1920m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1922m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1923m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1925m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1927m 1010 0 0 0 0 0 617s 441s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1928m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1930m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1932m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1933m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1935m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1937m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1938m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1940m 1010 1 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1942m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1943m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1945m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1947m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1948m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1950m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1952m 1010 0 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1953m 1009 1 0 0 0 0 617s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1955m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1957m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1958m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1960m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1962m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1963m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1965m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1967m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1968m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1970m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1972m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1973m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1975m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1977m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1978m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1980m 1009 0 0 0 0 0 618s 440s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1982m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1983m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1985m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1987m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1988m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1990m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1992m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1993m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1995m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1997m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 1998m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2000m 1009 2 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2002m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2003m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2005m 1009 1 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2007m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2008m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2010m 1009 0 0 0 0 0 618s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2012m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2013m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2015m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2017m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2018m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2020m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2022m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2023m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2025m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2027m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2028m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2030m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2032m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2033m 1009 0 0 0 0 0 619s 439s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2035m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2037m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2038m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2040m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2042m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2043m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2045m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2047m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2048m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2050m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2052m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2053m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2055m 1009 1 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2057m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2058m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2060m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2062m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2063m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2065m 1009 0 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2067m 1008 1 0 0 0 0 619s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2068m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2070m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2072m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2073m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2075m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2077m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2078m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2080m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2082m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2083m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2085m 1008 0 0 0 0 0 620s 438s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2087m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2088m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2090m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2092m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2093m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2095m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2097m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2098m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2100m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2102m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2103m 1008 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2105m 1007 1 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2107m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2108m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2110m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2112m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2113m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2115m 1007 1 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2117m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2118m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2120m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2122m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2123m 1007 0 0 0 0 0 620s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2125m 1007 1 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2127m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2128m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2130m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2132m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2133m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2135m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2137m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2138m 1007 0 0 0 0 0 621s 437s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2140m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2142m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2143m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2145m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2147m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2148m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2150m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2152m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2153m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2155m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2157m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2158m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2160m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2162m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2163m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2165m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2167m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2168m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2170m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2172m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2173m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2175m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2177m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2178m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2180m 1007 0 0 0 0 0 621s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2182m 1007 1 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2183m 1007 0 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2185m 1007 0 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2187m 1007 0 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2188m 1007 0 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2190m 1006 1 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2192m 1006 0 0 0 0 0 622s 436s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2193m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2195m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2197m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2198m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2200m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2202m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2203m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2205m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2207m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2208m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2210m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2212m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2213m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2215m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2217m 1006 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2218m 1007 1 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2220m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2222m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2223m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2225m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2227m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2228m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2230m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2232m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2233m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2235m 1007 0 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2237m 1007 1 0 0 0 0 622s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2238m 1007 0 0 0 0 0 623s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2240m 1007 0 0 0 0 0 623s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2242m 1007 0 0 0 0 0 623s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2243m 1007 0 0 0 0 0 623s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2245m 1007 0 0 0 0 0 623s 435s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2247m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2248m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2250m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2252m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2253m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2255m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2257m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2258m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2260m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2262m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2263m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2265m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2267m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2268m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2270m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2272m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2273m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2275m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2277m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2278m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2280m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2282m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2283m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2285m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2287m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2288m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2290m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2292m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2293m 1007 0 0 0 0 0 623s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2295m 1007 0 0 0 0 0 624s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2297m 1007 0 0 0 0 0 624s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2298m 1007 0 0 0 0 0 624s 434s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2300m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2302m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2303m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2305m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2307m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2308m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2310m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2312m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2313m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2315m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2317m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2318m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2320m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2322m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2323m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2325m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2327m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2328m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2330m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2332m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2333m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2335m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2337m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2338m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2340m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2342m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2343m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2345m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2347m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2348m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2350m 1007 0 0 0 0 0 624s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2352m 1007 0 0 0 0 0 625s 433s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2353m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2355m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2357m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2358m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2360m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2362m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2363m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2365m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2367m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2368m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2370m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2372m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2373m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2375m 1007 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2377m 1006 1 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2378m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2380m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2382m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2383m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2385m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2387m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2388m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2390m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2392m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2393m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2395m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2397m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2398m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2400m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2402m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2403m 1006 0 0 0 0 0 625s 432s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2405m 1006 0 0 0 0 0 625s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2407m 1006 0 0 0 0 0 625s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2408m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2410m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2412m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2413m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2415m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2417m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2418m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2420m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2422m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2423m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2425m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2427m 1006 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2428m 1005 1 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2430m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2432m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2433m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2435m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2437m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2438m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2440m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2442m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2443m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2445m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2447m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2448m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2450m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2452m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2453m 1005 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2455m 1004 1 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2457m 1004 0 0 0 0 0 626s 431s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2458m 1004 0 0 0 0 0 626s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2460m 1004 0 0 0 0 0 626s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2462m 1004 0 0 0 0 0 626s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2463m 1004 0 0 0 0 0 626s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2465m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2467m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2468m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2470m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2472m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2473m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2475m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2477m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2478m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2480m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2482m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2483m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2485m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2487m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2488m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2490m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2492m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2493m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2495m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2497m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2498m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2500m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2502m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2503m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2505m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2507m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2508m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2510m 1004 0 0 0 0 0 627s 430s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2512m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2513m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2515m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2517m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2518m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2520m 1004 0 0 0 0 0 627s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2522m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2523m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2525m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2527m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2528m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2530m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2532m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2533m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2535m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2537m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2538m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2540m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2542m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2543m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2545m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2547m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2548m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2550m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2552m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2553m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2555m 1004 1 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2557m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2558m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2560m 1004 1 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2562m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2563m 1004 0 0 0 0 0 628s 429s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2565m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2567m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2568m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2570m 1004 2 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2572m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2573m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2575m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2577m 1004 0 0 0 0 0 628s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2578m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2580m 1004 1 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2582m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2583m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2585m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2587m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2588m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2590m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2592m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2593m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2595m 1004 1 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2597m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2598m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2600m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2602m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2603m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2605m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2607m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2608m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2610m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2612m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2613m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2615m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2617m 1004 0 0 0 0 0 629s 428s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2618m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2620m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2622m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2623m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2625m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2627m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2628m 1004 1 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2630m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2632m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2633m 1004 0 0 0 0 0 629s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2635m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2637m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2638m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2640m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2642m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2643m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2645m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2647m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2648m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2650m 1004 1 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2652m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2653m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2655m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2657m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2658m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2660m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2662m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2663m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2665m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2667m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2668m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2670m 1004 0 0 0 0 0 630s 427s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2672m 1004 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2673m 1003 1 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2675m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2677m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2678m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2680m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2682m 1003 1 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2683m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2685m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2687m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2688m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2690m 1003 0 0 0 0 0 630s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2692m 1003 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2693m 1003 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2695m 1003 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2697m 1003 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2698m 1003 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2700m 1004 1 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2702m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2703m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2705m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2707m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2708m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2710m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2712m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2713m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2715m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2717m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2718m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2720m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2722m 1004 0 0 0 0 0 631s 426s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2723m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2725m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2727m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2728m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2730m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2732m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2733m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2735m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2737m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2738m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2740m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2742m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2743m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2745m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2747m 1004 0 0 0 0 0 631s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2748m 1004 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2750m 1004 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2752m 1004 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2753m 1004 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2755m 1004 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2757m 1005 2 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2758m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2760m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2762m 1005 1 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2763m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2765m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2767m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2768m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2770m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2772m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2773m 1005 0 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2775m 1006 1 0 0 0 0 632s 425s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2777m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2778m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2780m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2782m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2783m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2785m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2787m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2788m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2790m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2792m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2793m 1006 1 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2795m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2797m 1006 1 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2798m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2800m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2802m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2803m 1006 0 0 0 0 0 632s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2805m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2807m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2808m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2810m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2812m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2813m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2815m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2817m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2818m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2820m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2822m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2823m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2825m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2827m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2828m 1006 0 0 0 0 0 633s 424s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2830m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2832m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2833m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2835m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2837m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2838m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2840m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2842m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2843m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2845m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2847m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2848m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2850m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2852m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2853m 1006 1 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2855m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2857m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2858m 1006 1 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2860m 1006 0 0 0 0 0 633s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2862m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2863m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2865m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2867m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2868m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2870m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2872m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2873m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2875m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2877m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2878m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 12 2880m 1006 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 0s 1019 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 100s 1019 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 200s 1019 0 0 0 0 0 634s 423s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 300s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 400s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 500s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 600s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 700s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 800s 1019 1 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 900s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1000s 1019 1 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1100s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1200s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1300s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1400s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1500s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1600s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1700s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1800s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1900s 1019 0 0 0 0 0 634s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2000s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2100s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2200s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2300s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2400s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2500s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2600s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2700s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2800s 1020 1 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2900s 1020 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3000s 1020 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3100s 1019 1 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3200s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3300s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3400s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3500s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3600s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3700s 1019 0 0 0 0 0 635s 422s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3800s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 3900s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4000s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4100s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4200s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4300s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4400s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4500s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4600s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4700s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4800s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 4900s 1019 0 0 0 0 0 635s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5000s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5100s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5200s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5300s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5400s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5500s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5600s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5700s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5800s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 5900s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6000s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6100s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6200s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6300s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6400s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6500s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6600s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6700s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6800s 1019 1 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 6900s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7000s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7100s 1019 0 0 0 0 0 636s 421s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7200s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7300s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7400s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7500s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7600s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7700s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7800s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 7900s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8000s 1019 0 0 0 0 0 636s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8100s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8200s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8300s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8400s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8500s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8600s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8700s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8800s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 8900s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9000s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9100s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9200s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9300s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9400s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9500s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9600s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9700s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9800s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 9900s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10000s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10100s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10200s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10300s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10400s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10500s 1019 0 0 0 0 0 637s 420s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10600s 1019 0 0 0 0 0 637s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10700s 1019 1 0 0 0 0 637s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10800s 1019 0 0 0 0 0 637s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 10900s 1019 0 0 0 0 0 637s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11000s 1019 0 0 0 0 0 637s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11100s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11200s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11300s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11400s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11500s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11600s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11700s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11800s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 11900s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12000s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12100s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12200s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12300s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12400s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12500s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12600s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12700s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12800s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 12900s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13000s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13100s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13200s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13300s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13400s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13500s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13600s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13700s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13800s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 13900s 1019 0 0 0 0 0 638s 419s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14000s 1019 0 0 0 0 0 638s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14100s 1019 0 0 0 0 0 638s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14200s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14300s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14400s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14500s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14600s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14700s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14800s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 14900s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15000s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15100s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15200s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15300s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15400s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15500s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15600s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15700s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15800s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 15900s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16000s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16100s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16200s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16300s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16400s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16500s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16600s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16700s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16800s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 16900s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17000s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17100s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17200s 1019 0 0 0 0 0 639s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17300s 1019 0 0 0 0 0 640s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17400s 1019 0 0 0 0 0 640s 418s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17500s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17600s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17700s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17800s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 17900s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18000s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18100s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18200s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18300s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18400s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18500s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18600s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18700s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18800s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 18900s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19000s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19100s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19200s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19300s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19400s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19500s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19600s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19700s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19800s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 19900s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20000s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20100s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20200s 1019 0 0 0 0 0 640s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20300s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20400s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20500s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20600s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20700s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20800s 1019 0 0 0 0 0 641s 417s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 20900s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21000s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21100s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21200s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21300s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21400s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21500s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21600s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21700s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21800s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 21900s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22000s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22100s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22200s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22300s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22400s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22500s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22600s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22700s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22800s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 22900s 1019 1 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23000s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23100s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23200s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23300s 1019 0 0 0 0 0 641s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23400s 1019 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23500s 1018 1 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23600s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23700s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23800s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 23900s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24000s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24100s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24200s 1018 0 0 0 0 0 642s 416s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24300s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24400s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24500s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24600s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24700s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24800s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 24900s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25000s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25100s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25200s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25300s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25400s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25500s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25600s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25700s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25800s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 25900s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26000s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26100s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26200s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26300s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26400s 1018 0 0 0 0 0 642s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26500s 1018 1 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26600s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26700s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26800s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 26900s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27000s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27100s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27200s 1018 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27300s 1017 1 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27400s 1017 1 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27500s 1017 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27600s 1016 1 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27700s 1016 0 0 0 0 0 643s 415s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27800s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 27900s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28000s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28100s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28200s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28300s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28400s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28500s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28600s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28700s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28800s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 28900s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29000s 1016 0 0 0 0 0 643s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29100s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29200s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29300s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29400s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29500s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29600s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29700s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29800s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 29900s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30000s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30100s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30200s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30300s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30400s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30500s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30600s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30700s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30800s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 30900s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31000s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31100s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31200s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31300s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31400s 1016 0 0 0 0 0 644s 414s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31500s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31600s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31700s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31800s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 31900s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32000s 1016 0 0 0 0 0 644s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32100s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32200s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32300s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32400s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32500s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32600s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32700s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32800s 1016 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 32900s 1015 1 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33000s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33100s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33200s 1015 1 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33300s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33400s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33500s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33600s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33700s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33800s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 33900s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34000s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34100s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34200s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34300s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34400s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34500s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34600s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34700s 1015 0 0 0 0 0 645s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34800s 1015 0 0 0 0 0 646s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 34900s 1015 0 0 0 0 0 646s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35000s 1015 0 0 0 0 0 646s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35100s 1015 0 0 0 0 0 646s 413s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35200s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35300s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35400s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35500s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35600s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35700s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35800s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 35900s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36000s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36100s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36200s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36300s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36400s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36500s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36600s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36700s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36800s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 36900s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37000s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37100s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37200s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37300s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37400s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37500s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37600s 1015 1 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37700s 1015 0 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37800s 1014 1 0 0 0 0 646s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 37900s 1014 0 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38000s 1014 0 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38100s 1014 0 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38200s 1014 0 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38300s 1013 1 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38400s 1013 0 0 0 0 0 647s 412s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38500s 1013 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38600s 1013 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38700s 1012 1 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38800s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 38900s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39000s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39100s 1012 2 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39200s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39300s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39400s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39500s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39600s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39700s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39800s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 39900s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40000s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40100s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40200s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40300s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40400s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40500s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40600s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40700s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40800s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 40900s 1012 0 0 0 0 0 647s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41000s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41100s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41200s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41300s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41400s 1013 1 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41500s 1013 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41600s 1012 1 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41700s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41800s 1012 0 0 0 0 0 648s 411s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 41900s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42000s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42100s 1012 1 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42200s 1013 1 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42300s 1013 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42400s 1013 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42500s 1012 1 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42600s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42700s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42800s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 42900s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43000s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43100s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43200s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43300s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43400s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43500s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43600s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43700s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43800s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 43900s 1012 0 0 0 0 0 648s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44000s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44100s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44200s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44300s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44400s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44500s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44600s 1012 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44700s 1011 1 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44800s 1011 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 44900s 1011 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45000s 1011 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45100s 1011 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45200s 1011 0 0 0 0 0 649s 410s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45300s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45400s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45500s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45600s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45700s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45800s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 45900s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46000s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46100s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46200s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46300s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46400s 1011 1 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46500s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46600s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46700s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46800s 1011 1 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 46900s 1011 1 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47000s 1011 0 0 0 0 0 649s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47100s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47200s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47300s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47400s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47500s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47600s 1011 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47700s 1010 1 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47800s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 47900s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48000s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48100s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48200s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48300s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48400s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48500s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48600s 1010 0 0 0 0 0 650s 409s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48700s 1010 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48800s 1009 1 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 48900s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49000s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49100s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49200s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49300s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49400s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49500s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49600s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49700s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49800s 1009 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 49900s 1008 1 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50000s 1008 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50100s 1008 0 0 0 0 0 650s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50200s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50300s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50400s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50500s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50600s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50700s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50800s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 50900s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51000s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51100s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51200s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51300s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51400s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51500s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51600s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51700s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51800s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 51900s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52000s 1008 0 0 0 0 0 651s 408s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52100s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52200s 1008 1 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52300s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52400s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52500s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52600s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52700s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52800s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 52900s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53000s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53100s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53200s 1008 0 0 0 0 0 651s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53300s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53400s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53500s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53600s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53700s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53800s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 53900s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54000s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54100s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54200s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54300s 1008 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54400s 1006 2 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54500s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54600s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54700s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54800s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 54900s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55000s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55100s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55200s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55300s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55400s 1006 0 0 0 0 0 652s 407s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55500s 1006 0 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55600s 1007 1 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55700s 1007 0 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55800s 1007 0 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 55900s 1007 1 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56000s 1007 0 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56100s 1007 0 0 0 0 0 652s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56200s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56300s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56400s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56500s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56600s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56700s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56800s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 56900s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57000s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57100s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57200s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57300s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57400s 1007 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57500s 1006 1 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57600s 1006 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57700s 1006 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57800s 1006 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 57900s 1006 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58000s 1006 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58100s 1005 1 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58200s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58300s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58400s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58500s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58600s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58700s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58800s 1005 0 0 0 0 0 653s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 58900s 1005 0 0 0 0 0 654s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59000s 1005 0 0 0 0 0 654s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59100s 1005 0 0 0 0 0 654s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59200s 1005 0 0 0 0 0 654s 406s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59300s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59400s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59500s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59600s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59700s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59800s 1004 1 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 59900s 1004 1 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60000s 1005 1 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60100s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60200s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60300s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60400s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60500s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60600s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60700s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60800s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 60900s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61000s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61100s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61200s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61300s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61400s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61500s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61600s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61700s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61800s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 61900s 1005 0 0 0 0 0 654s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62000s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62100s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62200s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62300s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62400s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62500s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62600s 1005 0 0 0 0 0 655s 405s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62700s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62800s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 62900s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63000s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63100s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63200s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63300s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63400s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63500s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63600s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63700s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63800s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 63900s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64000s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64100s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64200s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64300s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64400s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64500s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64600s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64700s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64800s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 64900s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65000s 1005 0 0 0 0 0 655s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65100s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65200s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65300s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65400s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65500s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65600s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65700s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65800s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 65900s 1005 0 0 0 0 0 656s 404s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66000s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66100s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66200s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66300s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66400s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66500s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66600s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66700s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66800s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 66900s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67000s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67100s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67200s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67300s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67400s 1005 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67500s 1004 1 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67600s 1003 1 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67700s 1003 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67800s 1003 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 67900s 1003 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68000s 1003 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68100s 1003 0 0 0 0 0 656s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68200s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68300s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68400s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68500s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68600s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68700s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68800s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 68900s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69000s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69100s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69200s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69300s 1003 0 0 0 0 0 657s 403s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69400s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69500s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69600s 1003 1 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69700s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69800s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 69900s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70000s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70100s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70200s 1003 1 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70300s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70400s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70500s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70600s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70700s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70800s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 70900s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71000s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71100s 1003 0 0 0 0 0 657s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71200s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71300s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71400s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71500s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71600s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71700s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71800s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 71900s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72000s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72100s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72200s 1003 1 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72300s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72400s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72500s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72600s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72700s 1003 0 0 0 0 0 658s 402s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72800s 1003 1 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 72900s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73000s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73100s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73200s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73300s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73400s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73500s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73600s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73700s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73800s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 73900s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74000s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74100s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74200s 1003 0 0 0 0 0 658s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74300s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74400s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74500s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74600s 1003 1 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74700s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74800s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 74900s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75000s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75100s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75200s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75300s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75400s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75500s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75600s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75700s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75800s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 75900s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76000s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76100s 1003 0 0 0 0 0 659s 401s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76200s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76300s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76400s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76500s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76600s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76700s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76800s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 76900s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77000s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77100s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77200s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77300s 1003 0 0 0 0 0 659s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77400s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77500s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77600s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77700s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77800s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 77900s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78000s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78100s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78200s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78300s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78400s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78500s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78600s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78700s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78800s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 78900s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79000s 1003 1 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79100s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79200s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79300s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79400s 1003 0 0 0 0 0 660s 400s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79500s 1003 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79600s 1003 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79700s 1003 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79800s 1003 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 79900s 1002 1 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80000s 1002 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80100s 1002 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80200s 1002 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80300s 1002 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80400s 1002 0 0 0 0 0 660s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80500s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80600s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80700s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80800s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 80900s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81000s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81100s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81200s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81300s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81400s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81500s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81600s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81700s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81800s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 81900s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82000s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82100s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82200s 1002 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82300s 1001 1 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82400s 1001 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82500s 1001 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82600s 1001 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82700s 1001 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82800s 1001 0 0 0 0 0 661s 399s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 82900s 999 2 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83000s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83100s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83200s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83300s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83400s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83500s 999 0 0 0 0 0 661s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83600s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83700s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83800s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 83900s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84000s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84100s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84200s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84300s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84400s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84500s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84600s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84700s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84800s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 84900s 999 1 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85000s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85100s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85200s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85300s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85400s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85500s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85600s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85700s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85800s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 85900s 999 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86000s 998 1 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86100s 998 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86200s 998 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86300s 998 0 0 0 0 0 662s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86400s 998 0 0 0 0 0 663s 398s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86500s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86600s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86700s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86800s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 86900s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87000s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87100s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87200s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87300s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87400s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87500s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87600s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87700s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87800s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 87900s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88000s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88100s 998 1 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88200s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88300s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88400s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88500s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88600s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88700s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88800s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 88900s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89000s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89100s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89200s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89300s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89400s 998 0 0 0 0 0 663s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89500s 998 0 0 0 0 0 664s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89600s 998 0 0 0 0 0 664s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89700s 998 0 0 0 0 0 664s 397s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89800s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 89900s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90000s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90100s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90200s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90300s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90400s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90500s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90600s 998 1 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90700s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90800s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 90900s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91000s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91100s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91200s 998 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91300s 997 1 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91400s 997 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91500s 996 1 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91600s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91700s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91800s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 91900s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92000s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92100s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92200s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92300s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92400s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92500s 996 0 0 0 0 0 664s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92600s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92700s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92800s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 92900s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93000s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93100s 996 0 0 0 0 0 665s 396s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93200s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93300s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93400s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93500s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93600s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93700s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93800s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 93900s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94000s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94100s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94200s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94300s 996 1 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94400s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94500s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94600s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94700s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94800s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 94900s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95000s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95100s 996 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95200s 995 1 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95300s 995 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95400s 995 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95500s 995 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95600s 995 0 0 0 0 0 665s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95700s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95800s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 95900s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96000s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96100s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96200s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96300s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96400s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96500s 995 0 0 0 0 0 666s 395s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96600s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96700s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96800s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 96900s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97000s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97100s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97200s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97300s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97400s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97500s 995 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97600s 994 1 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97700s 994 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97800s 994 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 97900s 994 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98000s 993 1 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98100s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98200s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98300s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98400s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98500s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98600s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98700s 993 0 0 0 0 0 666s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98800s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 98900s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99000s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99100s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99200s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99300s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99400s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99500s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99600s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99700s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99800s 993 0 0 0 0 0 667s 394s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 99900s 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1667m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1668m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1670m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1672m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1673m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1675m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1677m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1678m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1680m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1682m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1683m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1685m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1687m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1688m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1690m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1692m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1693m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1695m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1697m 993 0 0 0 0 0 667s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1698m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1700m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1702m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1703m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1705m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1707m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1708m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1710m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1712m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1713m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1715m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1717m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1718m 993 0 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1720m 994 1 0 0 0 0 668s 393s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1722m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1723m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1725m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1727m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1728m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1730m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1732m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1733m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1735m 994 1 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1737m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1738m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1740m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1742m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1743m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1745m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1747m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1748m 994 0 0 0 0 0 668s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1750m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1752m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1753m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1755m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1757m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1758m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1760m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1762m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1763m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1765m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1767m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1768m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1770m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1772m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1773m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1775m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1777m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1778m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1780m 994 0 0 0 0 0 669s 392s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1782m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1783m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1785m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1787m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1788m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1790m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1792m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1793m 994 0 0 0 0 0 669s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1795m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1797m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1798m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1800m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1802m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1803m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1805m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1807m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1808m 994 1 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1810m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1812m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1813m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1815m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1817m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1818m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1820m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1822m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1823m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1825m 994 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1827m 993 1 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1828m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1830m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1832m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1833m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1835m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1837m 993 0 0 0 0 0 670s 391s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1838m 993 0 0 0 0 0 670s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1840m 993 0 0 0 0 0 670s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1842m 993 0 0 0 0 0 670s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1843m 993 0 0 0 0 0 670s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1845m 993 0 0 0 0 0 670s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1847m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1848m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1850m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1852m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1853m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1855m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1857m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1858m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1860m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1862m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1863m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1865m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1867m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1868m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1870m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1872m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1873m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1875m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1877m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1878m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1880m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1882m 993 1 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1883m 993 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1885m 992 1 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1887m 992 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1888m 992 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1890m 992 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1892m 992 0 0 0 0 0 671s 390s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1893m 992 0 0 0 0 0 671s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1895m 992 0 0 0 0 0 671s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1897m 992 0 0 0 0 0 671s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1898m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1900m 992 1 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1902m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1903m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1905m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1907m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1908m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1910m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1912m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1913m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1915m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1917m 992 1 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1918m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1920m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1922m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1923m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1925m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1927m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1928m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1930m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1932m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1933m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1935m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1937m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1938m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1940m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1942m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1943m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1945m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1947m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1948m 992 0 0 0 0 0 672s 389s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1950m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1952m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1953m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1955m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1957m 992 1 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1958m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1960m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1962m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1963m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1965m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1967m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1968m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1970m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1972m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1973m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1975m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1977m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1978m 992 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1980m 991 1 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1982m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1983m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1985m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1987m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1988m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1990m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1992m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1993m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1995m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1997m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 1998m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2000m 991 0 0 0 0 0 673s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2002m 991 0 0 0 0 0 674s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2003m 991 0 0 0 0 0 674s 388s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2005m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2007m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2008m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2010m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2012m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2013m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2015m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2017m 991 1 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2018m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2020m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2022m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2023m 991 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2025m 990 2 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2027m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2028m 990 1 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2030m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2032m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2033m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2035m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2037m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2038m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2040m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2042m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2043m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2045m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2047m 990 1 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2048m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2050m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2052m 990 0 0 0 0 0 674s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2053m 990 0 0 0 0 0 675s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2055m 990 0 0 0 0 0 675s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2057m 990 0 0 0 0 0 675s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2058m 990 0 0 0 0 0 675s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2060m 990 0 0 0 0 0 675s 387s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2062m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2063m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2065m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2067m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2068m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2070m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2072m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2073m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2075m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2077m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2078m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2080m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2082m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2083m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2085m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2087m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2088m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2090m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2092m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2093m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2095m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2097m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2098m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2100m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2102m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2103m 990 0 0 0 0 0 675s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2105m 989 1 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2107m 989 1 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2108m 989 0 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2110m 989 0 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2112m 989 0 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2113m 989 0 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2115m 989 0 0 0 0 0 676s 386s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2117m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2118m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2120m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2122m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2123m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2125m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2127m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2128m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2130m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2132m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2133m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2135m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2137m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2138m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2140m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2142m 989 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2143m 988 1 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2145m 987 1 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2147m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2148m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2150m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2152m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2153m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2155m 987 0 0 0 0 0 676s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2157m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2158m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2160m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2162m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2163m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2165m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2167m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2168m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2170m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2172m 987 0 0 0 0 0 677s 385s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2173m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2175m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2177m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2178m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2180m 987 1 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2182m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2183m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2185m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2187m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2188m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2190m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2192m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2193m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2195m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2197m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2198m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2200m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2202m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2203m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2205m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2207m 987 0 0 0 0 0 677s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2208m 987 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2210m 987 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2212m 987 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2213m 986 1 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2215m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2217m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2218m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2220m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2222m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2223m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2225m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2227m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2228m 986 0 0 0 0 0 678s 384s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2230m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2232m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2233m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2235m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2237m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2238m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2240m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2242m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2243m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2245m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2247m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2248m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2250m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2252m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2253m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2255m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2257m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2258m 986 0 0 0 0 0 678s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2260m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2262m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2263m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2265m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2267m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2268m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2270m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2272m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2273m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2275m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2277m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2278m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2280m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2282m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2283m 986 0 0 0 0 0 679s 383s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2285m 986 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2287m 986 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2288m 985 1 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2290m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2292m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2293m 985 1 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2295m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2297m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2298m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2300m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2302m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2303m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2305m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2307m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2308m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2310m 985 0 0 0 0 0 679s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2312m 984 1 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2313m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2315m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2317m 984 1 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2318m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2320m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2322m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2323m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2325m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2327m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2328m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2330m 984 1 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2332m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2333m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2335m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2337m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2338m 984 0 0 0 0 0 680s 382s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2340m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2342m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2343m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2345m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2347m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2348m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2350m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2352m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2353m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2355m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2357m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2358m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2360m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2362m 984 0 0 0 0 0 680s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2363m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2365m 984 1 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2367m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2368m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2370m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2372m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2373m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2375m 984 1 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2377m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2378m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2380m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2382m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2383m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2385m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2387m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2388m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2390m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2392m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2393m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2395m 984 0 0 0 0 0 681s 381s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2397m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2398m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2400m 984 1 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2402m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2403m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2405m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2407m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2408m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2410m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2412m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2413m 984 0 0 0 0 0 681s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2415m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2417m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2418m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2420m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2422m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2423m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2425m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2427m 984 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2428m 983 1 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2430m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2432m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2433m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2435m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2437m 983 1 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2438m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2440m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2442m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2443m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2445m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2447m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2448m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2450m 983 0 0 0 0 0 682s 380s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2452m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2453m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2455m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2457m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2458m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2460m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2462m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2463m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2465m 983 0 0 0 0 0 682s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2467m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2468m 983 1 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2470m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2472m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2473m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2475m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2477m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2478m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2480m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2482m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2483m 983 1 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2485m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2487m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2488m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2490m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2492m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2493m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2495m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2497m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2498m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2500m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2502m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2503m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2505m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2507m 983 0 0 0 0 0 683s 379s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2508m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2510m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2512m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2513m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2515m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2517m 983 0 0 0 0 0 683s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2518m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2520m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2522m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2523m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2525m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2527m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2528m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2530m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2532m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2533m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2535m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2537m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2538m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2540m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2542m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2543m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2545m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2547m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2548m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2550m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2552m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2553m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2555m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2557m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2558m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2560m 983 0 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2562m 984 1 0 0 0 0 684s 378s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2563m 984 0 0 0 0 0 684s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2565m 984 0 0 0 0 0 684s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2567m 984 0 0 0 0 0 684s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2568m 984 0 0 0 0 0 684s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2570m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2572m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2573m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2575m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2577m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2578m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2580m 984 1 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2582m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2583m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2585m 984 1 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2587m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2588m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2590m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2592m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2593m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2595m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2597m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2598m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2600m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2602m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2603m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2605m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2607m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2608m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2610m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2612m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2613m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2615m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2617m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2618m 984 0 0 0 0 0 685s 377s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2620m 984 0 0 0 0 0 685s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2622m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2623m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2625m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2627m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2628m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2630m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2632m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2633m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2635m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2637m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2638m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2640m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2642m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2643m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2645m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2647m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2648m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2650m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2652m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2653m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2655m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2657m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2658m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2660m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2662m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2663m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2665m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2667m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2668m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2670m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2672m 984 0 0 0 0 0 686s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2673m 984 0 0 0 0 0 687s 376s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2675m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2677m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2678m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2680m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2682m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2683m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2685m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2687m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2688m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2690m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2692m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2693m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2695m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2697m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2698m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2700m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2702m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2703m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2705m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2707m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2708m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2710m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2712m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2713m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2715m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2717m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2718m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2720m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2722m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2723m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2725m 984 0 0 0 0 0 687s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2727m 984 0 0 0 0 0 688s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2728m 984 0 0 0 0 0 688s 375s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2730m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2732m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2733m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2735m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2737m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2738m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2740m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2742m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2743m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2745m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2747m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2748m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2750m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2752m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2753m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2755m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2757m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2758m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2760m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2762m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2763m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2765m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2767m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2768m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2770m 984 1 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2772m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2773m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2775m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2777m 984 0 0 0 0 0 688s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2778m 984 0 0 0 0 0 689s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2780m 984 0 0 0 0 0 689s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2782m 984 0 0 0 0 0 689s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2783m 984 0 0 0 0 0 689s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2785m 984 0 0 0 0 0 689s 374s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2787m 984 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2788m 984 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2790m 984 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2792m 985 1 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2793m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2795m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2797m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2798m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2800m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2802m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2803m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2805m 985 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2807m 986 1 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2808m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2810m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2812m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2813m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2815m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2817m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2818m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2820m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2822m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2823m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2825m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2827m 986 0 0 0 0 0 689s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2828m 986 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2830m 985 1 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2832m 985 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2833m 985 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2835m 985 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2837m 985 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2838m 984 1 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2840m 984 0 0 0 0 0 690s 373s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2842m 984 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2843m 985 1 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2845m 985 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2847m 984 1 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2848m 984 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2850m 984 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2852m 984 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2853m 984 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2855m 985 1 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2857m 985 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2858m 985 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2860m 985 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2862m 986 1 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2863m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2865m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2867m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2868m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2870m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2872m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2873m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2875m 986 1 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2877m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2878m 986 0 0 0 0 0 690s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 13 2880m 986 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 0s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 100s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 200s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 300s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 400s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 500s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 600s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 700s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 800s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 900s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1000s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1100s 1033 0 0 0 0 0 691s 372s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1200s 1033 1 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1300s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1400s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1500s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1600s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1700s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1800s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1900s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2000s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2100s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2200s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2300s 1033 1 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2400s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2500s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2600s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2700s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2800s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2900s 1033 0 0 0 0 0 691s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3000s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3100s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3200s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3300s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3400s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3500s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3600s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3700s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3800s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 3900s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4000s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4100s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4200s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4300s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4400s 1033 0 0 0 0 0 692s 371s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4500s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4600s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4700s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4800s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 4900s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5000s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5100s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5200s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5300s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5400s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5500s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5600s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5700s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5800s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 5900s 1033 0 0 0 0 0 692s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6000s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6100s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6200s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6300s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6400s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6500s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6600s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6700s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6800s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 6900s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7000s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7100s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7200s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7300s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7400s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7500s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7600s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7700s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7800s 1033 0 0 0 0 0 693s 370s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 7900s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8000s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8100s 1033 1 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8200s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8300s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8400s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8500s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8600s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8700s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8800s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 8900s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9000s 1033 0 0 0 0 0 693s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9100s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9200s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9300s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9400s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9500s 1033 1 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9600s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9700s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9800s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 9900s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10000s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10100s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10200s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10300s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10400s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10500s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10600s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10700s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10800s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 10900s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11000s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11100s 1033 1 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11200s 1033 0 0 0 0 0 694s 369s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11300s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11400s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11500s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11600s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11700s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11800s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 11900s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12000s 1033 0 0 0 0 0 694s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12100s 1033 1 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12200s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12300s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12400s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12500s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12600s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12700s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12800s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 12900s 1033 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13000s 1032 1 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13100s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13200s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13300s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13400s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13500s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13600s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13700s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13800s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 13900s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14000s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14100s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14200s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14300s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14400s 1032 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14500s 1031 1 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14600s 1031 0 0 0 0 0 695s 368s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14700s 1031 0 0 0 0 0 695s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14800s 1031 0 0 0 0 0 695s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 14900s 1031 0 0 0 0 0 695s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15000s 1031 0 0 0 0 0 695s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15100s 1031 0 0 0 0 0 695s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15200s 1031 1 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15300s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15400s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15500s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15600s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15700s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15800s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 15900s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16000s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16100s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16200s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16300s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16400s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16500s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16600s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16700s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16800s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 16900s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17000s 1031 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17100s 1032 1 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17200s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17300s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17400s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17500s 1032 1 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17600s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17700s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17800s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 17900s 1032 0 0 0 0 0 696s 367s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18000s 1032 0 0 0 0 0 696s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18100s 1032 0 0 0 0 0 696s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18200s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18300s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18400s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18500s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18600s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18700s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18800s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 18900s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19000s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19100s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19200s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19300s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19400s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19500s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19600s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19700s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19800s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 19900s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20000s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20100s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20200s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20300s 1032 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20400s 1031 1 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20500s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20600s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20700s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20800s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 20900s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21000s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21100s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21200s 1031 0 0 0 0 0 697s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21300s 1031 0 0 0 0 0 698s 366s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21400s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21500s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21600s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21700s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21800s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 21900s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22000s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22100s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22200s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22300s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22400s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22500s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22600s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22700s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22800s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 22900s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23000s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23100s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23200s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23300s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23400s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23500s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23600s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23700s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23800s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 23900s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24000s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24100s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24200s 1031 0 0 0 0 0 698s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24300s 1031 0 0 0 0 0 699s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24400s 1031 0 0 0 0 0 699s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24500s 1031 0 0 0 0 0 699s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24600s 1031 0 0 0 0 0 699s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24700s 1031 0 0 0 0 0 699s 365s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24800s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 24900s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25000s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25100s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25200s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25300s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25400s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25500s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25600s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25700s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25800s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 25900s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26000s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26100s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26200s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26300s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26400s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26500s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26600s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26700s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26800s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 26900s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27000s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27100s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27200s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27300s 1031 0 0 0 0 0 699s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27400s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27500s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27600s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27700s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27800s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 27900s 1031 1 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28000s 1031 0 0 0 0 0 700s 364s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28100s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28200s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28300s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28400s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28500s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28600s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28700s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28800s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 28900s 1031 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29000s 1030 1 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29100s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29200s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29300s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29400s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29500s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29600s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29700s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29800s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 29900s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30000s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30100s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30200s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30300s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30400s 1030 0 0 0 0 0 700s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30500s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30600s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30700s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30800s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 30900s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31000s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31100s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31200s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31300s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31400s 1030 0 0 0 0 0 701s 363s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31500s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31600s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31700s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31800s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 31900s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32000s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32100s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32200s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32300s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32400s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32500s 1030 1 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32600s 1030 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32700s 1029 1 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32800s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 32900s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33000s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33100s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33200s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33300s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33400s 1029 0 0 0 0 0 701s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33500s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33600s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33700s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33800s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 33900s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34000s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34100s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34200s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34300s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34400s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34500s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34600s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34700s 1029 0 0 0 0 0 702s 362s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34800s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 34900s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35000s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35100s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35200s 1029 1 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35300s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35400s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35500s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35600s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35700s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35800s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 35900s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36000s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36100s 1029 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36200s 1028 2 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36300s 1028 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36400s 1028 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36500s 1028 0 0 0 0 0 702s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36600s 1028 1 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36700s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36800s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 36900s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37000s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37100s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37200s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37300s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37400s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37500s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37600s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37700s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37800s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 37900s 1028 1 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38000s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38100s 1028 0 0 0 0 0 703s 361s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38200s 1028 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38300s 1028 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38400s 1029 1 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38500s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38600s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38700s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38800s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 38900s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39000s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39100s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39200s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39300s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39400s 1029 1 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39500s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39600s 1029 0 0 0 0 0 703s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39700s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39800s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 39900s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40000s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40100s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40200s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40300s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40400s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40500s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40600s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40700s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40800s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 40900s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41000s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41100s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41200s 1029 1 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41300s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41400s 1029 0 0 0 0 0 704s 360s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41500s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41600s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41700s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41800s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 41900s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42000s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42100s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42200s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42300s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42400s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42500s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42600s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42700s 1029 0 0 0 0 0 704s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42800s 1028 1 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 42900s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43000s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43100s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43200s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43300s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43400s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43500s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43600s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43700s 1028 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43800s 1027 1 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 43900s 1027 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44000s 1027 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44100s 1027 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44200s 1027 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44300s 1027 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44400s 1026 1 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44500s 1026 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44600s 1026 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44700s 1026 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44800s 1026 0 0 0 0 0 705s 359s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 44900s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45000s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45100s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45200s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45300s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45400s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45500s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45600s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45700s 1026 0 0 0 0 0 705s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45800s 1026 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 45900s 1026 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46000s 1026 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46100s 1026 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46200s 1026 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46300s 1025 1 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46400s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46500s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46600s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46700s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46800s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 46900s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47000s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47100s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47200s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47300s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47400s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47500s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47600s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47700s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47800s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 47900s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48000s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48100s 1025 0 0 0 0 0 706s 358s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48200s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48300s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48400s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48500s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48600s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48700s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48800s 1025 0 0 0 0 0 706s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 48900s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49000s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49100s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49200s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49300s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49400s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49500s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49600s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49700s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49800s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 49900s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50000s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50100s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50200s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50300s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50400s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50500s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50600s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50700s 1025 1 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50800s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 50900s 1025 1 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51000s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51100s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51200s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51300s 1025 0 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51400s 1025 1 0 0 0 0 707s 357s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51500s 1025 0 0 0 0 0 707s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51600s 1025 0 0 0 0 0 707s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51700s 1025 0 0 0 0 0 707s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51800s 1025 0 0 0 0 0 707s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 51900s 1025 0 0 0 0 0 707s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52000s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52100s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52200s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52300s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52400s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52500s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52600s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52700s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52800s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 52900s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53000s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53100s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53200s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53300s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53400s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53500s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53600s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53700s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53800s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 53900s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54000s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54100s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54200s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54300s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54400s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54500s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54600s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54700s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54800s 1025 0 0 0 0 0 708s 356s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 54900s 1025 0 0 0 0 0 708s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55000s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55100s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55200s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55300s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55400s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55500s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55600s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55700s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55800s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 55900s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56000s 1025 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56100s 1024 1 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56200s 1024 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56300s 1024 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56400s 1024 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56500s 1024 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56600s 1023 1 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56700s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56800s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 56900s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57000s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57100s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57200s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57300s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57400s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57500s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57600s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57700s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57800s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 57900s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58000s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58100s 1023 0 0 0 0 0 709s 355s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58200s 1023 0 0 0 0 0 709s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58300s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58400s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58500s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58600s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58700s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58800s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 58900s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59000s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59100s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59200s 1023 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59300s 1022 1 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59400s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59500s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59600s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59700s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59800s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 59900s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60000s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60100s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60200s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60300s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60400s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60500s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60600s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60700s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60800s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 60900s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61000s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61100s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61200s 1022 0 0 0 0 0 710s 354s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61300s 1022 0 0 0 0 0 710s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61400s 1022 0 0 0 0 0 710s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61500s 1022 0 0 0 0 0 710s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61600s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61700s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61800s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 61900s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62000s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62100s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62200s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62300s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62400s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62500s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62600s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62700s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62800s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 62900s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63000s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63100s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63200s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63300s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63400s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63500s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63600s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63700s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63800s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 63900s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64000s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64100s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64200s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64300s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64400s 1022 0 0 0 0 0 711s 353s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64500s 1022 0 0 0 0 0 711s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64600s 1022 0 0 0 0 0 711s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64700s 1022 0 0 0 0 0 711s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64800s 1022 0 0 0 0 0 711s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 64900s 1022 0 0 0 0 0 711s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65000s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65100s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65200s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65300s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65400s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65500s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65600s 1022 1 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65700s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65800s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 65900s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66000s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66100s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66200s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66300s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66400s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66500s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66600s 1022 1 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66700s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66800s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 66900s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67000s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67100s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67200s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67300s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67400s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67500s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67600s 1022 0 0 0 0 0 712s 352s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67700s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67800s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 67900s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68000s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68100s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68200s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68300s 1022 0 0 0 0 0 712s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68400s 1022 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68500s 1022 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68600s 1022 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68700s 1022 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68800s 1021 1 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 68900s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69000s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69100s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69200s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69300s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69400s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69500s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69600s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69700s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69800s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 69900s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70000s 1021 1 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70100s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70200s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70300s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70400s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70500s 1021 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70600s 1020 1 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70700s 1020 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70800s 1020 0 0 0 0 0 713s 351s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 70900s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71000s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71100s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71200s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71300s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71400s 1020 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71500s 1019 1 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71600s 1019 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71700s 1019 0 0 0 0 0 713s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71800s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 71900s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72000s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72100s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72200s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72300s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72400s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72500s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72600s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72700s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72800s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 72900s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73000s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73100s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73200s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73300s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73400s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73500s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73600s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73700s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73800s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 73900s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74000s 1019 0 0 0 0 0 714s 350s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74100s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74200s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74300s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74400s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74500s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74600s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74700s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74800s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 74900s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75000s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75100s 1019 0 0 0 0 0 714s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75200s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75300s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75400s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75500s 1020 1 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75600s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75700s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75800s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 75900s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76000s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76100s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76200s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76300s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76400s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76500s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76600s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76700s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76800s 1020 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 76900s 1019 1 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77000s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77100s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77200s 1019 0 0 0 0 0 715s 349s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77300s 1019 1 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77400s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77500s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77600s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77700s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77800s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 77900s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78000s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78100s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78200s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78300s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78400s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78500s 1019 0 0 0 0 0 715s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78600s 1019 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78700s 1018 1 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78800s 1017 1 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 78900s 1017 1 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79000s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79100s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79200s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79300s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79400s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79500s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79600s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79700s 1018 1 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79800s 1018 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 79900s 1018 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80000s 1018 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80100s 1018 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80200s 1018 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80300s 1017 1 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80400s 1017 0 0 0 0 0 716s 348s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80500s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80600s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80700s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80800s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 80900s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81000s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81100s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81200s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81300s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81400s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81500s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81600s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81700s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81800s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 81900s 1017 0 0 0 0 0 716s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82000s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82100s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82200s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82300s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82400s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82500s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82600s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82700s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82800s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 82900s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83000s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83100s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83200s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83300s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83400s 1017 0 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83500s 1017 1 0 0 0 0 717s 347s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83600s 1017 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83700s 1017 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83800s 1016 1 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 83900s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84000s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84100s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84200s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84300s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84400s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84500s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84600s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84700s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84800s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 84900s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85000s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85100s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85200s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85300s 1016 0 0 0 0 0 717s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85400s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85500s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85600s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85700s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85800s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 85900s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86000s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86100s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86200s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86300s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86400s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86500s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86600s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86700s 1016 0 0 0 0 0 718s 346s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86800s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 86900s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87000s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87100s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87200s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87300s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87400s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87500s 1016 1 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87600s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87700s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87800s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 87900s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88000s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88100s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88200s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88300s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88400s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88500s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88600s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88700s 1016 0 0 0 0 0 718s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88800s 1016 1 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 88900s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89000s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89100s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89200s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89300s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89400s 1016 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89500s 1015 1 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89600s 1015 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89700s 1015 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89800s 1015 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 89900s 1015 0 0 0 0 0 719s 345s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90000s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90100s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90200s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90300s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90400s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90500s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90600s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90700s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90800s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 90900s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91000s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91100s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91200s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91300s 1015 1 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91400s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91500s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91600s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91700s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91800s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 91900s 1015 0 0 0 0 0 719s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92000s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92100s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92200s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92300s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92400s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92500s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92600s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92700s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92800s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 92900s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93000s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93100s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93200s 1015 0 0 0 0 0 720s 344s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93300s 1015 1 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93400s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93500s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93600s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93700s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93800s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 93900s 1015 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94000s 1016 1 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94100s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94200s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94300s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94400s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94500s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94600s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94700s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94800s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 94900s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95000s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95100s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95200s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95300s 1016 0 0 0 0 0 720s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95400s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95500s 1016 1 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95600s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95700s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95800s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 95900s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96000s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96100s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96200s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96300s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96400s 1016 0 0 0 0 0 721s 343s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96500s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96600s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96700s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96800s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 96900s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97000s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97100s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97200s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97300s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97400s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97500s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97600s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97700s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97800s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 97900s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98000s 1016 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98100s 1015 1 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98200s 1015 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98300s 1015 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98400s 1015 0 0 0 0 0 721s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98500s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98600s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98700s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98800s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 98900s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99000s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99100s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99200s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99300s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99400s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99500s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99600s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99700s 1015 0 0 0 0 0 722s 342s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99800s 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 99900s 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1667m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1668m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1670m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1672m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1673m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1675m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1677m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1678m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1680m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1682m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1683m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1685m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1687m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1688m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1690m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1692m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1693m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1695m 1015 0 0 0 0 0 722s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1697m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1698m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1700m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1702m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1703m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1705m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1707m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1708m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1710m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1712m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1713m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1715m 1015 0 0 0 0 0 723s 341s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1717m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1718m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1720m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1722m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1723m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1725m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1727m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1728m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1730m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1732m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1733m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1735m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1737m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1738m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1740m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1742m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1743m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1745m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1747m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1748m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1750m 1015 0 0 0 0 0 723s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1752m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1753m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1755m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1757m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1758m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1760m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1762m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1763m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1765m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1767m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1768m 1015 0 0 0 0 0 724s 340s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1770m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1772m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1773m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1775m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1777m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1778m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1780m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1782m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1783m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1785m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1787m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1788m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1790m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1792m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1793m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1795m 1015 1 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1797m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1798m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1800m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1802m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1803m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1805m 1015 0 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1807m 1015 1 0 0 0 0 724s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1808m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1810m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1812m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1813m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1815m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1817m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1818m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1820m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1822m 1015 0 0 0 0 0 725s 339s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1823m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1825m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1827m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1828m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1830m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1832m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1833m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1835m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1837m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1838m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1840m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1842m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1843m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1845m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1847m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1848m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1850m 1015 1 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1852m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1853m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1855m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1857m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1858m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1860m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1862m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1863m 1015 0 0 0 0 0 725s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1865m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1867m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1868m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1870m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1872m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1873m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1875m 1015 0 0 0 0 0 726s 338s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1877m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1878m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1880m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1882m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1883m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1885m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1887m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1888m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1890m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1892m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1893m 1015 1 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1895m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1897m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1898m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1900m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1902m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1903m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1905m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1907m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1908m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1910m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1912m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1913m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1915m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1917m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1918m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1920m 1015 0 0 0 0 0 726s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1922m 1015 0 0 0 0 0 727s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1923m 1014 1 0 0 0 0 727s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1925m 1014 0 0 0 0 0 727s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1927m 1014 0 0 0 0 0 727s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1928m 1014 0 0 0 0 0 727s 337s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1930m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1932m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1933m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1935m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1937m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1938m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1940m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1942m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1943m 1014 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1945m 1013 1 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1947m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1948m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1950m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1952m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1953m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1955m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1957m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1958m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1960m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1962m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1963m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1965m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1967m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1968m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1970m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1972m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1973m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1975m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1977m 1013 0 0 0 0 0 727s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1978m 1013 0 0 0 0 0 728s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1980m 1013 0 0 0 0 0 728s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1982m 1013 0 0 0 0 0 728s 336s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1983m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1985m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1987m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1988m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1990m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1992m 1013 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1993m 1012 1 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1995m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1997m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 1998m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2000m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2002m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2003m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2005m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2007m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2008m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2010m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2012m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2013m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2015m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2017m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2018m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2020m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2022m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2023m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2025m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2027m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2028m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2030m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2032m 1012 0 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2033m 1012 1 0 0 0 0 728s 335s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2035m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2037m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2038m 1012 1 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2040m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2042m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2043m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2045m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2047m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2048m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2050m 1012 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2052m 1010 2 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2053m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2055m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2057m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2058m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2060m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2062m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2063m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2065m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2067m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2068m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2070m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2072m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2073m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2075m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2077m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2078m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2080m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2082m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2083m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2085m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2087m 1010 0 0 0 0 0 729s 334s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2088m 1010 0 0 0 0 0 729s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2090m 1010 0 0 0 0 0 729s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2092m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2093m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2095m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2097m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2098m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2100m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2102m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2103m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2105m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2107m 1010 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2108m 1009 1 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2110m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2112m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2113m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2115m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2117m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2118m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2120m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2122m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2123m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2125m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2127m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2128m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2130m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2132m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2133m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2135m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2137m 1009 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2138m 1008 1 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2140m 1008 0 0 0 0 0 730s 333s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2142m 1008 0 0 0 0 0 730s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2143m 1008 0 0 0 0 0 730s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2145m 1008 0 0 0 0 0 730s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2147m 1008 0 0 0 0 0 730s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2148m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2150m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2152m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2153m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2155m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2157m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2158m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2160m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2162m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2163m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2165m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2167m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2168m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2170m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2172m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2173m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2175m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2177m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2178m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2180m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2182m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2183m 1008 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2185m 1007 1 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2187m 1007 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2188m 1007 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2190m 1007 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2192m 1007 1 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2193m 1007 0 0 0 0 0 731s 332s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2195m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2197m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2198m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2200m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2202m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2203m 1007 0 0 0 0 0 731s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2205m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2207m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2208m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2210m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2212m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2213m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2215m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2217m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2218m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2220m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2222m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2223m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2225m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2227m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2228m 1007 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2230m 1006 1 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2232m 1006 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2233m 1006 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2235m 1006 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2237m 1006 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2238m 1005 2 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2240m 1005 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2242m 1005 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2243m 1005 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2245m 1005 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2247m 1005 0 0 0 0 0 732s 331s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2248m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2250m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2252m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2253m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2255m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2257m 1005 1 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2258m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2260m 1005 0 0 0 0 0 732s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2262m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2263m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2265m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2267m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2268m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2270m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2272m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2273m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2275m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2277m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2278m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2280m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2282m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2283m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2285m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2287m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2288m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2290m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2292m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2293m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2295m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2297m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2298m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2300m 1005 0 0 0 0 0 733s 330s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2302m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2303m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2305m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2307m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2308m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2310m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2312m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2313m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2315m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2317m 1005 0 0 0 0 0 733s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2318m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2320m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2322m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2323m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2325m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2327m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2328m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2330m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2332m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2333m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2335m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2337m 1005 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2338m 1006 1 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2340m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2342m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2343m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2345m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2347m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2348m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2350m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2352m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2353m 1006 0 0 0 0 0 734s 329s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2355m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2357m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2358m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2360m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2362m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2363m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2365m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2367m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2368m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2370m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2372m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2373m 1006 0 0 0 0 0 734s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2375m 1006 1 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2377m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2378m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2380m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2382m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2383m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2385m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2387m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2388m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2390m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2392m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2393m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2395m 1006 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2397m 1005 1 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2398m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2400m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2402m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2403m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2405m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2407m 1005 0 0 0 0 0 735s 328s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2408m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2410m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2412m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2413m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2415m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2417m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2418m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2420m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2422m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2423m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2425m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2427m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2428m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2430m 1005 0 0 0 0 0 735s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2432m 1005 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2433m 1004 1 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2435m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2437m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2438m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2440m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2442m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2443m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2445m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2447m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2448m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2450m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2452m 1004 1 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2453m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2455m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2457m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2458m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2460m 1004 0 0 0 0 0 736s 327s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2462m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2463m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2465m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2467m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2468m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2470m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2472m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2473m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2475m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2477m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2478m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2480m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2482m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2483m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2485m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2487m 1004 0 0 0 0 0 736s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2488m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2490m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2492m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2493m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2495m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2497m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2498m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2500m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2502m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2503m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2505m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2507m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2508m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2510m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2512m 1004 0 0 0 0 0 737s 326s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2513m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2515m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2517m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2518m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2520m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2522m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2523m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2525m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2527m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2528m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2530m 1004 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2532m 1003 1 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2533m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2535m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2537m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2538m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2540m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2542m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2543m 1003 0 0 0 0 0 737s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2545m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2547m 1003 1 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2548m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2550m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2552m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2553m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2555m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2557m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2558m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2560m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2562m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2563m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2565m 1003 0 0 0 0 0 738s 325s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2567m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2568m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2570m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2572m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2573m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2575m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2577m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2578m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2580m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2582m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2583m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2585m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2587m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2588m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2590m 1002 1 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2592m 1002 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2593m 1002 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2595m 1002 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2597m 1002 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2598m 1003 1 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2600m 1003 0 0 0 0 0 738s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2602m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2603m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2605m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2607m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2608m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2610m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2612m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2613m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2615m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2617m 1003 1 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2618m 1003 0 0 0 0 0 739s 324s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2620m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2622m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2623m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2625m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2627m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2628m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2630m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2632m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2633m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2635m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2637m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2638m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2640m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2642m 1003 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2643m 1002 1 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2645m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2647m 1002 1 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2648m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2650m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2652m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2653m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2655m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2657m 1002 0 0 0 0 0 739s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2658m 1002 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2660m 1002 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2662m 1002 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2663m 1002 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2665m 1002 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2667m 1001 1 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2668m 1001 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2670m 1001 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2672m 1001 0 0 0 0 0 740s 323s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2673m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2675m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2677m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2678m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2680m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2682m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2683m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2685m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2687m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2688m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2690m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2692m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2693m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2695m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2697m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2698m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2700m 1001 1 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2702m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2703m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2705m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2707m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2708m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2710m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2712m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2713m 1001 0 0 0 0 0 740s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2715m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2717m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2718m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2720m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2722m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2723m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2725m 1001 0 0 0 0 0 741s 322s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2727m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2728m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2730m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2732m 1001 1 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2733m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2735m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2737m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2738m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2740m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2742m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2743m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2745m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2747m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2748m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2750m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2752m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2753m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2755m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2757m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2758m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2760m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2762m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2763m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2765m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2767m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2768m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2770m 1001 1 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2772m 1001 0 0 0 0 0 741s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2773m 1001 0 0 0 0 0 742s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2775m 1001 0 0 0 0 0 742s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2777m 1001 0 0 0 0 0 742s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2778m 1001 0 0 0 0 0 742s 321s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2780m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2782m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2783m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2785m 1002 1 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2787m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2788m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2790m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2792m 1002 1 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2793m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2795m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2797m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2798m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2800m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2802m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2803m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2805m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2807m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2808m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2810m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2812m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2813m 1002 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2815m 1001 1 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2817m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2818m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2820m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2822m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2823m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2825m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2827m 1001 0 0 0 0 0 742s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2828m 1001 0 0 0 0 0 743s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2830m 1001 0 0 0 0 0 743s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2832m 1001 0 0 0 0 0 743s 320s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2833m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2835m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2837m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2838m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2840m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2842m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2843m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2845m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2847m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2848m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2850m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2852m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2853m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2855m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2857m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2858m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2860m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2862m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2863m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2865m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2867m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2868m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2870m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2872m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2873m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2875m 1001 1 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2877m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2878m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 14 2880m 1001 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 0s 957 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 100s 957 0 0 0 0 0 743s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 200s 957 0 0 0 0 0 744s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 300s 957 0 0 0 0 0 744s 319s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 400s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 500s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 600s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 700s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 800s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 900s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1000s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1100s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1200s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1300s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1400s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1500s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1600s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1700s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1800s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1900s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2000s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2100s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2200s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2300s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2400s 957 1 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2500s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2600s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2700s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2800s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2900s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3000s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3100s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3200s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3300s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3400s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3500s 957 0 0 0 0 0 744s 318s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3600s 957 0 0 0 0 0 744s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3700s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3800s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 3900s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4000s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4100s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4200s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4300s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4400s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4500s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4600s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4700s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4800s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 4900s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5000s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5100s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5200s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5300s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5400s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5500s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5600s 957 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5700s 956 1 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5800s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 5900s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6000s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6100s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6200s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6300s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6400s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6500s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6600s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6700s 956 0 0 0 0 0 745s 317s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6800s 956 0 0 0 0 0 745s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 6900s 956 0 0 0 0 0 745s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7000s 956 0 0 0 0 0 745s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7100s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7200s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7300s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7400s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7500s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7600s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7700s 956 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7800s 954 2 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 7900s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8000s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8100s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8200s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8300s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8400s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8500s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8600s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8700s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8800s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 8900s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9000s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9100s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9200s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9300s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9400s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9500s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9600s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9700s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9800s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 9900s 954 0 0 0 0 0 746s 316s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10000s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10100s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10200s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10300s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10400s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10500s 954 0 0 0 0 0 746s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10600s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10700s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10800s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 10900s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11000s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11100s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11200s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11300s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11400s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11500s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11600s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11700s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11800s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 11900s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12000s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12100s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12200s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12300s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12400s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12500s 954 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12600s 953 1 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12700s 953 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12800s 953 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 12900s 953 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13000s 953 0 0 0 0 0 747s 315s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13100s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13200s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13300s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13400s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13500s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13600s 953 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13700s 952 1 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13800s 952 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 13900s 952 0 0 0 0 0 747s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14000s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14100s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14200s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14300s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14400s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14500s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14600s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14700s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14800s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 14900s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15000s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15100s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15200s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15300s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15400s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15500s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15600s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15700s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15800s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 15900s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16000s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16100s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16200s 952 0 0 0 0 0 748s 314s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16300s 952 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16400s 952 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16500s 953 1 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16600s 953 1 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16700s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16800s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 16900s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17000s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17100s 953 1 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17200s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17300s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17400s 953 0 0 0 0 0 748s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17500s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17600s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17700s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17800s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 17900s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18000s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18100s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18200s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18300s 953 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18400s 952 1 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18500s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18600s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18700s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18800s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 18900s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19000s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19100s 952 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19200s 951 1 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19300s 951 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19400s 951 0 0 0 0 0 749s 313s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19500s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19600s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19700s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19800s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 19900s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20000s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20100s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20200s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20300s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20400s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20500s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20600s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20700s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20800s 951 0 0 0 0 0 749s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 20900s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21000s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21100s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21200s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21300s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21400s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21500s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21600s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21700s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21800s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 21900s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22000s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22100s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22200s 951 1 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22300s 951 1 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22400s 951 1 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22500s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22600s 951 0 0 0 0 0 750s 312s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22700s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22800s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 22900s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23000s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23100s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23200s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23300s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23400s 951 1 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23500s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23600s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23700s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23800s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 23900s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24000s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24100s 951 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24200s 950 1 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24300s 950 0 0 0 0 0 750s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24400s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24500s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24600s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24700s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24800s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 24900s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25000s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25100s 950 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25200s 949 1 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25300s 949 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25400s 949 1 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25500s 949 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25600s 949 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25700s 949 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25800s 949 0 0 0 0 0 751s 311s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 25900s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26000s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26100s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26200s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26300s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26400s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26500s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26600s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26700s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26800s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 26900s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27000s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27100s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27200s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27300s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27400s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27500s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27600s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27700s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27800s 949 0 0 0 0 0 751s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 27900s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28000s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28100s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28200s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28300s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28400s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28500s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28600s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28700s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28800s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 28900s 949 0 0 0 0 0 752s 310s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29000s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29100s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29200s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29300s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29400s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29500s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29600s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29700s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29800s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 29900s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30000s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30100s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30200s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30300s 949 1 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30400s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30500s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30600s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30700s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30800s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 30900s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31000s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31100s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31200s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31300s 949 0 0 0 0 0 752s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31400s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31500s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31600s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31700s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31800s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 31900s 949 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32000s 948 1 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32100s 948 0 0 0 0 0 753s 309s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32200s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32300s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32400s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32500s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32600s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32700s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32800s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 32900s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33000s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33100s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33200s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33300s 948 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33400s 947 1 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33500s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33600s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33700s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33800s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 33900s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34000s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34100s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34200s 947 1 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34300s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34400s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34500s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34600s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34700s 947 0 0 0 0 0 753s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34800s 947 0 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 34900s 948 1 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35000s 948 0 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35100s 948 0 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35200s 948 0 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35300s 948 0 0 0 0 0 754s 308s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35400s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35500s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35600s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35700s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35800s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 35900s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36000s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36100s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36200s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36300s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36400s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36500s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36600s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36700s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36800s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 36900s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37000s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37100s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37200s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37300s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37400s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37500s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37600s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37700s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37800s 948 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 37900s 947 1 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38000s 947 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38100s 947 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38200s 947 0 0 0 0 0 754s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38300s 947 0 0 0 0 0 755s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38400s 947 0 0 0 0 0 755s 307s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38500s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38600s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38700s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38800s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 38900s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39000s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39100s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39200s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39300s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39400s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39500s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39600s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39700s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39800s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 39900s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40000s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40100s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40200s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40300s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40400s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40500s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40600s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40700s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40800s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 40900s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41000s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41100s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41200s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41300s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41400s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41500s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41600s 947 0 0 0 0 0 755s 306s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41700s 947 0 0 0 0 0 755s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41800s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 41900s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42000s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42100s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42200s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42300s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42400s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42500s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42600s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42700s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42800s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 42900s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43000s 947 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43100s 946 1 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43200s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43300s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43400s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43500s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43600s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43700s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43800s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 43900s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44000s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44100s 946 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44200s 945 1 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44300s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44400s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44500s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44600s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44700s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44800s 945 0 0 0 0 0 756s 305s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 44900s 945 0 0 0 0 0 756s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45000s 945 0 0 0 0 0 756s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45100s 945 1 0 0 0 0 756s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45200s 945 0 0 0 0 0 756s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45300s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45400s 945 1 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45500s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45600s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45700s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45800s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 45900s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46000s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46100s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46200s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46300s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46400s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46500s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46600s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46700s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46800s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 46900s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47000s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47100s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47200s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47300s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47400s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47500s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47600s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47700s 945 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47800s 946 1 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 47900s 946 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48000s 946 0 0 0 0 0 757s 304s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48100s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48200s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48300s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48400s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48500s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48600s 946 1 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48700s 946 0 0 0 0 0 757s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48800s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 48900s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49000s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49100s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49200s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49300s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49400s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49500s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49600s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49700s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49800s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 49900s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50000s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50100s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50200s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50300s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50400s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50500s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50600s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50700s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50800s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 50900s 946 1 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51000s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51100s 946 0 0 0 0 0 758s 303s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51200s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51300s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51400s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51500s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51600s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51700s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51800s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 51900s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52000s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52100s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52200s 946 0 0 0 0 0 758s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52300s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52400s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52500s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52600s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52700s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52800s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 52900s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53000s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53100s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53200s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53300s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53400s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53500s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53600s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53700s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53800s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 53900s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54000s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54100s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54200s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54300s 946 0 0 0 0 0 759s 302s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54400s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54500s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54600s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54700s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54800s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 54900s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55000s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55100s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55200s 946 1 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55300s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55400s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55500s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55600s 946 0 0 0 0 0 759s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55700s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55800s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 55900s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56000s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56100s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56200s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56300s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56400s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56500s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56600s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56700s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56800s 946 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 56900s 945 2 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57000s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57100s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57200s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57300s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57400s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57500s 945 0 0 0 0 0 760s 301s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57600s 945 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57700s 945 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57800s 944 1 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 57900s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58000s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58100s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58200s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58300s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58400s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58500s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58600s 944 1 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58700s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58800s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 58900s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59000s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59100s 944 0 0 0 0 0 760s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59200s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59300s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59400s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59500s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59600s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59700s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59800s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 59900s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60000s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60100s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60200s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60300s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60400s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60500s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60600s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60700s 944 0 0 0 0 0 761s 300s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60800s 944 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 60900s 944 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61000s 944 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61100s 944 1 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61200s 944 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61300s 944 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61400s 945 1 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61500s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61600s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61700s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61800s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 61900s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62000s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62100s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62200s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62300s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62400s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62500s 945 1 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62600s 945 0 0 0 0 0 761s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62700s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62800s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 62900s 945 1 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63000s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63100s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63200s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63300s 945 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63400s 944 1 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63500s 944 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63600s 944 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63700s 944 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63800s 944 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 63900s 944 0 0 0 0 0 762s 299s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64000s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64100s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64200s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64300s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64400s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64500s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64600s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64700s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64800s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 64900s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65000s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65100s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65200s 944 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65300s 943 1 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65400s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65500s 943 1 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65600s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65700s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65800s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 65900s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66000s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66100s 943 0 0 0 0 0 762s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66200s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66300s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66400s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66500s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66600s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66700s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66800s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 66900s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67000s 943 0 0 0 0 0 763s 298s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67100s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67200s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67300s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67400s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67500s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67600s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67700s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67800s 943 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 67900s 944 2 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68000s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68100s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68200s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68300s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68400s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68500s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68600s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68700s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68800s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 68900s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69000s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69100s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69200s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69300s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69400s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69500s 944 0 0 0 0 0 763s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69600s 944 0 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69700s 942 2 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69800s 942 0 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 69900s 942 0 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70000s 942 0 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70100s 942 1 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70200s 942 0 0 0 0 0 764s 297s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70300s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70400s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70500s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70600s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70700s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70800s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 70900s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71000s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71100s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71200s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71300s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71400s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71500s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71600s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71700s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71800s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 71900s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72000s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72100s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72200s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72300s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72400s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72500s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72600s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72700s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72800s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 72900s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73000s 942 0 0 0 0 0 764s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73100s 942 0 0 0 0 0 765s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73200s 942 0 0 0 0 0 765s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73300s 942 0 0 0 0 0 765s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73400s 942 0 0 0 0 0 765s 296s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73500s 942 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73600s 942 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73700s 942 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73800s 941 1 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 73900s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74000s 941 1 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74100s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74200s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74300s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74400s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74500s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74600s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74700s 941 1 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74800s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 74900s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75000s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75100s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75200s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75300s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75400s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75500s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75600s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75700s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75800s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 75900s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76000s 941 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76100s 940 1 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76200s 940 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76300s 940 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76400s 940 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76500s 940 0 0 0 0 0 765s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76600s 940 0 0 0 0 0 766s 295s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76700s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76800s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 76900s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77000s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77100s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77200s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77300s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77400s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77500s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77600s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77700s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77800s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 77900s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78000s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78100s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78200s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78300s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78400s 940 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78500s 941 1 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78600s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78700s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78800s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 78900s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79000s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79100s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79200s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79300s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79400s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79500s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79600s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79700s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79800s 941 0 0 0 0 0 766s 294s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 79900s 941 0 0 0 0 0 766s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80000s 941 0 0 0 0 0 766s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80100s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80200s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80300s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80400s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80500s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80600s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80700s 941 1 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80800s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 80900s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81000s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81100s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81200s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81300s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81400s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81500s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81600s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81700s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81800s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 81900s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82000s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82100s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82200s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82300s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82400s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82500s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82600s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82700s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82800s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 82900s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83000s 941 0 0 0 0 0 767s 293s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83100s 941 0 0 0 0 0 767s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83200s 941 0 0 0 0 0 767s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83300s 941 0 0 0 0 0 767s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83400s 941 0 0 0 0 0 767s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83500s 941 0 0 0 0 0 767s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83600s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83700s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83800s 941 1 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 83900s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84000s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84100s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84200s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84300s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84400s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84500s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84600s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84700s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84800s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 84900s 941 1 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85000s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85100s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85200s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85300s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85400s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85500s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85600s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85700s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85800s 941 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 85900s 942 1 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86000s 942 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86100s 942 0 0 0 0 0 768s 292s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86200s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86300s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86400s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86500s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86600s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86700s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86800s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 86900s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87000s 942 0 0 0 0 0 768s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87100s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87200s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87300s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87400s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87500s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87600s 942 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87700s 943 1 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87800s 943 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 87900s 943 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88000s 943 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88100s 944 1 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88200s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88300s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88400s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88500s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88600s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88700s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88800s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 88900s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89000s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89100s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89200s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89300s 944 0 0 0 0 0 769s 291s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89400s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89500s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89600s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89700s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89800s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 89900s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90000s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90100s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90200s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90300s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90400s 944 0 0 0 0 0 769s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90500s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90600s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90700s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90800s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 90900s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91000s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91100s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91200s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91300s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91400s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91500s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91600s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91700s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91800s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 91900s 944 1 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92000s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92100s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92200s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92300s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92400s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92500s 944 0 0 0 0 0 770s 290s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92600s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92700s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92800s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 92900s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93000s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93100s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93200s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93300s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93400s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93500s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93600s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93700s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93800s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 93900s 944 0 0 0 0 0 770s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94000s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94100s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94200s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94300s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94400s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94500s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94600s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94700s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94800s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 94900s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95000s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95100s 944 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95200s 943 1 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95300s 943 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95400s 943 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95500s 943 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95600s 943 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95700s 943 0 0 0 0 0 771s 289s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95800s 943 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 95900s 943 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96000s 943 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96100s 943 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96200s 943 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96300s 942 1 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96400s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96500s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96600s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96700s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96800s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 96900s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97000s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97100s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97200s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97300s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97400s 942 0 0 0 0 0 771s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97500s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97600s 942 1 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97700s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97800s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 97900s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98000s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98100s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98200s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98300s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98400s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98500s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98600s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98700s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98800s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 98900s 942 0 0 0 0 0 772s 288s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99000s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99100s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99200s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99300s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99400s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99500s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99600s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99700s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99800s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 99900s 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1667m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1668m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1670m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1672m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1673m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1675m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1677m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1678m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1680m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1682m 942 0 0 0 0 0 772s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1683m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1685m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1687m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1688m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1690m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1692m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1693m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1695m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1697m 942 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1698m 941 1 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1700m 941 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1702m 941 0 0 0 0 0 773s 287s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1703m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1705m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1707m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1708m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1710m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1712m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1713m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1715m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1717m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1718m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1720m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1722m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1723m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1725m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1727m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1728m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1730m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1732m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1733m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1735m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1737m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1738m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1740m 941 0 0 0 0 0 773s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1742m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1743m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1745m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1747m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1748m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1750m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1752m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1753m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1755m 941 0 0 0 0 0 774s 286s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1757m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1758m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1760m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1762m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1763m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1765m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1767m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1768m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1770m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1772m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1773m 941 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1775m 940 1 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1777m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1778m 940 2 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1780m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1782m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1783m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1785m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1787m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1788m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1790m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1792m 940 1 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1793m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1795m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1797m 940 0 0 0 0 0 774s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1798m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1800m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1802m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1803m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1805m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1807m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1808m 940 0 0 0 0 0 775s 285s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1810m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1812m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1813m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1815m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1817m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1818m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1820m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1822m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1823m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1825m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1827m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1828m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1830m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1832m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1833m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1835m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1837m 940 1 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1838m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1840m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1842m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1843m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1845m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1847m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1848m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1850m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1852m 940 0 0 0 0 0 775s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1853m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1855m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1857m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1858m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1860m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1862m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1863m 940 0 0 0 0 0 776s 284s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1865m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1867m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1868m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1870m 940 1 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1872m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1873m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1875m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1877m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1878m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1880m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1882m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1883m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1885m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1887m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1888m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1890m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1892m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1893m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1895m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1897m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1898m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1900m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1902m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1903m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1905m 940 0 0 0 0 0 776s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1907m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1908m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1910m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1912m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1913m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1915m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1917m 940 0 0 0 0 0 777s 283s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1918m 940 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1920m 939 1 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1922m 939 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1923m 938 1 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1925m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1927m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1928m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1930m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1932m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1933m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1935m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1937m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1938m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1940m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1942m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1943m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1945m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1947m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1948m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1950m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1952m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1953m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1955m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1957m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1958m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1960m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1962m 938 0 0 0 0 0 777s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1963m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1965m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1967m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1968m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1970m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1972m 938 0 0 0 0 0 778s 282s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1973m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1975m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1977m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1978m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1980m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1982m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1983m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1985m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1987m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1988m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1990m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1992m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1993m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1995m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1997m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 1998m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2000m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2002m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2003m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2005m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2007m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2008m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2010m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2012m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2013m 938 0 0 0 0 0 778s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2015m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2017m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2018m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2020m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2022m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2023m 938 1 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2025m 938 0 0 0 0 0 779s 281s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2027m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2028m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2030m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2032m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2033m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2035m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2037m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2038m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2040m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2042m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2043m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2045m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2047m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2048m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2050m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2052m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2053m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2055m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2057m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2058m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2060m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2062m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2063m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2065m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2067m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2068m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2070m 938 0 0 0 0 0 779s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2072m 938 0 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2073m 938 0 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2075m 938 1 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2077m 938 0 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2078m 938 0 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2080m 938 0 0 0 0 0 780s 280s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2082m 938 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2083m 938 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2085m 937 1 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2087m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2088m 936 1 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2090m 936 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2092m 936 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2093m 937 1 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2095m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2097m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2098m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2100m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2102m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2103m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2105m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2107m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2108m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2110m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2112m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2113m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2115m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2117m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2118m 937 0 0 0 0 0 780s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2120m 936 1 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2122m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2123m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2125m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2127m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2128m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2130m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2132m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2133m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2135m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2137m 936 0 0 0 0 0 781s 279s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2138m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2140m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2142m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2143m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2145m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2147m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2148m 936 1 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2150m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2152m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2153m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2155m 936 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2157m 935 1 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2158m 935 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2160m 935 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2162m 935 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2163m 935 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2165m 935 0 0 0 0 0 781s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2167m 935 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2168m 935 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2170m 935 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2172m 935 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2173m 934 1 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2175m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2177m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2178m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2180m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2182m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2183m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2185m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2187m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2188m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2190m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2192m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2193m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2195m 934 0 0 0 0 0 782s 278s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2197m 934 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2198m 933 1 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2200m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2202m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2203m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2205m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2207m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2208m 933 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2210m 932 1 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2212m 932 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2213m 932 0 0 0 0 0 782s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2215m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2217m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2218m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2220m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2222m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2223m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2225m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2227m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2228m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2230m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2232m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2233m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2235m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2237m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2238m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2240m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2242m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2243m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2245m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2247m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2248m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2250m 932 0 0 0 0 0 783s 277s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2252m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2253m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2255m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2257m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2258m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2260m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2262m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2263m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2265m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2267m 932 1 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2268m 932 0 0 0 0 0 783s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2270m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2272m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2273m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2275m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2277m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2278m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2280m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2282m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2283m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2285m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2287m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2288m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2290m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2292m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2293m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2295m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2297m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2298m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2300m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2302m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2303m 932 0 0 0 0 0 784s 276s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2305m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2307m 932 1 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2308m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2310m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2312m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2313m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2315m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2317m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2318m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2320m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2322m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2323m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2325m 932 0 0 0 0 0 784s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2327m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2328m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2330m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2332m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2333m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2335m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2337m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2338m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2340m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2342m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2343m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2345m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2347m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2348m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2350m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2352m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2353m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2355m 932 0 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2357m 931 1 0 0 0 0 785s 275s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2358m 931 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2360m 931 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2362m 931 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2363m 931 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2365m 930 1 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2367m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2368m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2370m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2372m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2373m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2375m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2377m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2378m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2380m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2382m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2383m 930 0 0 0 0 0 785s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2385m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2387m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2388m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2390m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2392m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2393m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2395m 930 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2397m 929 1 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2398m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2400m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2402m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2403m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2405m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2407m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2408m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2410m 929 0 0 0 0 0 786s 274s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2412m 929 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2413m 929 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2415m 929 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2417m 929 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2418m 929 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2420m 928 1 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2422m 928 1 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2423m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2425m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2427m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2428m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2430m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2432m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2433m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2435m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2437m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2438m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2440m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2442m 928 0 0 0 0 0 786s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2443m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2445m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2447m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2448m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2450m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2452m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2453m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2455m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2457m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2458m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2460m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2462m 928 0 0 0 0 0 787s 273s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2463m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2465m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2467m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2468m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2470m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2472m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2473m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2475m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2477m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2478m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2480m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2482m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2483m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2485m 928 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2487m 927 1 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2488m 926 1 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2490m 926 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2492m 926 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2493m 927 1 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2495m 927 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2497m 927 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2498m 927 0 0 0 0 0 787s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2500m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2502m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2503m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2505m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2507m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2508m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2510m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2512m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2513m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2515m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2517m 927 0 0 0 0 0 788s 272s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2518m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2520m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2522m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2523m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2525m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2527m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2528m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2530m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2532m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2533m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2535m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2537m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2538m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2540m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2542m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2543m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2545m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2547m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2548m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2550m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2552m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2553m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2555m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2557m 927 0 0 0 0 0 788s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2558m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2560m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2562m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2563m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2565m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2567m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2568m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2570m 927 0 0 0 0 0 789s 271s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2572m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2573m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2575m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2577m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2578m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2580m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2582m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2583m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2585m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2587m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2588m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2590m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2592m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2593m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2595m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2597m 927 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2598m 926 1 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2600m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2602m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2603m 926 1 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2605m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2607m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2608m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2610m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2612m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2613m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2615m 926 0 0 0 0 0 789s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2617m 926 0 0 0 0 0 790s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2618m 926 0 0 0 0 0 790s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2620m 926 0 0 0 0 0 790s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2622m 926 0 0 0 0 0 790s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2623m 926 0 0 0 0 0 790s 270s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2625m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2627m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2628m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2630m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2632m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2633m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2635m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2637m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2638m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2640m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2642m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2643m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2645m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2647m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2648m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2650m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2652m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2653m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2655m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2657m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2658m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2660m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2662m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2663m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2665m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2667m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2668m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2670m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2672m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2673m 926 0 0 0 0 0 790s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2675m 926 0 0 0 0 0 791s 269s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2677m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2678m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2680m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2682m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2683m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2685m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2687m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2688m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2690m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2692m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2693m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2695m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2697m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2698m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2700m 926 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2702m 925 1 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2703m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2705m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2707m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2708m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2710m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2712m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2713m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2715m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2717m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2718m 925 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2720m 924 1 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2722m 924 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2723m 924 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2725m 924 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2727m 924 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2728m 924 0 0 0 0 0 791s 268s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2730m 924 0 0 0 0 0 791s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2732m 924 0 0 0 0 0 791s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2733m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2735m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2737m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2738m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2740m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2742m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2743m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2745m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2747m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2748m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2750m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2752m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2753m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2755m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2757m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2758m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2760m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2762m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2763m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2765m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2767m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2768m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2770m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2772m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2773m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2775m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2777m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2778m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2780m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2782m 924 0 0 0 0 0 792s 267s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2783m 924 0 0 0 0 0 792s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2785m 924 0 0 0 0 0 792s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2787m 924 0 0 0 0 0 792s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2788m 924 0 0 0 0 0 792s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2790m 924 0 0 0 0 0 792s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2792m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2793m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2795m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2797m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2798m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2800m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2802m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2803m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2805m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2807m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2808m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2810m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2812m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2813m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2815m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2817m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2818m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2820m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2822m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2823m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2825m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2827m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2828m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2830m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2832m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2833m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2835m 924 0 0 0 0 0 793s 266s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2837m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2838m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2840m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2842m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2843m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2845m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2847m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2848m 924 0 0 0 0 0 793s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2850m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2852m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2853m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2855m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2857m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2858m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2860m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2862m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2863m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2865m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2867m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2868m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2870m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2872m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2873m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2875m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2877m 924 1 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2878m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 15 2880m 924 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 0s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 100s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 200s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 300s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 400s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 500s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 600s 1033 0 0 0 0 0 794s 265s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 700s 1033 0 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 800s 1033 0 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 900s 1033 0 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1000s 1033 0 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1100s 1033 0 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1200s 1032 1 0 0 0 0 794s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1300s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1400s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1500s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1600s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1700s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1800s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1900s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2000s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2100s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2200s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2300s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2400s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2500s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2600s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2700s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2800s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2900s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3000s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3100s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3200s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3300s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3400s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3500s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3600s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3700s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3800s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 3900s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4000s 1032 0 0 0 0 0 795s 264s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4100s 1032 0 0 0 0 0 795s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4200s 1032 0 0 0 0 0 795s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4300s 1031 1 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4400s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4500s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4600s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4700s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4800s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 4900s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5000s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5100s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5200s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5300s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5400s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5500s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5600s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5700s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5800s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 5900s 1031 1 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6000s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6100s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6200s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6300s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6400s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6500s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6600s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6700s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6800s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 6900s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7000s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7100s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7200s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7300s 1031 0 0 0 0 0 796s 263s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7400s 1031 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7500s 1031 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7600s 1031 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7700s 1031 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7800s 1030 1 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 7900s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8000s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8100s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8200s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8300s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8400s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8500s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8600s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8700s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8800s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 8900s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9000s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9100s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9200s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9300s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9400s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9500s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9600s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9700s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9800s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 9900s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10000s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10100s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10200s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10300s 1030 0 0 0 0 0 797s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10400s 1030 0 0 0 0 0 798s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10500s 1030 1 0 0 0 0 798s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10600s 1030 0 0 0 0 0 798s 262s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10700s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10800s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 10900s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11000s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11100s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11200s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11300s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11400s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11500s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11600s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11700s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11800s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 11900s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12000s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12100s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12200s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12300s 1030 1 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12400s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12500s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12600s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12700s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12800s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 12900s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13000s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13100s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13200s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13300s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13400s 1030 0 0 0 0 0 798s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13500s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13600s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13700s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13800s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 13900s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14000s 1030 0 0 0 0 0 799s 261s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14100s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14200s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14300s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14400s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14500s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14600s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14700s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14800s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 14900s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15000s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15100s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15200s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15300s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15400s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15500s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15600s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15700s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15800s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 15900s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16000s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16100s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16200s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16300s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16400s 1030 0 0 0 0 0 799s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16500s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16600s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16700s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16800s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 16900s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17000s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17100s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17200s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17300s 1030 0 0 0 0 0 800s 260s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17400s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17500s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17600s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17700s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17800s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 17900s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18000s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18100s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18200s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18300s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18400s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18500s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18600s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18700s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18800s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 18900s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19000s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19100s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19200s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19300s 1030 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19400s 1029 1 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19500s 1029 0 0 0 0 0 800s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19600s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19700s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19800s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 19900s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20000s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20100s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20200s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20300s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20400s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20500s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20600s 1029 0 0 0 0 0 801s 259s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20700s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20800s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 20900s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21000s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21100s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21200s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21300s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21400s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21500s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21600s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21700s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21800s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 21900s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22000s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22100s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22200s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22300s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22400s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22500s 1029 0 0 0 0 0 801s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22600s 1030 1 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22700s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22800s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 22900s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23000s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23100s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23200s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23300s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23400s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23500s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23600s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23700s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23800s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 23900s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24000s 1030 0 0 0 0 0 802s 258s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24100s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24200s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24300s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24400s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24500s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24600s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24700s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24800s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 24900s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25000s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25100s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25200s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25300s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25400s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25500s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25600s 1030 0 0 0 0 0 802s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25700s 1030 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25800s 1030 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 25900s 1030 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26000s 1029 1 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26100s 1029 1 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26200s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26300s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26400s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26500s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26600s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26700s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26800s 1029 1 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 26900s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27000s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27100s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27200s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27300s 1029 0 0 0 0 0 803s 257s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27400s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27500s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27600s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27700s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27800s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 27900s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28000s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28100s 1029 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28200s 1028 1 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28300s 1028 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28400s 1028 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28500s 1028 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28600s 1028 0 0 0 0 0 803s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28700s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28800s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 28900s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29000s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29100s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29200s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29300s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29400s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29500s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29600s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29700s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29800s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 29900s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30000s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30100s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30200s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30300s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30400s 1028 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30500s 1027 1 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30600s 1027 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30700s 1027 0 0 0 0 0 804s 256s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30800s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 30900s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31000s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31100s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31200s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31300s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31400s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31500s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31600s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31700s 1027 0 0 0 0 0 804s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31800s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 31900s 1027 1 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32000s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32100s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32200s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32300s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32400s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32500s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32600s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32700s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32800s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 32900s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33000s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33100s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33200s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33300s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33400s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33500s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33600s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33700s 1027 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33800s 1026 1 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 33900s 1026 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34000s 1026 0 0 0 0 0 805s 255s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34100s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34200s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34300s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34400s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34500s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34600s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34700s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34800s 1026 0 0 0 0 0 805s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 34900s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35000s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35100s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35200s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35300s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35400s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35500s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35600s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35700s 1026 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35800s 1025 1 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 35900s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36000s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36100s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36200s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36300s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36400s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36500s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36600s 1025 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36700s 1024 1 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36800s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 36900s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37000s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37100s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37200s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37300s 1024 0 0 0 0 0 806s 254s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37400s 1024 0 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37500s 1024 0 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37600s 1024 0 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37700s 1024 0 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37800s 1024 1 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 37900s 1024 0 0 0 0 0 806s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38000s 1024 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38100s 1024 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38200s 1024 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38300s 1023 1 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38400s 1023 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38500s 1023 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38600s 1023 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38700s 1023 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38800s 1023 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 38900s 1022 1 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39000s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39100s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39200s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39300s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39400s 1022 1 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39500s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39600s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39700s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39800s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 39900s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40000s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40100s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40200s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40300s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40400s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40500s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40600s 1022 0 0 0 0 0 807s 253s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40700s 1022 0 0 0 0 0 807s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40800s 1022 0 0 0 0 0 807s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 40900s 1022 0 0 0 0 0 807s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41000s 1021 1 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41100s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41200s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41300s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41400s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41500s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41600s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41700s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41800s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 41900s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42000s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42100s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42200s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42300s 1021 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42400s 1020 1 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42500s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42600s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42700s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42800s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 42900s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43000s 1020 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43100s 1019 1 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43200s 1019 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43300s 1019 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43400s 1019 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43500s 1019 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43600s 1019 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43700s 1018 1 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43800s 1018 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 43900s 1018 0 0 0 0 0 808s 252s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44000s 1018 0 0 0 0 0 808s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44100s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44200s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44300s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44400s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44500s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44600s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44700s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44800s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 44900s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45000s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45100s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45200s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45300s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45400s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45500s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45600s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45700s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45800s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 45900s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46000s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46100s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46200s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46300s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46400s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46500s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46600s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46700s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46800s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 46900s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47000s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47100s 1018 0 0 0 0 0 809s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47200s 1018 0 0 0 0 0 810s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47300s 1018 0 0 0 0 0 810s 251s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47400s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47500s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47600s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47700s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47800s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 47900s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48000s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48100s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48200s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48300s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48400s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48500s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48600s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48700s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48800s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 48900s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49000s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49100s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49200s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49300s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49400s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49500s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49600s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49700s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49800s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 49900s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50000s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50100s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50200s 1018 0 0 0 0 0 810s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50300s 1018 0 0 0 0 0 811s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50400s 1018 0 0 0 0 0 811s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50500s 1018 0 0 0 0 0 811s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50600s 1018 0 0 0 0 0 811s 250s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50700s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50800s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 50900s 1018 1 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51000s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51100s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51200s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51300s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51400s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51500s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51600s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51700s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51800s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 51900s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52000s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52100s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52200s 1018 1 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52300s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52400s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52500s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52600s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52700s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52800s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 52900s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53000s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53100s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53200s 1018 0 0 0 0 0 811s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53300s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53400s 1018 1 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53500s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53600s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53700s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53800s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 53900s 1018 0 0 0 0 0 812s 249s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54000s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54100s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54200s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54300s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54400s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54500s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54600s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54700s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54800s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 54900s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55000s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55100s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55200s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55300s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55400s 1018 1 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55500s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55600s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55700s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55800s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 55900s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56000s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56100s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56200s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56300s 1018 0 0 0 0 0 812s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56400s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56500s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56600s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56700s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56800s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 56900s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57000s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57100s 1018 1 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57200s 1018 0 0 0 0 0 813s 248s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57300s 1018 1 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57400s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57500s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57600s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57700s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57800s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 57900s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58000s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58100s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58200s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58300s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58400s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58500s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58600s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58700s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58800s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 58900s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59000s 1018 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59100s 1017 1 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59200s 1017 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59300s 1017 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59400s 1017 0 0 0 0 0 813s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59500s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59600s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59700s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59800s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 59900s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60000s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60100s 1017 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60200s 1016 1 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60300s 1016 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60400s 1016 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60500s 1016 0 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60600s 1016 1 0 0 0 0 814s 247s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60700s 1016 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60800s 1015 1 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 60900s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61000s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61100s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61200s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61300s 1015 1 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61400s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61500s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61600s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61700s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61800s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 61900s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62000s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62100s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62200s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62300s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62400s 1015 0 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62500s 1015 1 0 0 0 0 814s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62600s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62700s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62800s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 62900s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63000s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63100s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63200s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63300s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63400s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63500s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63600s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63700s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63800s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 63900s 1015 0 0 0 0 0 815s 246s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64000s 1015 1 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64100s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64200s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64300s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64400s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64500s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64600s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64700s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64800s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 64900s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65000s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65100s 1015 1 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65200s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65300s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65400s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65500s 1015 0 0 0 0 0 815s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65600s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65700s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65800s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 65900s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66000s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66100s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66200s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66300s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66400s 1015 1 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66500s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66600s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66700s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66800s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 66900s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67000s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67100s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67200s 1015 0 0 0 0 0 816s 245s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67300s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67400s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67500s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67600s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67700s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67800s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 67900s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68000s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68100s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68200s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68300s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68400s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68500s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68600s 1015 0 0 0 0 0 816s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68700s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68800s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 68900s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69000s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69100s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69200s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69300s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69400s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69500s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69600s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69700s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69800s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 69900s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70000s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70100s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70200s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70300s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70400s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70500s 1015 0 0 0 0 0 817s 244s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70600s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70700s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70800s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 70900s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71000s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71100s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71200s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71300s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71400s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71500s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71600s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71700s 1015 0 0 0 0 0 817s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71800s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 71900s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72000s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72100s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72200s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72300s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72400s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72500s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72600s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72700s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72800s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 72900s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73000s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73100s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73200s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73300s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73400s 1015 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73500s 1014 1 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73600s 1014 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73700s 1014 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73800s 1014 0 0 0 0 0 818s 243s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 73900s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74000s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74100s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74200s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74300s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74400s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74500s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74600s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74700s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74800s 1014 0 0 0 0 0 818s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 74900s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75000s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75100s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75200s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75300s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75400s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75500s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75600s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75700s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75800s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 75900s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76000s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76100s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76200s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76300s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76400s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76500s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76600s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76700s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76800s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 76900s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77000s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77100s 1014 0 0 0 0 0 819s 242s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77200s 1014 0 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77300s 1014 0 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77400s 1014 0 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77500s 1014 0 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77600s 1013 1 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77700s 1013 0 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77800s 1013 1 0 0 0 0 819s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 77900s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78000s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78100s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78200s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78300s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78400s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78500s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78600s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78700s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78800s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 78900s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79000s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79100s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79200s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79300s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79400s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79500s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79600s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79700s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79800s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 79900s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80000s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80100s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80200s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80300s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80400s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80500s 1013 0 0 0 0 0 820s 241s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80600s 1013 0 0 0 0 0 820s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80700s 1013 0 0 0 0 0 820s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80800s 1013 0 0 0 0 0 820s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 80900s 1013 0 0 0 0 0 820s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81000s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81100s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81200s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81300s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81400s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81500s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81600s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81700s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81800s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 81900s 1013 1 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82000s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82100s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82200s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82300s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82400s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82500s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82600s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82700s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82800s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 82900s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83000s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83100s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83200s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83300s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83400s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83500s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83600s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83700s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83800s 1013 0 0 0 0 0 821s 240s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 83900s 1013 0 0 0 0 0 821s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84000s 1013 0 0 0 0 0 821s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84100s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84200s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84300s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84400s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84500s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84600s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84700s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84800s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 84900s 1013 1 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85000s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85100s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85200s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85300s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85400s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85500s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85600s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85700s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85800s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 85900s 1013 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86000s 1012 1 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86100s 1012 1 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86200s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86300s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86400s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86500s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86600s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86700s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86800s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 86900s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87000s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87100s 1012 0 0 0 0 0 822s 239s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87200s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87300s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87400s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87500s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87600s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87700s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87800s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 87900s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88000s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88100s 1012 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88200s 1013 1 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88300s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88400s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88500s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88600s 1013 1 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88700s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88800s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 88900s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89000s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89100s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89200s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89300s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89400s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89500s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89600s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89700s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89800s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 89900s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90000s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90100s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90200s 1013 0 0 0 0 0 823s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90300s 1013 0 0 0 0 0 824s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90400s 1013 0 0 0 0 0 824s 238s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90500s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90600s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90700s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90800s 1013 1 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 90900s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91000s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91100s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91200s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91300s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91400s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91500s 1013 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91600s 1012 1 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91700s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91800s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 91900s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92000s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92100s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92200s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92300s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92400s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92500s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92600s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92700s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92800s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 92900s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93000s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93100s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93200s 1012 0 0 0 0 0 824s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93300s 1012 0 0 0 0 0 825s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93400s 1012 0 0 0 0 0 825s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93500s 1012 0 0 0 0 0 825s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93600s 1012 0 0 0 0 0 825s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93700s 1012 0 0 0 0 0 825s 237s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93800s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 93900s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94000s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94100s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94200s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94300s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94400s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94500s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94600s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94700s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94800s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 94900s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95000s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95100s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95200s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95300s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95400s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95500s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95600s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95700s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95800s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 95900s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96000s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96100s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96200s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96300s 1012 0 0 0 0 0 825s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96400s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96500s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96600s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96700s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96800s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 96900s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97000s 1012 0 0 0 0 0 826s 236s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97100s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97200s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97300s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97400s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97500s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97600s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97700s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97800s 1012 1 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 97900s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98000s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98100s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98200s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98300s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98400s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98500s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98600s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98700s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98800s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 98900s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99000s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99100s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99200s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99300s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99400s 1012 0 0 0 0 0 826s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99500s 1012 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99600s 1012 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99700s 1011 1 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99800s 1011 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 99900s 1011 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1667m 1010 1 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1668m 1010 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1670m 1010 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1672m 1010 0 0 0 0 0 827s 235s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1673m 1010 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1675m 1011 1 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1677m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1678m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1680m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1682m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1683m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1685m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1687m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1688m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1690m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1692m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1693m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1695m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1697m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1698m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1700m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1702m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1703m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1705m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1707m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1708m 1011 0 0 0 0 0 827s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1710m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1712m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1713m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1715m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1717m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1718m 1011 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1720m 1010 1 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1722m 1010 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1723m 1010 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1725m 1010 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1727m 1010 0 0 0 0 0 828s 234s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1728m 1010 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1730m 1009 1 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1732m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1733m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1735m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1737m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1738m 1008 1 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1740m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1742m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1743m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1745m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1747m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1748m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1750m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1752m 1008 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1753m 1009 1 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1755m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1757m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1758m 1009 1 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1760m 1009 0 0 0 0 0 828s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1762m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1763m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1765m 1009 1 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1767m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1768m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1770m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1772m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1773m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1775m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1777m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1778m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1780m 1009 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1782m 1008 1 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1783m 1008 0 0 0 0 0 829s 233s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1785m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1787m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1788m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1790m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1792m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1793m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1795m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1797m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1798m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1800m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1802m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1803m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1805m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1807m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1808m 1008 1 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1810m 1008 0 0 0 0 0 829s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1812m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1813m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1815m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1817m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1818m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1820m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1822m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1823m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1825m 1008 1 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1827m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1828m 1008 1 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1830m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1832m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1833m 1008 1 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1835m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1837m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1838m 1008 0 0 0 0 0 830s 232s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1840m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1842m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1843m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1845m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1847m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1848m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1850m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1852m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1853m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1855m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1857m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1858m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1860m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1862m 1008 0 0 0 0 0 830s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1863m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1865m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1867m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1868m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1870m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1872m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1873m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1875m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1877m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1878m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1880m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1882m 1008 1 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1883m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1885m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1887m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1888m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1890m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1892m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1893m 1008 0 0 0 0 0 831s 231s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1895m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1897m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1898m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1900m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1902m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1903m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1905m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1907m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1908m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1910m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1912m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1913m 1008 0 0 0 0 0 831s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1915m 1008 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1917m 1008 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1918m 1008 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1920m 1008 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1922m 1008 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1923m 1007 1 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1925m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1927m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1928m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1930m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1932m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1933m 1007 2 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1935m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1937m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1938m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1940m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1942m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1943m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1945m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1947m 1007 0 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1948m 1006 1 0 0 0 0 832s 230s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1950m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1952m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1953m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1955m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1957m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1958m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1960m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1962m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1963m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1965m 1006 0 0 0 0 0 832s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1967m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1968m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1970m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1972m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1973m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1975m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1977m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1978m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1980m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1982m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1983m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1985m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1987m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1988m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1990m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1992m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1993m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1995m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1997m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 1998m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2000m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2002m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2003m 1006 0 0 0 0 0 833s 229s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2005m 1006 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2007m 1006 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2008m 1006 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2010m 1006 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2012m 1006 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2013m 1005 1 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2015m 1005 1 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2017m 1005 0 0 0 0 0 833s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2018m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2020m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2022m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2023m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2025m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2027m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2028m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2030m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2032m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2033m 1005 1 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2035m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2037m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2038m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2040m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2042m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2043m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2045m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2047m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2048m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2050m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2052m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2053m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2055m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2057m 1005 1 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2058m 1005 0 0 0 0 0 834s 228s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2060m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2062m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2063m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2065m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2067m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2068m 1005 0 0 0 0 0 834s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2070m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2072m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2073m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2075m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2077m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2078m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2080m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2082m 1005 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2083m 1006 1 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2085m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2087m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2088m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2090m 1006 1 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2092m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2093m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2095m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2097m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2098m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2100m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2102m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2103m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2105m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2107m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2108m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2110m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2112m 1006 1 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2113m 1006 0 0 0 0 0 835s 227s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2115m 1006 0 0 0 0 0 835s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2117m 1006 0 0 0 0 0 835s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2118m 1006 0 0 0 0 0 835s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2120m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2122m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2123m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2125m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2127m 1006 1 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2128m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2130m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2132m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2133m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2135m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2137m 1006 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2138m 1005 1 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2140m 1005 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2142m 1005 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2143m 1005 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2145m 1005 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2147m 1004 1 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2148m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2150m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2152m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2153m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2155m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2157m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2158m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2160m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2162m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2163m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2165m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2167m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2168m 1004 0 0 0 0 0 836s 226s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2170m 1004 0 0 0 0 0 836s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2172m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2173m 1003 1 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2175m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2177m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2178m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2180m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2182m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2183m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2185m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2187m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2188m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2190m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2192m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2193m 1003 1 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2195m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2197m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2198m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2200m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2202m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2203m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2205m 1003 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2207m 1004 1 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2208m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2210m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2212m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2213m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2215m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2217m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2218m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2220m 1004 0 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2222m 1004 1 0 0 0 0 837s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2223m 1003 1 0 0 0 0 838s 225s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2225m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2227m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2228m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2230m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2232m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2233m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2235m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2237m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2238m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2240m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2242m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2243m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2245m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2247m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2248m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2250m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2252m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2253m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2255m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2257m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2258m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2260m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2262m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2263m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2265m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2267m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2268m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2270m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2272m 1003 0 0 0 0 0 838s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2273m 1003 0 0 0 0 0 839s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2275m 1003 0 0 0 0 0 839s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2277m 1003 0 0 0 0 0 839s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2278m 1003 0 0 0 0 0 839s 224s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2280m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2282m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2283m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2285m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2287m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2288m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2290m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2292m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2293m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2295m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2297m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2298m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2300m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2302m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2303m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2305m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2307m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2308m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2310m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2312m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2313m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2315m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2317m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2318m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2320m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2322m 1003 0 0 0 0 0 839s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2323m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2325m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2327m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2328m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2330m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2332m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2333m 1003 0 0 0 0 0 840s 223s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2335m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2337m 1003 1 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2338m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2340m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2342m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2343m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2345m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2347m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2348m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2350m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2352m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2353m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2355m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2357m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2358m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2360m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2362m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2363m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2365m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2367m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2368m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2370m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2372m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2373m 1003 0 0 0 0 0 840s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2375m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2377m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2378m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2380m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2382m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2383m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2385m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2387m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2388m 1003 0 0 0 0 0 841s 222s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2390m 1003 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2392m 1002 1 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2393m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2395m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2397m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2398m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2400m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2402m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2403m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2405m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2407m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2408m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2410m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2412m 1002 1 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2413m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2415m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2417m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2418m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2420m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2422m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2423m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2425m 1002 0 0 0 0 0 841s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2427m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2428m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2430m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2432m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2433m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2435m 1002 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2437m 1001 1 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2438m 1001 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2440m 1001 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2442m 1001 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2443m 1001 0 0 0 0 0 842s 221s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2445m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2447m 1001 1 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2448m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2450m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2452m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2453m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2455m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2457m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2458m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2460m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2462m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2463m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2465m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2467m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2468m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2470m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2472m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2473m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2475m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2477m 1001 0 0 0 0 0 842s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2478m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2480m 1001 1 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2482m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2483m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2485m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2487m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2488m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2490m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2492m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2493m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2495m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2497m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2498m 1001 0 0 0 0 0 843s 220s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2500m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2502m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2503m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2505m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2507m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2508m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2510m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2512m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2513m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2515m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2517m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2518m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2520m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2522m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2523m 1001 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2525m 1000 1 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2527m 1000 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2528m 1000 0 0 0 0 0 843s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2530m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2532m 1000 1 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2533m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2535m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2537m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2538m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2540m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2542m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2543m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2545m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2547m 1000 1 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2548m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2550m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2552m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2553m 1000 0 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2555m 1000 1 0 0 0 0 844s 219s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2557m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2558m 1000 1 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2560m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2562m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2563m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2565m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2567m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2568m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2570m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2572m 1000 0 0 0 0 0 844s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2573m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2575m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2577m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2578m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2580m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2582m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2583m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2585m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2587m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2588m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2590m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2592m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2593m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2595m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2597m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2598m 1000 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2600m 999 1 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2602m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2603m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2605m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2607m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2608m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2610m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2612m 999 0 0 0 0 0 845s 218s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2613m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2615m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2617m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2618m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2620m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2622m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2623m 999 0 0 0 0 0 845s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2625m 999 1 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2627m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2628m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2630m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2632m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2633m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2635m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2637m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2638m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2640m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2642m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2643m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2645m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2647m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2648m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2650m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2652m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2653m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2655m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2657m 999 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2658m 998 2 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2660m 998 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2662m 998 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2663m 998 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2665m 998 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2667m 998 0 0 0 0 0 846s 217s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2668m 998 0 0 0 0 0 846s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2670m 998 0 0 0 0 0 846s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2672m 998 0 0 0 0 0 846s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2673m 998 0 0 0 0 0 846s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2675m 998 0 0 0 0 0 846s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2677m 998 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2678m 998 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2680m 998 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2682m 998 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2683m 997 1 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2685m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2687m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2688m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2690m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2692m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2693m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2695m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2697m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2698m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2700m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2702m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2703m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2705m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2707m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2708m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2710m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2712m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2713m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2715m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2717m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2718m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2720m 997 0 0 0 0 0 847s 216s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2722m 997 0 0 0 0 0 847s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2723m 997 0 0 0 0 0 847s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2725m 997 0 0 0 0 0 847s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2727m 997 0 0 0 0 0 847s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2728m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2730m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2732m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2733m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2735m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2737m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2738m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2740m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2742m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2743m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2745m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2747m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2748m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2750m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2752m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2753m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2755m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2757m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2758m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2760m 997 1 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2762m 997 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2763m 996 1 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2765m 996 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2767m 996 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2768m 996 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2770m 996 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2772m 996 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2773m 995 1 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2775m 995 0 0 0 0 0 848s 215s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2777m 995 0 0 0 0 0 848s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2778m 995 0 0 0 0 0 848s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2780m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2782m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2783m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2785m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2787m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2788m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2790m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2792m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2793m 995 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2795m 994 1 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2797m 994 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2798m 994 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2800m 993 1 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2802m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2803m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2805m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2807m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2808m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2810m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2812m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2813m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2815m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2817m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2818m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2820m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2822m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2823m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2825m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2827m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2828m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2830m 993 0 0 0 0 0 849s 214s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2832m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2833m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2835m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2837m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2838m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2840m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2842m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2843m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2845m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2847m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2848m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2850m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2852m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2853m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2855m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2857m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2858m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2860m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2862m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2863m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2865m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2867m 993 1 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2868m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2870m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2872m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2873m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2875m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2877m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2878m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 16 2880m 993 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 0s 1015 0 0 0 0 0 850s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 100s 1015 0 0 0 0 0 851s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 200s 1015 0 0 0 0 0 851s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 300s 1015 0 0 0 0 0 851s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 400s 1015 0 0 0 0 0 851s 213s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 500s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 600s 1016 1 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 700s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 800s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 900s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1000s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1100s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1200s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1300s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1400s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1500s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1600s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1700s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1800s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1900s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2000s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2100s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2200s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2300s 1016 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2400s 1015 2 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2500s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2600s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2700s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2800s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2900s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3000s 1015 0 0 0 0 0 851s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3100s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3200s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3300s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3400s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3500s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3600s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3700s 1015 0 0 0 0 0 852s 212s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3800s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 3900s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4000s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4100s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4200s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4300s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4400s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4500s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4600s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4700s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4800s 1015 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 4900s 1014 1 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5000s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5100s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5200s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5300s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5400s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5500s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5600s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5700s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5800s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 5900s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6000s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6100s 1014 0 0 0 0 0 852s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6200s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6300s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6400s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6500s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6600s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6700s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6800s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 6900s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7000s 1014 0 0 0 0 0 853s 211s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7100s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7200s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7300s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7400s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7500s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7600s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7700s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7800s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 7900s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8000s 1014 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8100s 1015 1 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8200s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8300s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8400s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8500s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8600s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8700s 1015 0 0 0 0 0 853s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8800s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 8900s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9000s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9100s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9200s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9300s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9400s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9500s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9600s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9700s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9800s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 9900s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10000s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10100s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10200s 1015 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10300s 1014 1 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10400s 1014 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10500s 1014 0 0 0 0 0 854s 210s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10600s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10700s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10800s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 10900s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11000s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11100s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11200s 1014 0 0 0 0 0 854s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11300s 1014 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11400s 1014 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11500s 1013 1 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11600s 1012 1 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11700s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11800s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 11900s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12000s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12100s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12200s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12300s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12400s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12500s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12600s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12700s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12800s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 12900s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13000s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13100s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13200s 1012 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13300s 1011 1 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13400s 1011 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13500s 1011 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13600s 1011 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13700s 1011 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13800s 1011 0 0 0 0 0 855s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 13900s 1011 0 0 0 0 0 856s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14000s 1011 0 0 0 0 0 856s 209s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14100s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14200s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14300s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14400s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14500s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14600s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14700s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14800s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 14900s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15000s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15100s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15200s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15300s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15400s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15500s 1011 1 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15600s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15700s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15800s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 15900s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16000s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16100s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16200s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16300s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16400s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16500s 1011 0 0 0 0 0 856s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16600s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16700s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16800s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 16900s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17000s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17100s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17200s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17300s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17400s 1011 0 0 0 0 0 857s 208s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17500s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17600s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17700s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17800s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 17900s 1011 1 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18000s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18100s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18200s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18300s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18400s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18500s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18600s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18700s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18800s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 18900s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19000s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19100s 1011 0 0 0 0 0 857s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19200s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19300s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19400s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19500s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19600s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19700s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19800s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 19900s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20000s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20100s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20200s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20300s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20400s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20500s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20600s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20700s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20800s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 20900s 1011 0 0 0 0 0 858s 207s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21000s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21100s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21200s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21300s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21400s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21500s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21600s 1011 0 0 0 0 0 858s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21700s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21800s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 21900s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22000s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22100s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22200s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22300s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22400s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22500s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22600s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22700s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22800s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 22900s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23000s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23100s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23200s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23300s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23400s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23500s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23600s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23700s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23800s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 23900s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24000s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24100s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24200s 1011 0 0 0 0 0 859s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24300s 1011 0 0 0 0 0 860s 206s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24400s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24500s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24600s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24700s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24800s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 24900s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25000s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25100s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25200s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25300s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25400s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25500s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25600s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25700s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25800s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 25900s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26000s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26100s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26200s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26300s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26400s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26500s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26600s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26700s 1011 0 0 0 0 0 860s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26800s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 26900s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27000s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27100s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27200s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27300s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27400s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27500s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27600s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27700s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27800s 1011 0 0 0 0 0 861s 205s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 27900s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28000s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28100s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28200s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28300s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28400s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28500s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28600s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28700s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28800s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 28900s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29000s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29100s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29200s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29300s 1011 0 0 0 0 0 861s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29400s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29500s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29600s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29700s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29800s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 29900s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30000s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30100s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30200s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30300s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30400s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30500s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30600s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30700s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30800s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 30900s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31000s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31100s 1011 1 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31200s 1011 0 0 0 0 0 862s 204s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31300s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31400s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31500s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31600s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31700s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31800s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 31900s 1011 0 0 0 0 0 862s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32000s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32100s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32200s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32300s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32400s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32500s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32600s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32700s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32800s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 32900s 1011 1 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33000s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33100s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33200s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33300s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33400s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33500s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33600s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33700s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33800s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 33900s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34000s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34100s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34200s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34300s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34400s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34500s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34600s 1011 0 0 0 0 0 863s 203s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34700s 1011 0 0 0 0 0 863s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34800s 1011 0 0 0 0 0 863s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 34900s 1011 0 0 0 0 0 863s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35000s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35100s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35200s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35300s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35400s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35500s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35600s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35700s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35800s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 35900s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36000s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36100s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36200s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36300s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36400s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36500s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36600s 1011 1 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36700s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36800s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 36900s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37000s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37100s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37200s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37300s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37400s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37500s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37600s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37700s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37800s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 37900s 1011 0 0 0 0 0 864s 202s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38000s 1011 0 0 0 0 0 864s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38100s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38200s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38300s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38400s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38500s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38600s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38700s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38800s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 38900s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39000s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39100s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39200s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39300s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39400s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39500s 1011 1 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39600s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39700s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39800s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 39900s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40000s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40100s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40200s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40300s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40400s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40500s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40600s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40700s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40800s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 40900s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41000s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41100s 1011 0 0 0 0 0 865s 201s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41200s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41300s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41400s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41500s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41600s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41700s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41800s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 41900s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42000s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42100s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42200s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42300s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42400s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42500s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42600s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42700s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42800s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 42900s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43000s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43100s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43200s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43300s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43400s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43500s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43600s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43700s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43800s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 43900s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44000s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44100s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44200s 1011 0 0 0 0 0 866s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44300s 1011 0 0 0 0 0 867s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44400s 1011 0 0 0 0 0 867s 200s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44500s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44600s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44700s 1011 2 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44800s 1011 1 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 44900s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45000s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45100s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45200s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45300s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45400s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45500s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45600s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45700s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45800s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 45900s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46000s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46100s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46200s 1011 1 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46300s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46400s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46500s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46600s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46700s 1011 0 0 0 0 0 867s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46800s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 46900s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47000s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47100s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47200s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47300s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47400s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47500s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47600s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47700s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47800s 1011 0 0 0 0 0 868s 199s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 47900s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48000s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48100s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48200s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48300s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48400s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48500s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48600s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48700s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48800s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 48900s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49000s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49100s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49200s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49300s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49400s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49500s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49600s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49700s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49800s 1011 0 0 0 0 0 868s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 49900s 1012 1 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50000s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50100s 1012 1 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50200s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50300s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50400s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50500s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50600s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50700s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50800s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 50900s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51000s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51100s 1012 0 0 0 0 0 869s 198s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51200s 1012 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51300s 1012 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51400s 1011 1 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51500s 1011 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51600s 1011 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51700s 1010 1 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51800s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 51900s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52000s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52100s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52200s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52300s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52400s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52500s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52600s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52700s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52800s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 52900s 1010 0 0 0 0 0 869s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53000s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53100s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53200s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53300s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53400s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53500s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53600s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53700s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53800s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 53900s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54000s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54100s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54200s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54300s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54400s 1010 0 0 0 0 0 870s 197s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54500s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54600s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54700s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54800s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 54900s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55000s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55100s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55200s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55300s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55400s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55500s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55600s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55700s 1010 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55800s 1009 2 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 55900s 1009 0 0 0 0 0 870s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56000s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56100s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56200s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56300s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56400s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56500s 1009 1 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56600s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56700s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56800s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 56900s 1009 1 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57000s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57100s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57200s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57300s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57400s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57500s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57600s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57700s 1009 0 0 0 0 0 871s 196s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57800s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 57900s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58000s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58100s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58200s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58300s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58400s 1009 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58500s 1010 1 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58600s 1010 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58700s 1010 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58800s 1010 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 58900s 1010 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59000s 1010 0 0 0 0 0 871s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59100s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59200s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59300s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59400s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59500s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59600s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59700s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59800s 1010 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 59900s 1009 1 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60000s 1009 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60100s 1009 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60200s 1009 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60300s 1009 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60400s 1009 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60500s 1008 1 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60600s 1008 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60700s 1008 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60800s 1008 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 60900s 1008 0 0 0 0 0 872s 195s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61000s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61100s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61200s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61300s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61400s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61500s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61600s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61700s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61800s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 61900s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62000s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62100s 1008 0 0 0 0 0 872s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62200s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62300s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62400s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62500s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62600s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62700s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62800s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 62900s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63000s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63100s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63200s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63300s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63400s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63500s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63600s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63700s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63800s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 63900s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64000s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64100s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64200s 1008 0 0 0 0 0 873s 194s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64300s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64400s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64500s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64600s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64700s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64800s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 64900s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65000s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65100s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65200s 1008 0 0 0 0 0 873s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65300s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65400s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65500s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65600s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65700s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65800s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 65900s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66000s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66100s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66200s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66300s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66400s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66500s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66600s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66700s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66800s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 66900s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67000s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67100s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67200s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67300s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67400s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67500s 1008 0 0 0 0 0 874s 193s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67600s 1008 0 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67700s 1008 0 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67800s 1008 0 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 67900s 1008 0 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68000s 1008 0 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68100s 1007 1 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68200s 1006 1 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68300s 1005 1 0 0 0 0 874s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68400s 1005 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68500s 1005 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68600s 1004 1 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68700s 1004 1 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68800s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 68900s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69000s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69100s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69200s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69300s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69400s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69500s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69600s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69700s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69800s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 69900s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70000s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70100s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70200s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70300s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70400s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70500s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70600s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70700s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70800s 1004 0 0 0 0 0 875s 192s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 70900s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71000s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71100s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71200s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71300s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71400s 1004 0 0 0 0 0 875s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71500s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71600s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71700s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71800s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 71900s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72000s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72100s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72200s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72300s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72400s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72500s 1004 1 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72600s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72700s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72800s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 72900s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73000s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73100s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73200s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73300s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73400s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73500s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73600s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73700s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73800s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 73900s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74000s 1004 0 0 0 0 0 876s 191s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74100s 1004 0 0 0 0 0 876s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74200s 1004 0 0 0 0 0 876s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74300s 1004 0 0 0 0 0 876s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74400s 1004 0 0 0 0 0 876s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74500s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74600s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74700s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74800s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 74900s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75000s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75100s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75200s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75300s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75400s 1004 1 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75500s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75600s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75700s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75800s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 75900s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76000s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76100s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76200s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76300s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76400s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76500s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76600s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76700s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76800s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 76900s 1004 0 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77000s 1003 2 0 0 0 0 877s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77100s 1003 1 0 0 0 0 878s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77200s 1003 0 0 0 0 0 878s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77300s 1003 0 0 0 0 0 878s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77400s 1003 0 0 0 0 0 878s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77500s 1003 1 0 0 0 0 878s 190s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77600s 1003 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77700s 1003 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77800s 1003 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 77900s 1002 1 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78000s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78100s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78200s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78300s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78400s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78500s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78600s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78700s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78800s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 78900s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79000s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79100s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79200s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79300s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79400s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79500s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79600s 1002 0 0 0 0 0 878s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79700s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79800s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 79900s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80000s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80100s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80200s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80300s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80400s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80500s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80600s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80700s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80800s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 80900s 1002 0 0 0 0 0 879s 189s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81000s 1002 1 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81100s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81200s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81300s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81400s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81500s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81600s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81700s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81800s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 81900s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82000s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82100s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82200s 1002 0 0 0 0 0 879s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82300s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82400s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82500s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82600s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82700s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82800s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 82900s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83000s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83100s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83200s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83300s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83400s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83500s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83600s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83700s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83800s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 83900s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84000s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84100s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84200s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84300s 1002 0 0 0 0 0 880s 188s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84400s 1002 0 0 0 0 0 880s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84500s 1002 0 0 0 0 0 880s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84600s 1002 0 0 0 0 0 880s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84700s 1002 0 0 0 0 0 880s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84800s 1002 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 84900s 1002 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85000s 1001 2 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85100s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85200s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85300s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85400s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85500s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85600s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85700s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85800s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 85900s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86000s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86100s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86200s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86300s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86400s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86500s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86600s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86700s 1001 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86800s 1000 1 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 86900s 999 1 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87000s 999 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87100s 999 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87200s 999 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87300s 999 0 0 0 0 0 881s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87400s 999 1 0 0 0 0 882s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87500s 999 0 0 0 0 0 882s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87600s 999 0 0 0 0 0 882s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87700s 999 0 0 0 0 0 882s 187s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87800s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 87900s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88000s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88100s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88200s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88300s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88400s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88500s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88600s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88700s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88800s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 88900s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89000s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89100s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89200s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89300s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89400s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89500s 999 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89600s 998 1 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89700s 998 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89800s 998 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 89900s 998 0 0 0 0 0 882s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90000s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90100s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90200s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90300s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90400s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90500s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90600s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90700s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90800s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 90900s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91000s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91100s 998 0 0 0 0 0 883s 186s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91200s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91300s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91400s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91500s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91600s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91700s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91800s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 91900s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92000s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92100s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92200s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92300s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92400s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92500s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92600s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92700s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92800s 998 0 0 0 0 0 883s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 92900s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93000s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93100s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93200s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93300s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93400s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93500s 998 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93600s 997 1 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93700s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93800s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 93900s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94000s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94100s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94200s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94300s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94400s 997 0 0 0 0 0 884s 185s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94500s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94600s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94700s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94800s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 94900s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95000s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95100s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95200s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95300s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95400s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95500s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95600s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95700s 997 0 0 0 0 0 884s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95800s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 95900s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96000s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96100s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96200s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96300s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96400s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96500s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96600s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96700s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96800s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 96900s 997 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97000s 996 1 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97100s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97200s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97300s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97400s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97500s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97600s 996 1 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97700s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97800s 996 0 0 0 0 0 885s 184s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 97900s 996 0 0 0 0 0 885s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98000s 996 0 0 0 0 0 885s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98100s 996 0 0 0 0 0 885s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98200s 996 0 0 0 0 0 885s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98300s 996 0 0 0 0 0 885s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98400s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98500s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98600s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98700s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98800s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 98900s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99000s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99100s 996 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99200s 995 1 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99300s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99400s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99500s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99600s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99700s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99800s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 99900s 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1667m 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1668m 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1670m 995 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1672m 994 1 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1673m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1675m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1677m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1678m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1680m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1682m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1683m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1685m 994 0 0 0 0 0 886s 183s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1687m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1688m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1690m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1692m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1693m 994 1 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1695m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1697m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1698m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1700m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1702m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1703m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1705m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1707m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1708m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1710m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1712m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1713m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1715m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1717m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1718m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1720m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1722m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1723m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1725m 994 1 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1727m 994 0 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1728m 994 1 0 0 0 0 887s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1730m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1732m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1733m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1735m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1737m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1738m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1740m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1742m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1743m 994 0 0 0 0 0 888s 182s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1745m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1747m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1748m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1750m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1752m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1753m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1755m 994 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1757m 993 1 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1758m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1760m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1762m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1763m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1765m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1767m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1768m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1770m 993 0 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1772m 993 1 0 0 0 0 888s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1773m 993 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1775m 992 1 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1777m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1778m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1780m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1782m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1783m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1785m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1787m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1788m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1790m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1792m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1793m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1795m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1797m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1798m 992 0 0 0 0 0 889s 181s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1800m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1802m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1803m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1805m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1807m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1808m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1810m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1812m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1813m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1815m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1817m 992 0 0 0 0 0 889s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1818m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1820m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1822m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1823m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1825m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1827m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1828m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1830m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1832m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1833m 992 1 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1835m 992 1 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1837m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1838m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1840m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1842m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1843m 992 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1845m 991 1 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1847m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1848m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1850m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1852m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1853m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1855m 991 0 0 0 0 0 890s 180s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1857m 991 0 0 0 0 0 890s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1858m 991 0 0 0 0 0 890s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1860m 991 0 0 0 0 0 890s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1862m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1863m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1865m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1867m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1868m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1870m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1872m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1873m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1875m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1877m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1878m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1880m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1882m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1883m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1885m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1887m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1888m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1890m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1892m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1893m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1895m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1897m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1898m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1900m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1902m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1903m 991 0 0 0 0 0 891s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1905m 991 0 0 0 0 0 892s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1907m 991 0 0 0 0 0 892s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1908m 991 0 0 0 0 0 892s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1910m 991 0 0 0 0 0 892s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1912m 991 0 0 0 0 0 892s 179s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1913m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1915m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1917m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1918m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1920m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1922m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1923m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1925m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1927m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1928m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1930m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1932m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1933m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1935m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1937m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1938m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1940m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1942m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1943m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1945m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1947m 991 0 0 0 0 0 892s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1948m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1950m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1952m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1953m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1955m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1957m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1958m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1960m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1962m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1963m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1965m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1967m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1968m 991 0 0 0 0 0 893s 178s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1970m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1972m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1973m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1975m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1977m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1978m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1980m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1982m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1983m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1985m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1987m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1988m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1990m 991 0 0 0 0 0 893s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1992m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1993m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1995m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1997m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 1998m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2000m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2002m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2003m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2005m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2007m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2008m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2010m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2012m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2013m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2015m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2017m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2018m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2020m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2022m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2023m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2025m 991 0 0 0 0 0 894s 177s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2027m 991 0 0 0 0 0 894s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2028m 991 0 0 0 0 0 894s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2030m 991 0 0 0 0 0 894s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2032m 991 0 0 0 0 0 894s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2033m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2035m 991 1 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2037m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2038m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2040m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2042m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2043m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2045m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2047m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2048m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2050m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2052m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2053m 991 1 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2055m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2057m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2058m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2060m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2062m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2063m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2065m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2067m 991 1 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2068m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2070m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2072m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2073m 991 0 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2075m 990 1 0 0 0 0 895s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2077m 990 0 0 0 0 0 896s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2078m 990 0 0 0 0 0 896s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2080m 990 0 0 0 0 0 896s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2082m 990 0 0 0 0 0 896s 176s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2083m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2085m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2087m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2088m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2090m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2092m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2093m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2095m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2097m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2098m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2100m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2102m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2103m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2105m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2107m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2108m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2110m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2112m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2113m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2115m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2117m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2118m 990 0 0 0 0 0 896s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2120m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2122m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2123m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2125m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2127m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2128m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2130m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2132m 990 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2133m 989 1 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2135m 989 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2137m 989 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2138m 989 0 0 0 0 0 897s 175s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2140m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2142m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2143m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2145m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2147m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2148m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2150m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2152m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2153m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2155m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2157m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2158m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2160m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2162m 989 0 0 0 0 0 897s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2163m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2165m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2167m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2168m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2170m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2172m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2173m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2175m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2177m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2178m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2180m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2182m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2183m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2185m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2187m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2188m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2190m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2192m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2193m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2195m 989 0 0 0 0 0 898s 174s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2197m 989 0 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2198m 989 0 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2200m 989 0 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2202m 989 0 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2203m 989 0 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2205m 988 1 0 0 0 0 898s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2207m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2208m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2210m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2212m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2213m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2215m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2217m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2218m 988 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2220m 988 1 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2222m 987 1 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2223m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2225m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2227m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2228m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2230m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2232m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2233m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2235m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2237m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2238m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2240m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2242m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2243m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2245m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2247m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2248m 987 0 0 0 0 0 899s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2250m 987 0 0 0 0 0 900s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2252m 987 0 0 0 0 0 900s 173s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2253m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2255m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2257m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2258m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2260m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2262m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2263m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2265m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2267m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2268m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2270m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2272m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2273m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2275m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2277m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2278m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2280m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2282m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2283m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2285m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2287m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2288m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2290m 987 0 0 0 0 0 900s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2292m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2293m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2295m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2297m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2298m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2300m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2302m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2303m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2305m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2307m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2308m 987 0 0 0 0 0 901s 172s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2310m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2312m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2313m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2315m 987 1 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2317m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2318m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2320m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2322m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2323m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2325m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2327m 987 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2328m 986 1 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2330m 986 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2332m 986 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2333m 986 0 0 0 0 0 901s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2335m 986 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2337m 986 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2338m 986 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2340m 986 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2342m 985 1 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2343m 985 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2345m 985 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2347m 985 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2348m 985 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2350m 984 1 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2352m 984 1 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2353m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2355m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2357m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2358m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2360m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2362m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2363m 984 0 0 0 0 0 902s 171s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2365m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2367m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2368m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2370m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2372m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2373m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2375m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2377m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2378m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2380m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2382m 984 0 0 0 0 0 902s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2383m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2385m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2387m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2388m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2390m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2392m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2393m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2395m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2397m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2398m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2400m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2402m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2403m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2405m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2407m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2408m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2410m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2412m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2413m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2415m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2417m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2418m 984 0 0 0 0 0 903s 170s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2420m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2422m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2423m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2425m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2427m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2428m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2430m 984 0 0 0 0 0 903s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2432m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2433m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2435m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2437m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2438m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2440m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2442m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2443m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2445m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2447m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2448m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2450m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2452m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2453m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2455m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2457m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2458m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2460m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2462m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2463m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2465m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2467m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2468m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2470m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2472m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2473m 984 0 0 0 0 0 904s 169s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2475m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2477m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2478m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2480m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2482m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2483m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2485m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2487m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2488m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2490m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2492m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2493m 984 1 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2495m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2497m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2498m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2500m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2502m 984 1 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2503m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2505m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2507m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2508m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2510m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2512m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2513m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2515m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2517m 984 0 0 0 0 0 905s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2518m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2520m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2522m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2523m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2525m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2527m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2528m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2530m 984 0 0 0 0 0 906s 168s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2532m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2533m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2535m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2537m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2538m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2540m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2542m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2543m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2545m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2547m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2548m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2550m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2552m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2553m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2555m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2557m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2558m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2560m 984 0 0 0 0 0 906s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2562m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2563m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2565m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2567m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2568m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2570m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2572m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2573m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2575m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2577m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2578m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2580m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2582m 984 1 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2583m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2585m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2587m 984 0 0 0 0 0 907s 167s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2588m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2590m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2592m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2593m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2595m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2597m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2598m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2600m 984 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2602m 985 2 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2603m 985 0 0 0 0 0 907s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2605m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2607m 985 1 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2608m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2610m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2612m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2613m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2615m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2617m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2618m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2620m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2622m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2623m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2625m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2627m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2628m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2630m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2632m 985 1 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2633m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2635m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2637m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2638m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2640m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2642m 985 0 0 0 0 0 908s 166s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2643m 985 0 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2645m 985 0 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2647m 985 0 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2648m 984 1 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2650m 984 0 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2652m 984 0 0 0 0 0 908s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2653m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2655m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2657m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2658m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2660m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2662m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2663m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2665m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2667m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2668m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2670m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2672m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2673m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2675m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2677m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2678m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2680m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2682m 984 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2683m 985 2 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2685m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2687m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2688m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2690m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2692m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2693m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2695m 985 0 0 0 0 0 909s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2697m 985 0 0 0 0 0 910s 165s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2698m 985 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2700m 985 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2702m 984 1 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2703m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2705m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2707m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2708m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2710m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2712m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2713m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2715m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2717m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2718m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2720m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2722m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2723m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2725m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2727m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2728m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2730m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2732m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2733m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2735m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2737m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2738m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2740m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2742m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2743m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2745m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2747m 984 0 0 0 0 0 910s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2748m 984 0 0 0 0 0 911s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2750m 984 0 0 0 0 0 911s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2752m 984 0 0 0 0 0 911s 164s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2753m 984 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2755m 984 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2757m 984 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2758m 984 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2760m 984 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2762m 983 1 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2763m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2765m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2767m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2768m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2770m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2772m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2773m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2775m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2777m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2778m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2780m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2782m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2783m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2785m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2787m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2788m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2790m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2792m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2793m 983 0 0 0 0 0 911s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2795m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2797m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2798m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2800m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2802m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2803m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2805m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2807m 983 0 0 0 0 0 912s 163s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2808m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2810m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2812m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2813m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2815m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2817m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2818m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2820m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2822m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2823m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2825m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2827m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2828m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2830m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2832m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2833m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2835m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2837m 983 0 0 0 0 0 912s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2838m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2840m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2842m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2843m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2845m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2847m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2848m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2850m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2852m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2853m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2855m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2857m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2858m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2860m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2862m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2863m 983 0 0 0 0 0 913s 162s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2865m 982 1 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2867m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2868m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2870m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2872m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2873m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2875m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2877m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2878m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 17 2880m 982 0 0 0 0 0 913s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 0s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 100s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 200s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 300s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 400s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 500s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 600s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 700s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 800s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 900s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1000s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1100s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1200s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1300s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1400s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1500s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1600s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1700s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1800s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1900s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2000s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2100s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2200s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2300s 1000 0 0 0 0 0 914s 161s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2400s 1000 0 0 0 0 0 914s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2500s 1000 0 0 0 0 0 914s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2600s 1000 0 0 0 0 0 914s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2700s 1000 0 0 0 0 0 914s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2800s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2900s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3000s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3100s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3200s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3300s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3400s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3500s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3600s 1000 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3700s 999 1 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3800s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 3900s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4000s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4100s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4200s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4300s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4400s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4500s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4600s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4700s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4800s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 4900s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5000s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5100s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5200s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5300s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5400s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5500s 999 0 0 0 0 0 915s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5600s 999 0 0 0 0 0 916s 160s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5700s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5800s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 5900s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6000s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6100s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6200s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6300s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6400s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6500s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6600s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6700s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6800s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 6900s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7000s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7100s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7200s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7300s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7400s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7500s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7600s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7700s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7800s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 7900s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8000s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8100s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8200s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8300s 999 0 0 0 0 0 916s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8400s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8500s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8600s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8700s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8800s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 8900s 999 0 0 0 0 0 917s 159s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9000s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9100s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9200s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9300s 999 1 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9400s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9500s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9600s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9700s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9800s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 9900s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10000s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10100s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10200s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10300s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10400s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10500s 999 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10600s 998 1 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10700s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10800s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 10900s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11000s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11100s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11200s 998 0 0 0 0 0 917s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11300s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11400s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11500s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11600s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11700s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11800s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 11900s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12000s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12100s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12200s 998 0 0 0 0 0 918s 158s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12300s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12400s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12500s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12600s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12700s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12800s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 12900s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13000s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13100s 998 1 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13200s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13300s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13400s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13500s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13600s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13700s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13800s 998 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 13900s 997 1 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14000s 997 0 0 0 0 0 918s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14100s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14200s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14300s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14400s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14500s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14600s 997 1 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14700s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14800s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 14900s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15000s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15100s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15200s 997 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15300s 998 1 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15400s 998 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15500s 998 0 0 0 0 0 919s 157s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15600s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15700s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15800s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 15900s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16000s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16100s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16200s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16300s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16400s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16500s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16600s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16700s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16800s 998 0 0 0 0 0 919s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 16900s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17000s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17100s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17200s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17300s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17400s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17500s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17600s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17700s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17800s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 17900s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18000s 998 1 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18100s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18200s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18300s 998 1 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18400s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18500s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18600s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18700s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18800s 998 0 0 0 0 0 920s 156s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 18900s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19000s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19100s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19200s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19300s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19400s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19500s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19600s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19700s 998 1 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19800s 998 0 0 0 0 0 920s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 19900s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20000s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20100s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20200s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20300s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20400s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20500s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20600s 997 1 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20700s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20800s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 20900s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21000s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21100s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21200s 997 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21300s 998 1 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21400s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21500s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21600s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21700s 998 1 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21800s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 21900s 998 0 0 0 0 0 921s 155s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22000s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22100s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22200s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22300s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22400s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22500s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22600s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22700s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22800s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 22900s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23000s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23100s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23200s 998 0 0 0 0 0 921s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23300s 998 1 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23400s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23500s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23600s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23700s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23800s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 23900s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24000s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24100s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24200s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24300s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24400s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24500s 998 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24600s 997 1 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24700s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24800s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 24900s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25000s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25100s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25200s 997 0 0 0 0 0 922s 154s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25300s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25400s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25500s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25600s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25700s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25800s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 25900s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26000s 997 0 0 0 0 0 922s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26100s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26200s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26300s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26400s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26500s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26600s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26700s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26800s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 26900s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27000s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27100s 997 1 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27200s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27300s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27400s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27500s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27600s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27700s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27800s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 27900s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28000s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28100s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28200s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28300s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28400s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28500s 997 0 0 0 0 0 923s 153s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28600s 997 0 0 0 0 0 923s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28700s 997 0 0 0 0 0 923s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28800s 997 0 0 0 0 0 923s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 28900s 997 0 0 0 0 0 923s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29000s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29100s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29200s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29300s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29400s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29500s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29600s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29700s 997 1 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29800s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 29900s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30000s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30100s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30200s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30300s 997 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30400s 996 1 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30500s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30600s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30700s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30800s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 30900s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31000s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31100s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31200s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31300s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31400s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31500s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31600s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31700s 996 0 0 0 0 0 924s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31800s 996 0 0 0 0 0 925s 152s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 31900s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32000s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32100s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32200s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32300s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32400s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32500s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32600s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32700s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32800s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 32900s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33000s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33100s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33200s 996 1 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33300s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33400s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33500s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33600s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33700s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33800s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 33900s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34000s 996 1 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34100s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34200s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34300s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34400s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34500s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34600s 996 0 0 0 0 0 925s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34700s 996 0 0 0 0 0 926s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34800s 996 0 0 0 0 0 926s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 34900s 996 0 0 0 0 0 926s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35000s 996 0 0 0 0 0 926s 151s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35100s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35200s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35300s 996 1 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35400s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35500s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35600s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35700s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35800s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 35900s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36000s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36100s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36200s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36300s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36400s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36500s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36600s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36700s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36800s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 36900s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37000s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37100s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37200s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37300s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37400s 996 0 0 0 0 0 926s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37500s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37600s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37700s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37800s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 37900s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38000s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38100s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38200s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38300s 996 0 0 0 0 0 927s 150s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38400s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38500s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38600s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38700s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38800s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 38900s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39000s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39100s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39200s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39300s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39400s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39500s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39600s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39700s 996 1 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39800s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 39900s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40000s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40100s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40200s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40300s 996 1 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40400s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40500s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40600s 996 0 0 0 0 0 927s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40700s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40800s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 40900s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41000s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41100s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41200s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41300s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41400s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41500s 996 0 0 0 0 0 928s 149s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41600s 996 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41700s 996 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41800s 996 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 41900s 996 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42000s 995 1 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42100s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42200s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42300s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42400s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42500s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42600s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42700s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42800s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 42900s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43000s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43100s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43200s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43300s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43400s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43500s 995 0 0 0 0 0 928s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43600s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43700s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43800s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 43900s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44000s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44100s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44200s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44300s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44400s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44500s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44600s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44700s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44800s 995 0 0 0 0 0 929s 148s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 44900s 995 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45000s 995 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45100s 995 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45200s 994 1 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45300s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45400s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45500s 994 1 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45600s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45700s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45800s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 45900s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46000s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46100s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46200s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46300s 994 0 0 0 0 0 929s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46400s 994 1 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46500s 993 1 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46600s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46700s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46800s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 46900s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47000s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47100s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47200s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47300s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47400s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47500s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47600s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47700s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47800s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 47900s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48000s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48100s 993 0 0 0 0 0 930s 147s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48200s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48300s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48400s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48500s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48600s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48700s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48800s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 48900s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49000s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49100s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49200s 993 0 0 0 0 0 930s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49300s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49400s 993 1 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49500s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49600s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49700s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49800s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 49900s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50000s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50100s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50200s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50300s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50400s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50500s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50600s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50700s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50800s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 50900s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51000s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51100s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51200s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51300s 993 0 0 0 0 0 931s 146s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51400s 994 1 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51500s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51600s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51700s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51800s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 51900s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52000s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52100s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52200s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52300s 994 0 0 0 0 0 931s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52400s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52500s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52600s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52700s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52800s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 52900s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53000s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53100s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53200s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53300s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53400s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53500s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53600s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53700s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53800s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 53900s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54000s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54100s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54200s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54300s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54400s 994 1 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54500s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54600s 994 0 0 0 0 0 932s 145s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54700s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54800s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 54900s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55000s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55100s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55200s 994 0 0 0 0 0 932s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55300s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55400s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55500s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55600s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55700s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55800s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 55900s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56000s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56100s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56200s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56300s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56400s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56500s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56600s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56700s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56800s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 56900s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57000s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57100s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57200s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57300s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57400s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57500s 994 1 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57600s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57700s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57800s 994 0 0 0 0 0 933s 144s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 57900s 994 0 0 0 0 0 933s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58000s 994 0 0 0 0 0 933s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58100s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58200s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58300s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58400s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58500s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58600s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58700s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58800s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 58900s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59000s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59100s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59200s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59300s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59400s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59500s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59600s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59700s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59800s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 59900s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60000s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60100s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60200s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60300s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60400s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60500s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60600s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60700s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60800s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 60900s 994 0 0 0 0 0 934s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61000s 994 0 0 0 0 0 935s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61100s 994 0 0 0 0 0 935s 143s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61200s 994 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61300s 994 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61400s 994 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61500s 994 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61600s 993 1 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61700s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61800s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 61900s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62000s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62100s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62200s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62300s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62400s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62500s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62600s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62700s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62800s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 62900s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63000s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63100s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63200s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63300s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63400s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63500s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63600s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63700s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63800s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 63900s 993 0 0 0 0 0 935s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64000s 993 0 0 0 0 0 936s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64100s 993 0 0 0 0 0 936s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64200s 993 0 0 0 0 0 936s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64300s 993 0 0 0 0 0 936s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64400s 992 1 0 0 0 0 936s 142s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64500s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64600s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64700s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64800s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 64900s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65000s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65100s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65200s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65300s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65400s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65500s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65600s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65700s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65800s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 65900s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66000s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66100s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66200s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66300s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66400s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66500s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66600s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66700s 992 0 0 0 0 0 936s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66800s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 66900s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67000s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67100s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67200s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67300s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67400s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67500s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67600s 992 0 0 0 0 0 937s 141s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67700s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67800s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 67900s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68000s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68100s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68200s 992 1 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68300s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68400s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68500s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68600s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68700s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68800s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 68900s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69000s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69100s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69200s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69300s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69400s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69500s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69600s 992 0 0 0 0 0 937s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69700s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69800s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 69900s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70000s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70100s 992 1 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70200s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70300s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70400s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70500s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70600s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70700s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70800s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 70900s 992 0 0 0 0 0 938s 140s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71000s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71100s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71200s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71300s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71400s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71500s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71600s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71700s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71800s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 71900s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72000s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72100s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72200s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72300s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72400s 992 0 0 0 0 0 938s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72500s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72600s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72700s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72800s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 72900s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73000s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73100s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73200s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73300s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73400s 992 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73500s 991 1 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73600s 991 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73700s 991 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73800s 991 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 73900s 989 2 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74000s 989 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74100s 989 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74200s 989 0 0 0 0 0 939s 139s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74300s 988 1 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74400s 988 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74500s 988 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74600s 988 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74700s 987 1 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74800s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 74900s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75000s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75100s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75200s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75300s 987 0 0 0 0 0 939s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75400s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75500s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75600s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75700s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75800s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 75900s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76000s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76100s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76200s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76300s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76400s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76500s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76600s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76700s 987 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76800s 986 1 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 76900s 986 1 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77000s 986 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77100s 986 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77200s 986 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77300s 986 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77400s 986 0 0 0 0 0 940s 138s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77500s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77600s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77700s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77800s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 77900s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78000s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78100s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78200s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78300s 986 0 0 0 0 0 940s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78400s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78500s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78600s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78700s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78800s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 78900s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79000s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79100s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79200s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79300s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79400s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79500s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79600s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79700s 986 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79800s 985 1 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 79900s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80000s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80100s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80200s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80300s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80400s 985 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80500s 984 2 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80600s 984 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80700s 984 0 0 0 0 0 941s 137s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80800s 984 0 0 0 0 0 941s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 80900s 984 0 0 0 0 0 941s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81000s 984 0 0 0 0 0 941s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81100s 984 0 0 0 0 0 941s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81200s 984 0 0 0 0 0 941s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81300s 983 1 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81400s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81500s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81600s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81700s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81800s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 81900s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82000s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82100s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82200s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82300s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82400s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82500s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82600s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82700s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82800s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 82900s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83000s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83100s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83200s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83300s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83400s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83500s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83600s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83700s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83800s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 83900s 983 0 0 0 0 0 942s 136s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84000s 983 0 0 0 0 0 942s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84100s 983 0 0 0 0 0 942s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84200s 983 0 0 0 0 0 942s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84300s 983 0 0 0 0 0 942s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84400s 983 0 0 0 0 0 942s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84500s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84600s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84700s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84800s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 84900s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85000s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85100s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85200s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85300s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85400s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85500s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85600s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85700s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85800s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 85900s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86000s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86100s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86200s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86300s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86400s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86500s 983 1 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86600s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86700s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86800s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 86900s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87000s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87100s 983 0 0 0 0 0 943s 135s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87200s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87300s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87400s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87500s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87600s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87700s 983 0 0 0 0 0 943s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87800s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 87900s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88000s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88100s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88200s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88300s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88400s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88500s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88600s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88700s 983 1 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88800s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 88900s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89000s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89100s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89200s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89300s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89400s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89500s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89600s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89700s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89800s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 89900s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90000s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90100s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90200s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90300s 983 0 0 0 0 0 944s 134s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90400s 983 0 0 0 0 0 944s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90500s 983 0 0 0 0 0 944s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90600s 983 0 0 0 0 0 944s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90700s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90800s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 90900s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91000s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91100s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91200s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91300s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91400s 983 1 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91500s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91600s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91700s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91800s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 91900s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92000s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92100s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92200s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92300s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92400s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92500s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92600s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92700s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92800s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 92900s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93000s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93100s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93200s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93300s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93400s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93500s 983 0 0 0 0 0 945s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93600s 983 0 0 0 0 0 946s 133s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93700s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93800s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 93900s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94000s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94100s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94200s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94300s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94400s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94500s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94600s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94700s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94800s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 94900s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95000s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95100s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95200s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95300s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95400s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95500s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95600s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95700s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95800s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 95900s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96000s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96100s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96200s 983 1 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96300s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96400s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96500s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96600s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96700s 983 0 0 0 0 0 946s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96800s 983 0 0 0 0 0 947s 132s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 96900s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97000s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97100s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97200s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97300s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97400s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97500s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97600s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97700s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97800s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 97900s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98000s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98100s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98200s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98300s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98400s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98500s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98600s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98700s 983 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98800s 982 1 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 98900s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99000s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99100s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99200s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99300s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99400s 982 1 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99500s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99600s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99700s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99800s 982 2 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 99900s 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1667m 982 0 0 0 0 0 947s 131s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1668m 982 0 0 0 0 0 947s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1670m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1672m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1673m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1675m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1677m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1678m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1680m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1682m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1683m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1685m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1687m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1688m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1690m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1692m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1693m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1695m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1697m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1698m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1700m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1702m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1703m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1705m 982 1 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1707m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1708m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1710m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1712m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1713m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1715m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1717m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1718m 982 0 0 0 0 0 948s 130s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1720m 982 0 0 0 0 0 948s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1722m 982 0 0 0 0 0 948s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1723m 982 0 0 0 0 0 948s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1725m 982 0 0 0 0 0 948s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1727m 982 0 0 0 0 0 948s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1728m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1730m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1732m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1733m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1735m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1737m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1738m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1740m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1742m 982 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1743m 983 1 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1745m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1747m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1748m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1750m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1752m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1753m 983 1 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1755m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1757m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1758m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1760m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1762m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1763m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1765m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1767m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1768m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1770m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1772m 983 0 0 0 0 0 949s 129s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1773m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1775m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1777m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1778m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1780m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1782m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1783m 983 0 0 0 0 0 949s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1785m 983 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1787m 983 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1788m 983 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1790m 983 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1792m 983 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1793m 982 1 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1795m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1797m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1798m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1800m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1802m 982 1 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1803m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1805m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1807m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1808m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1810m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1812m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1813m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1815m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1817m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1818m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1820m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1822m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1823m 982 1 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1825m 982 0 0 0 0 0 950s 128s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1827m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1828m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1830m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1832m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1833m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1835m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1837m 982 0 0 0 0 0 950s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1838m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1840m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1842m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1843m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1845m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1847m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1848m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1850m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1852m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1853m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1855m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1857m 982 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1858m 981 1 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1860m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1862m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1863m 981 1 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1865m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1867m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1868m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1870m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1872m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1873m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1875m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1877m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1878m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1880m 981 0 0 0 0 0 951s 127s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1882m 981 0 0 0 0 0 951s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1883m 981 0 0 0 0 0 951s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1885m 981 0 0 0 0 0 951s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1887m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1888m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1890m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1892m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1893m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1895m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1897m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1898m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1900m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1902m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1903m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1905m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1907m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1908m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1910m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1912m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1913m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1915m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1917m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1918m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1920m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1922m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1923m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1925m 981 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1927m 980 1 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1928m 980 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1930m 980 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1932m 980 0 0 0 0 0 952s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1933m 980 0 0 0 0 0 953s 126s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1935m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1937m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1938m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1940m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1942m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1943m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1945m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1947m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1948m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1950m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1952m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1953m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1955m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1957m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1958m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1960m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1962m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1963m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1965m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1967m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1968m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1970m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1972m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1973m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1975m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1977m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1978m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1980m 980 0 0 0 0 0 953s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1982m 980 0 0 0 0 0 954s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1983m 980 0 0 0 0 0 954s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1985m 980 0 0 0 0 0 954s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1987m 980 0 0 0 0 0 954s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1988m 980 0 0 0 0 0 954s 125s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1990m 980 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1992m 980 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1993m 980 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1995m 979 1 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1997m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 1998m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2000m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2002m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2003m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2005m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2007m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2008m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2010m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2012m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2013m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2015m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2017m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2018m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2020m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2022m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2023m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2025m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2027m 979 0 0 0 0 0 954s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2028m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2030m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2032m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2033m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2035m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2037m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2038m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2040m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2042m 979 0 0 0 0 0 955s 124s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2043m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2045m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2047m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2048m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2050m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2052m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2053m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2055m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2057m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2058m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2060m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2062m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2063m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2065m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2067m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2068m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2070m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2072m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2073m 979 0 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2075m 979 1 0 0 0 0 955s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2077m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2078m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2080m 979 1 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2082m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2083m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2085m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2087m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2088m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2090m 979 1 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2092m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2093m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2095m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2097m 979 0 0 0 0 0 956s 123s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2098m 979 1 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2100m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2102m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2103m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2105m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2107m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2108m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2110m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2112m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2113m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2115m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2117m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2118m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2120m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2122m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2123m 979 0 0 0 0 0 956s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2125m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2127m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2128m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2130m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2132m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2133m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2135m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2137m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2138m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2140m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2142m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2143m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2145m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2147m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2148m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2150m 979 0 0 0 0 0 957s 122s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2152m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2153m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2155m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2157m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2158m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2160m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2162m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2163m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2165m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2167m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2168m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2170m 979 0 0 0 0 0 957s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2172m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2173m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2175m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2177m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2178m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2180m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2182m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2183m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2185m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2187m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2188m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2190m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2192m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2193m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2195m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2197m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2198m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2200m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2202m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2203m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2205m 979 0 0 0 0 0 958s 121s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2207m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2208m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2210m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2212m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2213m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2215m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2217m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2218m 979 0 0 0 0 0 958s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2220m 979 1 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2222m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2223m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2225m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2227m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2228m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2230m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2232m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2233m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2235m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2237m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2238m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2240m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2242m 979 2 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2243m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2245m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2247m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2248m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2250m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2252m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2253m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2255m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2257m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2258m 979 0 0 0 0 0 959s 120s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2260m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2262m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2263m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2265m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2267m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2268m 979 0 0 0 0 0 959s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2270m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2272m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2273m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2275m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2277m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2278m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2280m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2282m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2283m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2285m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2287m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2288m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2290m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2292m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2293m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2295m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2297m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2298m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2300m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2302m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2303m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2305m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2307m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2308m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2310m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2312m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2313m 979 0 0 0 0 0 960s 119s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2315m 979 0 0 0 0 0 960s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2317m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2318m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2320m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2322m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2323m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2325m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2327m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2328m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2330m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2332m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2333m 979 1 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2335m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2337m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2338m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2340m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2342m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2343m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2345m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2347m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2348m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2350m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2352m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2353m 978 1 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2355m 978 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2357m 978 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2358m 978 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2360m 979 1 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2362m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2363m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2365m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2367m 979 0 0 0 0 0 961s 118s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2368m 979 0 0 0 0 0 961s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2370m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2372m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2373m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2375m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2377m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2378m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2380m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2382m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2383m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2385m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2387m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2388m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2390m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2392m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2393m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2395m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2397m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2398m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2400m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2402m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2403m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2405m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2407m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2408m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2410m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2412m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2413m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2415m 979 0 0 0 0 0 962s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2417m 979 0 0 0 0 0 963s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2418m 979 0 0 0 0 0 963s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2420m 979 0 0 0 0 0 963s 117s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2422m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2423m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2425m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2427m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2428m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2430m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2432m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2433m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2435m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2437m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2438m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2440m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2442m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2443m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2445m 979 1 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2447m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2448m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2450m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2452m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2453m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2455m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2457m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2458m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2460m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2462m 979 0 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2463m 979 1 0 0 0 0 963s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2465m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2467m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2468m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2470m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2472m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2473m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2475m 979 0 0 0 0 0 964s 116s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2477m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2478m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2480m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2482m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2483m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2485m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2487m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2488m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2490m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2492m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2493m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2495m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2497m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2498m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2500m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2502m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2503m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2505m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2507m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2508m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2510m 979 0 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2512m 978 1 0 0 0 0 964s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2513m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2515m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2517m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2518m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2520m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2522m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2523m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2525m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2527m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2528m 978 0 0 0 0 0 965s 115s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2530m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2532m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2533m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2535m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2537m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2538m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2540m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2542m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2543m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2545m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2547m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2548m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2550m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2552m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2553m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2555m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2557m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2558m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2560m 978 0 0 0 0 0 965s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2562m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2563m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2565m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2567m 978 2 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2568m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2570m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2572m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2573m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2575m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2577m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2578m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2580m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2582m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2583m 978 0 0 0 0 0 966s 114s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2585m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2587m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2588m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2590m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2592m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2593m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2595m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2597m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2598m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2600m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2602m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2603m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2605m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2607m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2608m 978 0 0 0 0 0 966s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2610m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2612m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2613m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2615m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2617m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2618m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2620m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2622m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2623m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2625m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2627m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2628m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2630m 978 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2632m 977 1 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2633m 977 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2635m 977 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2637m 977 0 0 0 0 0 967s 113s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2638m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2640m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2642m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2643m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2645m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2647m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2648m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2650m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2652m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2653m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2655m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2657m 977 0 0 0 0 0 967s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2658m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2660m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2662m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2663m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2665m 977 1 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2667m 977 1 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2668m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2670m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2672m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2673m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2675m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2677m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2678m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2680m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2682m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2683m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2685m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2687m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2688m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2690m 977 0 0 0 0 0 968s 112s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2692m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2693m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2695m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2697m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2698m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2700m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2702m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2703m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2705m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2707m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2708m 977 0 0 0 0 0 968s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2710m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2712m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2713m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2715m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2717m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2718m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2720m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2722m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2723m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2725m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2727m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2728m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2730m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2732m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2733m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2735m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2737m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2738m 977 1 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2740m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2742m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2743m 977 0 0 0 0 0 969s 111s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2745m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2747m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2748m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2750m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2752m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2753m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2755m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2757m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2758m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2760m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2762m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2763m 977 0 0 0 0 0 969s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2765m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2767m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2768m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2770m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2772m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2773m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2775m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2777m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2778m 977 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2780m 976 1 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2782m 976 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2783m 976 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2785m 976 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2787m 976 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2788m 976 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2790m 975 1 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2792m 975 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2793m 975 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2795m 975 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2797m 975 0 0 0 0 0 970s 110s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2798m 975 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2800m 975 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2802m 975 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2803m 975 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2805m 975 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2807m 974 1 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2808m 974 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2810m 974 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2812m 974 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2813m 974 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2815m 974 0 0 0 0 0 970s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2817m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2818m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2820m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2822m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2823m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2825m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2827m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2828m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2830m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2832m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2833m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2835m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2837m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2838m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2840m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2842m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2843m 974 1 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2845m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2847m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2848m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2850m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2852m 974 0 0 0 0 0 971s 109s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2853m 974 0 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2855m 973 1 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2857m 973 1 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2858m 973 0 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2860m 973 0 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2862m 973 0 0 0 0 0 971s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2863m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2865m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2867m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2868m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2870m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2872m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2873m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2875m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2877m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2878m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 18 2880m 973 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 0s 1038 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 100s 1038 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 200s 1038 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 300s 1039 1 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 400s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 500s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 600s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 700s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 800s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 900s 1039 1 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1000s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1100s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1200s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1300s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1400s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1500s 1039 0 0 0 0 0 972s 108s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1600s 1039 0 0 0 0 0 972s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1700s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1800s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1900s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2000s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2100s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2200s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2300s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2400s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2500s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2600s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2700s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2800s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2900s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3000s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3100s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3200s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3300s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3400s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3500s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3600s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3700s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3800s 1039 1 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 3900s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4000s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4100s 1039 1 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4200s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4300s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4400s 1039 0 0 0 0 0 973s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4500s 1039 0 0 0 0 0 974s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4600s 1039 0 0 0 0 0 974s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4700s 1039 0 0 0 0 0 974s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4800s 1039 0 0 0 0 0 974s 107s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 4900s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5000s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5100s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5200s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5300s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5400s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5500s 1039 1 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5600s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5700s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5800s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 5900s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6000s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6100s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6200s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6300s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6400s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6500s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6600s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6700s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6800s 1039 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 6900s 1038 1 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7000s 1038 1 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7100s 1038 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7200s 1038 0 0 0 0 0 974s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7300s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7400s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7500s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7600s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7700s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7800s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 7900s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8000s 1038 0 0 0 0 0 975s 106s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8100s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8200s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8300s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8400s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8500s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8600s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8700s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8800s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 8900s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9000s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9100s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9200s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9300s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9400s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9500s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9600s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9700s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9800s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 9900s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10000s 1038 0 0 0 0 0 975s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10100s 1038 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10200s 1037 1 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10300s 1037 1 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10400s 1037 1 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10500s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10600s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10700s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10800s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 10900s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11000s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11100s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11200s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11300s 1037 0 0 0 0 0 976s 105s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11400s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11500s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11600s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11700s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11800s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 11900s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12000s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12100s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12200s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12300s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12400s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12500s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12600s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12700s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12800s 1037 0 0 0 0 0 976s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 12900s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13000s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13100s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13200s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13300s 1037 1 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13400s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13500s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13600s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13700s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13800s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 13900s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14000s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14100s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14200s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14300s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14400s 1037 0 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14500s 1038 1 0 0 0 0 977s 104s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14600s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14700s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14800s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 14900s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15000s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15100s 1038 2 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15200s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15300s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15400s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15500s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15600s 1038 0 0 0 0 0 977s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15700s 1038 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15800s 1038 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 15900s 1038 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16000s 1037 1 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16100s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16200s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16300s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16400s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16500s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16600s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16700s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16800s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 16900s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17000s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17100s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17200s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17300s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17400s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17500s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17600s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17700s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17800s 1037 0 0 0 0 0 978s 103s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 17900s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18000s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18100s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18200s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18300s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18400s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18500s 1037 0 0 0 0 0 978s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18600s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18700s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18800s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 18900s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19000s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19100s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19200s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19300s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19400s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19500s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19600s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19700s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19800s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 19900s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20000s 1037 1 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20100s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20200s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20300s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20400s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20500s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20600s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20700s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20800s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 20900s 1037 0 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21000s 1037 1 0 0 0 0 979s 102s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21100s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21200s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21300s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21400s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21500s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21600s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21700s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21800s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 21900s 1037 0 0 0 0 0 979s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22000s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22100s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22200s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22300s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22400s 1037 1 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22500s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22600s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22700s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22800s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 22900s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23000s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23100s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23200s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23300s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23400s 1037 1 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23500s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23600s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23700s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23800s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 23900s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24000s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24100s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24200s 1037 0 0 0 0 0 980s 101s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24300s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24400s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24500s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24600s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24700s 1037 1 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24800s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 24900s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25000s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25100s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25200s 1037 0 0 0 0 0 980s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25300s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25400s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25500s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25600s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25700s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25800s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 25900s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26000s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26100s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26200s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26300s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26400s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26500s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26600s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26700s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26800s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 26900s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27000s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27100s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27200s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27300s 1037 0 0 0 0 0 981s 100s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27400s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27500s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27600s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27700s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27800s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 27900s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28000s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28100s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28200s 1037 1 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28300s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28400s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28500s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28600s 1037 0 0 0 0 0 981s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28700s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28800s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 28900s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29000s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29100s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29200s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29300s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29400s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29500s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29600s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29700s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29800s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 29900s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30000s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30100s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30200s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30300s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30400s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30500s 1037 0 0 0 0 0 982s 99s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30600s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30700s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30800s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 30900s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31000s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31100s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31200s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31300s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31400s 1037 1 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31500s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31600s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31700s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31800s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 31900s 1037 0 0 0 0 0 982s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32000s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32100s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32200s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32300s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32400s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32500s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32600s 1037 1 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32700s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32800s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 32900s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33000s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33100s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33200s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33300s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33400s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33500s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33600s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33700s 1037 0 0 0 0 0 983s 98s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33800s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 33900s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34000s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34100s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34200s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34300s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34400s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34500s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34600s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34700s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34800s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 34900s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35000s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35100s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35200s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35300s 1037 0 0 0 0 0 983s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35400s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35500s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35600s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35700s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35800s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 35900s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36000s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36100s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36200s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36300s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36400s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36500s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36600s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36700s 1037 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36800s 1036 1 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 36900s 1036 0 0 0 0 0 984s 97s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37000s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37100s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37200s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37300s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37400s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37500s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37600s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37700s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37800s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 37900s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38000s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38100s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38200s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38300s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38400s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38500s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38600s 1036 0 0 0 0 0 984s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38700s 1036 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38800s 1036 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 38900s 1036 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39000s 1035 1 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39100s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39200s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39300s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39400s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39500s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39600s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39700s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39800s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 39900s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40000s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40100s 1035 0 0 0 0 0 985s 96s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40200s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40300s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40400s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40500s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40600s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40700s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40800s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 40900s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41000s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41100s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41200s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41300s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41400s 1035 0 0 0 0 0 985s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41500s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41600s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41700s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41800s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 41900s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42000s 1035 1 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42100s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42200s 1035 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42300s 1034 1 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42400s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42500s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42600s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42700s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42800s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 42900s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43000s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43100s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43200s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43300s 1034 0 0 0 0 0 986s 95s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43400s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43500s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43600s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43700s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43800s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 43900s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44000s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44100s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44200s 1034 0 0 0 0 0 986s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44300s 1034 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44400s 1034 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44500s 1034 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44600s 1033 1 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44700s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44800s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 44900s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45000s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45100s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45200s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45300s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45400s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45500s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45600s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45700s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45800s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 45900s 1033 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46000s 1032 1 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46100s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46200s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46300s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46400s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46500s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46600s 1032 0 0 0 0 0 987s 94s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46700s 1032 0 0 0 0 0 987s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46800s 1032 0 0 0 0 0 987s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 46900s 1031 1 0 0 0 0 987s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47000s 1031 0 0 0 0 0 987s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47100s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47200s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47300s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47400s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47500s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47600s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47700s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47800s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 47900s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48000s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48100s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48200s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48300s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48400s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48500s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48600s 1030 1 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48700s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48800s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 48900s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49000s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49100s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49200s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49300s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49400s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49500s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49600s 1030 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49700s 1031 1 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49800s 1031 0 0 0 0 0 988s 93s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 49900s 1031 0 0 0 0 0 988s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50000s 1031 0 0 0 0 0 988s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50100s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50200s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50300s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50400s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50500s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50600s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50700s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50800s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 50900s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51000s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51100s 1031 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51200s 1030 1 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51300s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51400s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51500s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51600s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51700s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51800s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 51900s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52000s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52100s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52200s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52300s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52400s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52500s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52600s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52700s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52800s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 52900s 1030 0 0 0 0 0 989s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53000s 1030 0 0 0 0 0 990s 92s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53100s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53200s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53300s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53400s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53500s 1030 1 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53600s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53700s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53800s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 53900s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54000s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54100s 1030 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54200s 1031 1 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54300s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54400s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54500s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54600s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54700s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54800s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 54900s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55000s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55100s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55200s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55300s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55400s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55500s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55600s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55700s 1031 0 0 0 0 0 990s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55800s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 55900s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56000s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56100s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56200s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56300s 1031 0 0 0 0 0 991s 91s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56400s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56500s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56600s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56700s 1031 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56800s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 56900s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57000s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57100s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57200s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57300s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57400s 1031 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57500s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57600s 1031 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57700s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57800s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 57900s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58000s 1031 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58100s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58200s 1031 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58300s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58400s 1031 0 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58500s 1032 1 0 0 0 0 991s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58600s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58700s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58800s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 58900s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59000s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59100s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59200s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59300s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59400s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59500s 1032 0 0 0 0 0 992s 90s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59600s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59700s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59800s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 59900s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60000s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60100s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60200s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60300s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60400s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60500s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60600s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60700s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60800s 1032 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 60900s 1033 1 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61000s 1033 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61100s 1033 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61200s 1033 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61300s 1033 0 0 0 0 0 992s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61400s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61500s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61600s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61700s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61800s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 61900s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62000s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62100s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62200s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62300s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62400s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62500s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62600s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62700s 1033 0 0 0 0 0 993s 89s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62800s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 62900s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63000s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63100s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63200s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63300s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63400s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63500s 1033 1 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63600s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63700s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63800s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 63900s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64000s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64100s 1033 0 0 0 0 0 993s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64200s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64300s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64400s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64500s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64600s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64700s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64800s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 64900s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65000s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65100s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65200s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65300s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65400s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65500s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65600s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65700s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65800s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 65900s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66000s 1033 0 0 0 0 0 994s 88s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66100s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66200s 1033 1 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66300s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66400s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66500s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66600s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66700s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66800s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 66900s 1033 0 0 0 0 0 994s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67000s 1033 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67100s 1033 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67200s 1033 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67300s 1033 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67400s 1033 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67500s 1034 1 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67600s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67700s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67800s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 67900s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68000s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68100s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68200s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68300s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68400s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68500s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68600s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68700s 1034 1 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68800s 1034 1 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 68900s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69000s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69100s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69200s 1034 0 0 0 0 0 995s 87s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69300s 1034 0 0 0 0 0 995s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69400s 1034 0 0 0 0 0 995s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69500s 1034 0 0 0 0 0 995s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69600s 1034 0 0 0 0 0 995s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69700s 1034 2 0 0 0 0 995s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69800s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 69900s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70000s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70100s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70200s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70300s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70400s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70500s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70600s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70700s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70800s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 70900s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71000s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71100s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71200s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71300s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71400s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71500s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71600s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71700s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71800s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 71900s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72000s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72100s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72200s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72300s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72400s 1034 0 0 0 0 0 996s 86s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72500s 1034 0 0 0 0 0 996s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72600s 1034 1 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72700s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72800s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 72900s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73000s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73100s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73200s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73300s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73400s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73500s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73600s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73700s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73800s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 73900s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74000s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74100s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74200s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74300s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74400s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74500s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74600s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74700s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74800s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 74900s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75000s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75100s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75200s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75300s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75400s 1034 0 0 0 0 0 997s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75500s 1034 0 0 0 0 0 998s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75600s 1033 1 0 0 0 0 998s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75700s 1033 0 0 0 0 0 998s 85s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75800s 1033 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 75900s 1032 1 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76000s 1032 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76100s 1032 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76200s 1032 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76300s 1032 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76400s 1031 2 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76500s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76600s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76700s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76800s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 76900s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77000s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77100s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77200s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77300s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77400s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77500s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77600s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77700s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77800s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 77900s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78000s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78100s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78200s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78300s 1031 0 0 0 0 0 998s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78400s 1031 0 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78500s 1031 0 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78600s 1031 0 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78700s 1031 0 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78800s 1030 1 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 78900s 1030 0 0 0 0 0 999s 84s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79000s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79100s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79200s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79300s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79400s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79500s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79600s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79700s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79800s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 79900s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80000s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80100s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80200s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80300s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80400s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80500s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80600s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80700s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80800s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 80900s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81000s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81100s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81200s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81300s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81400s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81500s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81600s 1030 0 0 0 0 0 999s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81700s 1030 0 0 0 0 0 1000s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81800s 1030 0 0 0 0 0 1000s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 81900s 1030 0 0 0 0 0 1000s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82000s 1030 0 0 0 0 0 1000s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82100s 1030 0 0 0 0 0 1000s 83s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82200s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82300s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82400s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82500s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82600s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82700s 1030 1 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82800s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 82900s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83000s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83100s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83200s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83300s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83400s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83500s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83600s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83700s 1030 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83800s 1029 1 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 83900s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84000s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84100s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84200s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84300s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84400s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84500s 1029 0 0 0 0 0 1000s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84600s 1029 1 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84700s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84800s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 84900s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85000s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85100s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85200s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85300s 1029 0 0 0 0 0 1001s 82s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85400s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85500s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85600s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85700s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85800s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 85900s 1029 1 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86000s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86100s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86200s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86300s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86400s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86500s 1029 1 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86600s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86700s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86800s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 86900s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87000s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87100s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87200s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87300s 1029 0 0 0 0 0 1001s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87400s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87500s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87600s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87700s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87800s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 87900s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88000s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88100s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88200s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88300s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88400s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88500s 1029 0 0 0 0 0 1002s 81s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88600s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88700s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88800s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 88900s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89000s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89100s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89200s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89300s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89400s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89500s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89600s 1029 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89700s 1028 1 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89800s 1028 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 89900s 1028 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90000s 1028 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90100s 1028 0 0 0 0 0 1002s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90200s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90300s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90400s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90500s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90600s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90700s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90800s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 90900s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91000s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91100s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91200s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91300s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91400s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91500s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91600s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91700s 1028 0 0 0 0 0 1003s 80s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91800s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 91900s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92000s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92100s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92200s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92300s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92400s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92500s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92600s 1028 1 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92700s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92800s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 92900s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93000s 1028 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93100s 1027 1 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93200s 1027 0 0 0 0 0 1003s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93300s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93400s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93500s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93600s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93700s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93800s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 93900s 1027 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94000s 1026 1 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94100s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94200s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94300s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94400s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94500s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94600s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94700s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94800s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 94900s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95000s 1026 0 0 0 0 0 1004s 79s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95100s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95200s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95300s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95400s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95500s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95600s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95700s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95800s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 95900s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96000s 1026 0 0 0 0 0 1004s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96100s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96200s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96300s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96400s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96500s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96600s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96700s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96800s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 96900s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97000s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97100s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97200s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97300s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97400s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97500s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97600s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97700s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97800s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 97900s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98000s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98100s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98200s 1026 0 0 0 0 0 1005s 78s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98300s 1026 0 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98400s 1026 0 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98500s 1026 1 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98600s 1026 0 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98700s 1026 0 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98800s 1026 0 0 0 0 0 1005s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 98900s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99000s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99100s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99200s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99300s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99400s 1026 1 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99500s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99600s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99700s 1026 1 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99800s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 99900s 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1667m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1668m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1670m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1672m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1673m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1675m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1677m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1678m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1680m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1682m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1683m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1685m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1687m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1688m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1690m 1026 0 0 0 0 0 1006s 77s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1692m 1026 0 0 0 0 0 1006s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1693m 1026 0 0 0 0 0 1006s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1695m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1697m 1026 1 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1698m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1700m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1702m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1703m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1705m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1707m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1708m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1710m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1712m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1713m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1715m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1717m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1718m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1720m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1722m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1723m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1725m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1727m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1728m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1730m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1732m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1733m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1735m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1737m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1738m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1740m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1742m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1743m 1026 0 0 0 0 0 1007s 76s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1745m 1026 0 0 0 0 0 1007s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1747m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1748m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1750m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1752m 1026 1 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1753m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1755m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1757m 1026 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1758m 1025 1 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1760m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1762m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1763m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1765m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1767m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1768m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1770m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1772m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1773m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1775m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1777m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1778m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1780m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1782m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1783m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1785m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1787m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1788m 1025 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1790m 1024 1 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1792m 1024 0 0 0 0 0 1008s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1793m 1024 0 0 0 0 0 1009s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1795m 1024 0 0 0 0 0 1009s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1797m 1024 0 0 0 0 0 1009s 75s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1798m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1800m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1802m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1803m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1805m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1807m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1808m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1810m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1812m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1813m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1815m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1817m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1818m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1820m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1822m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1823m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1825m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1827m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1828m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1830m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1832m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1833m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1835m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1837m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1838m 1024 0 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1840m 1023 1 0 0 0 0 1009s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1842m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1843m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1845m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1847m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1848m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1850m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1852m 1023 0 0 0 0 0 1010s 74s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1853m 1023 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1855m 1022 1 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1857m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1858m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1860m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1862m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1863m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1865m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1867m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1868m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1870m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1872m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1873m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1875m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1877m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1878m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1880m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1882m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1883m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1885m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1887m 1022 0 0 0 0 0 1010s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1888m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1890m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1892m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1893m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1895m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1897m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1898m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1900m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1902m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1903m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1905m 1022 0 0 0 0 0 1011s 73s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1907m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1908m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1910m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1912m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1913m 1022 1 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1915m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1917m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1918m 1022 1 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1920m 1022 1 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1922m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1923m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1925m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1927m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1928m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1930m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1932m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1933m 1022 0 0 0 0 0 1011s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1935m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1937m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1938m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1940m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1942m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1943m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1945m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1947m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1948m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1950m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1952m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1953m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1955m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1957m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1958m 1022 0 0 0 0 0 1012s 72s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1960m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1962m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1963m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1965m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1967m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1968m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1970m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1972m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1973m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1975m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1977m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1978m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1980m 1022 0 0 0 0 0 1012s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1982m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1983m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1985m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1987m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1988m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1990m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1992m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1993m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1995m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1997m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 1998m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2000m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2002m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2003m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2005m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2007m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2008m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2010m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2012m 1022 0 0 0 0 0 1013s 71s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2013m 1022 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2015m 1022 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2017m 1022 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2018m 1022 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2020m 1021 1 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2022m 1021 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2023m 1021 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2025m 1021 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2027m 1021 0 0 0 0 0 1013s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2028m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2030m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2032m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2033m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2035m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2037m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2038m 1021 1 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2040m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2042m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2043m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2045m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2047m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2048m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2050m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2052m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2053m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2055m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2057m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2058m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2060m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2062m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2063m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2065m 1021 0 0 0 0 0 1014s 70s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2067m 1021 0 0 0 0 0 1014s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2068m 1021 0 0 0 0 0 1014s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2070m 1021 0 0 0 0 0 1014s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2072m 1021 0 0 0 0 0 1014s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2073m 1021 0 0 0 0 0 1014s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2075m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2077m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2078m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2080m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2082m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2083m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2085m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2087m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2088m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2090m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2092m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2093m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2095m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2097m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2098m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2100m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2102m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2103m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2105m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2107m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2108m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2110m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2112m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2113m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2115m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2117m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2118m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2120m 1021 0 0 0 0 0 1015s 69s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2122m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2123m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2125m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2127m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2128m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2130m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2132m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2133m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2135m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2137m 1021 1 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2138m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2140m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2142m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2143m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2145m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2147m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2148m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2150m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2152m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2153m 1021 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2155m 1020 1 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2157m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2158m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2160m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2162m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2163m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2165m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2167m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2168m 1020 0 0 0 0 0 1016s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2170m 1020 0 0 0 0 0 1017s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2172m 1020 0 0 0 0 0 1017s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2173m 1020 0 0 0 0 0 1017s 68s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2175m 1020 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2177m 1019 1 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2178m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2180m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2182m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2183m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2185m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2187m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2188m 1019 1 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2190m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2192m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2193m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2195m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2197m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2198m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2200m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2202m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2203m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2205m 1019 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2207m 1018 1 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2208m 1018 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2210m 1018 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2212m 1018 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2213m 1018 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2215m 1018 0 0 0 0 0 1017s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2217m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2218m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2220m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2222m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2223m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2225m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2227m 1018 0 0 0 0 0 1018s 67s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2228m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2230m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2232m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2233m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2235m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2237m 1018 1 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2238m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2240m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2242m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2243m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2245m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2247m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2248m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2250m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2252m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2253m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2255m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2257m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2258m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2260m 1018 0 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2262m 1018 1 0 0 0 0 1018s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2263m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2265m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2267m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2268m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2270m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2272m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2273m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2275m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2277m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2278m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2280m 1018 0 0 0 0 0 1019s 66s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2282m 1017 1 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2283m 1017 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2285m 1017 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2287m 1016 1 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2288m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2290m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2292m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2293m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2295m 1016 1 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2297m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2298m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2300m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2302m 1016 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2303m 1015 1 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2305m 1015 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2307m 1015 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2308m 1014 1 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2310m 1014 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2312m 1014 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2313m 1014 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2315m 1014 0 0 0 0 0 1019s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2317m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2318m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2320m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2322m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2323m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2325m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2327m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2328m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2330m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2332m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2333m 1014 0 0 0 0 0 1020s 65s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2335m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2337m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2338m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2340m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2342m 1014 1 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2343m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2345m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2347m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2348m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2350m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2352m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2353m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2355m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2357m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2358m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2360m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2362m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2363m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2365m 1014 0 0 0 0 0 1020s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2367m 1014 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2368m 1014 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2370m 1014 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2372m 1014 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2373m 1013 1 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2375m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2377m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2378m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2380m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2382m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2383m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2385m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2387m 1013 0 0 0 0 0 1021s 64s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2388m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2390m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2392m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2393m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2395m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2397m 1013 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2398m 1012 1 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2400m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2402m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2403m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2405m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2407m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2408m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2410m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2412m 1012 0 0 0 0 0 1021s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2413m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2415m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2417m 1012 1 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2418m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2420m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2422m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2423m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2425m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2427m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2428m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2430m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2432m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2433m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2435m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2437m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2438m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2440m 1012 0 0 0 0 0 1022s 63s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2442m 1011 1 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2443m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2445m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2447m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2448m 1011 1 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2450m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2452m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2453m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2455m 1011 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2457m 1010 1 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2458m 1010 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2460m 1010 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2462m 1010 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2463m 1010 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2465m 1010 1 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2467m 1010 0 0 0 0 0 1022s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2468m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2470m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2472m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2473m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2475m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2477m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2478m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2480m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2482m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2483m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2485m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2487m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2488m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2490m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2492m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2493m 1010 0 0 0 0 0 1023s 62s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2495m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2497m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2498m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2500m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2502m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2503m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2505m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2507m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2508m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2510m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2512m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2513m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2515m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2517m 1010 0 0 0 0 0 1023s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2518m 1010 1 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2520m 1010 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2522m 1010 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2523m 1009 1 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2525m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2527m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2528m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2530m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2532m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2533m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2535m 1009 1 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2537m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2538m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2540m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2542m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2543m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2545m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2547m 1009 0 0 0 0 0 1024s 61s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2548m 1008 1 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2550m 1008 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2552m 1008 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2553m 1008 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2555m 1008 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2557m 1008 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2558m 1009 1 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2560m 1009 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2562m 1009 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2563m 1009 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2565m 1009 0 0 0 0 0 1024s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2567m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2568m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2570m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2572m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2573m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2575m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2577m 1009 1 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2578m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2580m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2582m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2583m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2585m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2587m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2588m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2590m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2592m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2593m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2595m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2597m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2598m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2600m 1009 0 0 0 0 0 1025s 60s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2602m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2603m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2605m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2607m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2608m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2610m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2612m 1009 0 0 0 0 0 1025s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2613m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2615m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2617m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2618m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2620m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2622m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2623m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2625m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2627m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2628m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2630m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2632m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2633m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2635m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2637m 1009 1 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2638m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2640m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2642m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2643m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2645m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2647m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2648m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2650m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2652m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2653m 1009 0 0 0 0 0 1026s 59s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2655m 1009 0 0 0 0 0 1026s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2657m 1009 0 0 0 0 0 1026s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2658m 1009 0 0 0 0 0 1026s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2660m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2662m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2663m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2665m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2667m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2668m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2670m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2672m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2673m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2675m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2677m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2678m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2680m 1009 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2682m 1008 1 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2683m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2685m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2687m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2688m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2690m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2692m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2693m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2695m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2697m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2698m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2700m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2702m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2703m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2705m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2707m 1008 0 0 0 0 0 1027s 58s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2708m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2710m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2712m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2713m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2715m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2717m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2718m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2720m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2722m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2723m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2725m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2727m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2728m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2730m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2732m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2733m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2735m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2737m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2738m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2740m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2742m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2743m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2745m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2747m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2748m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2750m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2752m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2753m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2755m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2757m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2758m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2760m 1008 0 0 0 0 0 1028s 57s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2762m 1008 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2763m 1008 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2765m 1008 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2767m 1008 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2768m 1008 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2770m 1007 1 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2772m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2773m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2775m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2777m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2778m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2780m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2782m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2783m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2785m 1007 1 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2787m 1007 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2788m 1007 1 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2790m 1006 1 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2792m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2793m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2795m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2797m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2798m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2800m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2802m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2803m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2805m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2807m 1006 0 0 0 0 0 1029s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2808m 1006 0 0 0 0 0 1030s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2810m 1006 0 0 0 0 0 1030s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2812m 1006 0 0 0 0 0 1030s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2813m 1006 0 0 0 0 0 1030s 56s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2815m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2817m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2818m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2820m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2822m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2823m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2825m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2827m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2828m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2830m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2832m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2833m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2835m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2837m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2838m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2840m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2842m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2843m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2845m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2847m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2848m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2850m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2852m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2853m 1006 0 0 0 0 0 1030s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2855m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2857m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2858m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2860m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2862m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2863m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2865m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2867m 1006 0 0 0 0 0 1031s 55s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2868m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2870m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2872m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2873m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2875m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2877m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2878m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 19 2880m 1006 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 0s 1020 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 100s 1020 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 200s 1020 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 300s 1020 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 400s 1020 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 500s 1019 1 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 600s 1019 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 700s 1019 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 800s 1019 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 900s 1019 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1000s 1019 0 0 0 0 0 1031s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1100s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1200s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1300s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1400s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1500s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1600s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1700s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1800s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1900s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2000s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2100s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2200s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2300s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2400s 1019 0 0 0 0 0 1032s 54s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2500s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2600s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2700s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2800s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2900s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3000s 1019 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3100s 1018 1 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3200s 1018 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3300s 1018 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3400s 1018 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3500s 1018 0 0 0 0 0 1032s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3600s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3700s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3800s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 3900s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4000s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4100s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4200s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4300s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4400s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4500s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4600s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4700s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4800s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 4900s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5000s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5100s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5200s 1018 1 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5300s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5400s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5500s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5600s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5700s 1018 0 0 0 0 0 1033s 53s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5800s 1018 1 0 0 0 0 1033s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 5900s 1018 0 0 0 0 0 1033s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6000s 1018 0 0 0 0 0 1033s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6100s 1018 0 0 0 0 0 1033s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6200s 1018 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6300s 1018 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6400s 1018 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6500s 1018 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6600s 1017 1 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6700s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6800s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 6900s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7000s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7100s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7200s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7300s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7400s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7500s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7600s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7700s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7800s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 7900s 1017 1 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8000s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8100s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8200s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8300s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8400s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8500s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8600s 1017 0 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8700s 1016 1 0 0 0 0 1034s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8800s 1016 0 0 0 0 0 1035s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 8900s 1016 0 0 0 0 0 1035s 52s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9000s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9100s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9200s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9300s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9400s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9500s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9600s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9700s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9800s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 9900s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10000s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10100s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10200s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10300s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10400s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10500s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10600s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10700s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10800s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 10900s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11000s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11100s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11200s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11300s 1016 0 0 0 0 0 1035s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11400s 1016 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11500s 1016 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11600s 1016 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11700s 1016 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11800s 1015 1 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 11900s 1015 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12000s 1015 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12100s 1015 0 0 0 0 0 1036s 51s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12200s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12300s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12400s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12500s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12600s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12700s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12800s 1015 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 12900s 1014 1 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13000s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13100s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13200s 1014 1 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13300s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13400s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13500s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13600s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13700s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13800s 1014 0 0 0 0 0 1036s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 13900s 1014 1 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14000s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14100s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14200s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14300s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14400s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14500s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14600s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14700s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14800s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 14900s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15000s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15100s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15200s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15300s 1014 0 0 0 0 0 1037s 50s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15400s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15500s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15600s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15700s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15800s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 15900s 1014 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16000s 1013 1 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16100s 1013 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16200s 1013 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16300s 1013 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16400s 1013 0 0 0 0 0 1037s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16500s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16600s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16700s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16800s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 16900s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17000s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17100s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17200s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17300s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17400s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17500s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17600s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17700s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17800s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 17900s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18000s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18100s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18200s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18300s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18400s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18500s 1013 0 0 0 0 0 1038s 49s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18600s 1013 0 0 0 0 0 1038s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18700s 1013 0 0 0 0 0 1038s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18800s 1013 0 0 0 0 0 1038s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 18900s 1013 0 0 0 0 0 1038s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19000s 1013 0 0 0 0 0 1038s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19100s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19200s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19300s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19400s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19500s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19600s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19700s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19800s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 19900s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20000s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20100s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20200s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20300s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20400s 1013 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20500s 1012 1 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20600s 1012 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20700s 1011 1 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20800s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 20900s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21000s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21100s 1011 1 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21200s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21300s 1011 1 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21400s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21500s 1011 0 0 0 0 0 1039s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21600s 1011 0 0 0 0 0 1040s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21700s 1011 0 0 0 0 0 1040s 48s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21800s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 21900s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22000s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22100s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22200s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22300s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22400s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22500s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22600s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22700s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22800s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 22900s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23000s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23100s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23200s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23300s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23400s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23500s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23600s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23700s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23800s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 23900s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24000s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24100s 1011 0 0 0 0 0 1040s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24200s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24300s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24400s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24500s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24600s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24700s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24800s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 24900s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25000s 1011 0 0 0 0 0 1041s 47s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25100s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25200s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25300s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25400s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25500s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25600s 1011 1 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25700s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25800s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 25900s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26000s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26100s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26200s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26300s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26400s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26500s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26600s 1011 0 0 0 0 0 1041s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26700s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26800s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 26900s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27000s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27100s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27200s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27300s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27400s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27500s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27600s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27700s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27800s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 27900s 1011 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28000s 1010 1 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28100s 1010 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28200s 1010 0 0 0 0 0 1042s 46s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28300s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28400s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28500s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28600s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28700s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28800s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 28900s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29000s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29100s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29200s 1010 0 0 0 0 0 1042s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29300s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29400s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29500s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29600s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29700s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29800s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 29900s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30000s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30100s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30200s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30300s 1010 1 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30400s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30500s 1010 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30600s 1009 1 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30700s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30800s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 30900s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31000s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31100s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31200s 1009 1 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31300s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31400s 1009 0 0 0 0 0 1043s 45s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31500s 1008 1 0 0 0 0 1043s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31600s 1008 0 0 0 0 0 1043s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31700s 1008 0 0 0 0 0 1043s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31800s 1008 0 0 0 0 0 1043s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 31900s 1008 1 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32000s 1008 2 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32100s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32200s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32300s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32400s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32500s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32600s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32700s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32800s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 32900s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33000s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33100s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33200s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33300s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33400s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33500s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33600s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33700s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33800s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 33900s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34000s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34100s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34200s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34300s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34400s 1008 0 0 0 0 0 1044s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34500s 1008 0 0 0 0 0 1045s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34600s 1008 0 0 0 0 0 1045s 44s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34700s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34800s 1009 1 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 34900s 1008 1 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35000s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35100s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35200s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35300s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35400s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35500s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35600s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35700s 1008 1 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35800s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 35900s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36000s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36100s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36200s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36300s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36400s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36500s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36600s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36700s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36800s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 36900s 1008 0 0 0 0 0 1045s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37000s 1008 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37100s 1008 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37200s 1008 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37300s 1008 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37400s 1009 1 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37500s 1009 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37600s 1009 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37700s 1009 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37800s 1009 0 0 0 0 0 1046s 43s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 37900s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38000s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38100s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38200s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38300s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38400s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38500s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38600s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38700s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38800s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 38900s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39000s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39100s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39200s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39300s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39400s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39500s 1009 0 0 0 0 0 1046s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39600s 1009 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39700s 1009 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39800s 1009 1 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 39900s 1009 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40000s 1009 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40100s 1009 1 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40200s 1010 1 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40300s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40400s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40500s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40600s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40700s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40800s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 40900s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41000s 1010 0 0 0 0 0 1047s 42s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41100s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41200s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41300s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41400s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41500s 1010 1 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41600s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41700s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41800s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 41900s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42000s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42100s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42200s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42300s 1010 0 0 0 0 0 1047s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42400s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42500s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42600s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42700s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42800s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 42900s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43000s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43100s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43200s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43300s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43400s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43500s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43600s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43700s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43800s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 43900s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44000s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44100s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44200s 1010 0 0 0 0 0 1048s 41s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44300s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44400s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44500s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44600s 1010 1 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44700s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44800s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 44900s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45000s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45100s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45200s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45300s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45400s 1010 0 0 0 0 0 1048s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45500s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45600s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45700s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45800s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 45900s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46000s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46100s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46200s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46300s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46400s 1010 1 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46500s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46600s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46700s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46800s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 46900s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47000s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47100s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47200s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47300s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47400s 1010 0 0 0 0 0 1049s 40s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47500s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47600s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47700s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47800s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 47900s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48000s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48100s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48200s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48300s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48400s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48500s 1010 0 0 0 0 0 1049s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48600s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48700s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48800s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 48900s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49000s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49100s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49200s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49300s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49400s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49500s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49600s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49700s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49800s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 49900s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50000s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50100s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50200s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50300s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50400s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50500s 1010 0 0 0 0 0 1050s 39s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50600s 1010 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50700s 1010 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50800s 1011 1 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 50900s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51000s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51100s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51200s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51300s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51400s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51500s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51600s 1011 0 0 0 0 0 1050s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51700s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51800s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 51900s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52000s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52100s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52200s 1011 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52300s 1010 1 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52400s 1010 1 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52500s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52600s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52700s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52800s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 52900s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53000s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53100s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53200s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53300s 1010 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53400s 1009 1 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53500s 1009 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53600s 1009 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53700s 1009 0 0 0 0 0 1051s 38s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53800s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 53900s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54000s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54100s 1009 1 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54200s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54300s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54400s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54500s 1009 0 0 0 0 0 1051s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54600s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54700s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54800s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 54900s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55000s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55100s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55200s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55300s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55400s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55500s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55600s 1009 1 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55700s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55800s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 55900s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56000s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56100s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56200s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56300s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56400s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56500s 1009 1 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56600s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56700s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56800s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 56900s 1009 0 0 0 0 0 1052s 37s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57000s 1009 0 0 0 0 0 1052s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57100s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57200s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57300s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57400s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57500s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57600s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57700s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57800s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 57900s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58000s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58100s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58200s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58300s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58400s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58500s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58600s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58700s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58800s 1009 1 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 58900s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59000s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59100s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59200s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59300s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59400s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59500s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59600s 1009 0 0 0 0 0 1053s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59700s 1009 0 0 0 0 0 1054s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59800s 1009 0 0 0 0 0 1054s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 59900s 1009 0 0 0 0 0 1054s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60000s 1009 0 0 0 0 0 1054s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60100s 1009 0 0 0 0 0 1054s 36s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60200s 1009 1 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60300s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60400s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60500s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60600s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60700s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60800s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 60900s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61000s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61100s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61200s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61300s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61400s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61500s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61600s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61700s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61800s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 61900s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62000s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62100s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62200s 1009 0 0 0 0 0 1054s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62300s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62400s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62500s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62600s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62700s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62800s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 62900s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63000s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63100s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63200s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63300s 1009 0 0 0 0 0 1055s 35s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63400s 1010 1 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63500s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63600s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63700s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63800s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 63900s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64000s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64100s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64200s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64300s 1010 1 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64400s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64500s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64600s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64700s 1010 0 0 0 0 0 1055s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64800s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 64900s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65000s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65100s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65200s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65300s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65400s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65500s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65600s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65700s 1010 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65800s 1011 1 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 65900s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66000s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66100s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66200s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66300s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66400s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66500s 1011 0 0 0 0 0 1056s 34s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66600s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66700s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66800s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 66900s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67000s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67100s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67200s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67300s 1011 0 0 0 0 0 1056s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67400s 1011 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67500s 1011 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67600s 1011 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67700s 1011 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67800s 1010 1 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 67900s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68000s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68100s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68200s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68300s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68400s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68500s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68600s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68700s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68800s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 68900s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69000s 1010 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69100s 1009 1 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69200s 1009 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69300s 1009 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69400s 1009 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69500s 1009 1 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69600s 1009 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69700s 1009 0 0 0 0 0 1057s 33s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69800s 1009 0 0 0 0 0 1057s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 69900s 1009 0 0 0 0 0 1057s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70000s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70100s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70200s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70300s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70400s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70500s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70600s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70700s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70800s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 70900s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71000s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71100s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71200s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71300s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71400s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71500s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71600s 1009 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71700s 1008 1 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71800s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 71900s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72000s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72100s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72200s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72300s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72400s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72500s 1008 0 0 0 0 0 1058s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72600s 1008 0 0 0 0 0 1059s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72700s 1008 0 0 0 0 0 1059s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72800s 1008 0 0 0 0 0 1059s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 72900s 1008 0 0 0 0 0 1059s 32s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73000s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73100s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73200s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73300s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73400s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73500s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73600s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73700s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73800s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 73900s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74000s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74100s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74200s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74300s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74400s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74500s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74600s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74700s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74800s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 74900s 1008 1 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75000s 1008 0 0 0 0 0 1059s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75100s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75200s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75300s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75400s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75500s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75600s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75700s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75800s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 75900s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76000s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76100s 1008 0 0 0 0 0 1060s 31s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76200s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76300s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76400s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76500s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76600s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76700s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76800s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 76900s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77000s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77100s 1008 1 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77200s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77300s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77400s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77500s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77600s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77700s 1008 0 0 0 0 0 1060s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77800s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 77900s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78000s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78100s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78200s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78300s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78400s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78500s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78600s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78700s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78800s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 78900s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79000s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79100s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79200s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79300s 1008 0 0 0 0 0 1061s 30s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79400s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79500s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79600s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79700s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79800s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 79900s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80000s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80100s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80200s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80300s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80400s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80500s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80600s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80700s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80800s 1008 0 0 0 0 0 1061s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 80900s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81000s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81100s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81200s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81300s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81400s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81500s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81600s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81700s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81800s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 81900s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82000s 1008 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82100s 1009 1 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82200s 1009 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82300s 1009 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82400s 1009 0 0 0 0 0 1062s 29s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82500s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82600s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82700s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82800s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 82900s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83000s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83100s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83200s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83300s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83400s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83500s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83600s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83700s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83800s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 83900s 1009 0 0 0 0 0 1062s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84000s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84100s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84200s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84300s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84400s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84500s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84600s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84700s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84800s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 84900s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85000s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85100s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85200s 1009 1 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85300s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85400s 1009 0 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85500s 1008 1 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85600s 1008 1 0 0 0 0 1063s 28s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85700s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85800s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 85900s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86000s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86100s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86200s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86300s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86400s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86500s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86600s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86700s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86800s 1008 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 86900s 1007 1 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87000s 1007 0 0 0 0 0 1063s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87100s 1007 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87200s 1006 1 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87300s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87400s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87500s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87600s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87700s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87800s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 87900s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88000s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88100s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88200s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88300s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88400s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88500s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88600s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88700s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88800s 1006 0 0 0 0 0 1064s 27s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 88900s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89000s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89100s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89200s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89300s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89400s 1006 1 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89500s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89600s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89700s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89800s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 89900s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90000s 1006 0 0 0 0 0 1064s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90100s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90200s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90300s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90400s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90500s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90600s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90700s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90800s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 90900s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91000s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91100s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91200s 1006 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91300s 1005 1 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91400s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91500s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91600s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91700s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91800s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 91900s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92000s 1005 0 0 0 0 0 1065s 26s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92100s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92200s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92300s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92400s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92500s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92600s 1005 0 0 0 0 0 1065s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92700s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92800s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 92900s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93000s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93100s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93200s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93300s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93400s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93500s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93600s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93700s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93800s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 93900s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94000s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94100s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94200s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94300s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94400s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94500s 1005 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94600s 1004 1 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94700s 1004 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94800s 1004 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 94900s 1004 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95000s 1004 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95100s 1004 0 0 0 0 0 1066s 25s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95200s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95300s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95400s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95500s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95600s 1004 1 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95700s 1004 1 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95800s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 95900s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96000s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96100s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96200s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96300s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96400s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96500s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96600s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96700s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96800s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 96900s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97000s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97100s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97200s 1004 1 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97300s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97400s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97500s 1004 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97600s 1003 1 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97700s 1003 0 0 0 0 0 1067s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97800s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 97900s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98000s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98100s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98200s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98300s 1003 0 0 0 0 0 1068s 24s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98400s 1003 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98500s 1003 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98600s 1002 1 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98700s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98800s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 98900s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99000s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99100s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99200s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99300s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99400s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99500s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99600s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99700s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99800s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 99900s 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1667m 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1668m 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1670m 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1672m 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1673m 1002 0 0 0 0 0 1068s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1675m 1002 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1677m 1001 1 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1678m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1680m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1682m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1683m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1685m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1687m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1688m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1690m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1692m 1001 0 0 0 0 0 1069s 23s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1693m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1695m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1697m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1698m 1001 1 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1700m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1702m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1703m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1705m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1707m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1708m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1710m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1712m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1713m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1715m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1717m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1718m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1720m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1722m 1001 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1723m 1000 1 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1725m 1000 0 0 0 0 0 1069s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1727m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1728m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1730m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1732m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1733m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1735m 1000 1 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1737m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1738m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1740m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1742m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1743m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1745m 1000 0 0 0 0 0 1070s 22s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1747m 1000 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1748m 999 1 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1750m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1752m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1753m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1755m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1757m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1758m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1760m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1762m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1763m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1765m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1767m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1768m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1770m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1772m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1773m 999 0 0 0 0 0 1070s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1775m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1777m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1778m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1780m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1782m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1783m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1785m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1787m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1788m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1790m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1792m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1793m 999 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1795m 998 1 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1797m 998 0 0 0 0 0 1071s 21s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1798m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1800m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1802m 998 1 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1803m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1805m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1807m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1808m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1810m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1812m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1813m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1815m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1817m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1818m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1820m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1822m 998 0 0 0 0 0 1071s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1823m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1825m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1827m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1828m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1830m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1832m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1833m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1835m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1837m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1838m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1840m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1842m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1843m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1845m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1847m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1848m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1850m 998 0 0 0 0 0 1072s 20s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1852m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1853m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1855m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1857m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1858m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1860m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1862m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1863m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1865m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1867m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1868m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1870m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1872m 998 0 0 0 0 0 1072s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1873m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1875m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1877m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1878m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1880m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1882m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1883m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1885m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1887m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1888m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1890m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1892m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1893m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1895m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1897m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1898m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1900m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1902m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1903m 998 0 0 0 0 0 1073s 19s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1905m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1907m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1908m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1910m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1912m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1913m 998 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1915m 997 1 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1917m 997 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1918m 997 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1920m 997 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1922m 997 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1923m 997 0 0 0 0 0 1073s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1925m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1927m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1928m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1930m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1932m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1933m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1935m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1937m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1938m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1940m 997 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1942m 996 1 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1943m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1945m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1947m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1948m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1950m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1952m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1953m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1955m 996 0 0 0 0 0 1074s 18s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1957m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1958m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1960m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1962m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1963m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1965m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1967m 996 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1968m 995 1 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1970m 995 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1972m 995 0 0 0 0 0 1074s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1973m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1975m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1977m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1978m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1980m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1982m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1983m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1985m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1987m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1988m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1990m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1992m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1993m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1995m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1997m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 1998m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2000m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2002m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2003m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2005m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2007m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2008m 995 0 0 0 0 0 1075s 17s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2010m 995 0 0 0 0 0 1075s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2012m 995 0 0 0 0 0 1075s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2013m 995 0 0 0 0 0 1075s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2015m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2017m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2018m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2020m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2022m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2023m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2025m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2027m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2028m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2030m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2032m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2033m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2035m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2037m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2038m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2040m 995 1 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2042m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2043m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2045m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2047m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2048m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2050m 995 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2052m 994 1 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2053m 994 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2055m 994 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2057m 994 0 0 0 0 0 1076s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2058m 994 0 0 0 0 0 1077s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2060m 994 0 0 0 0 0 1077s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2062m 994 0 0 0 0 0 1077s 16s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2063m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2065m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2067m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2068m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2070m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2072m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2073m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2075m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2077m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2078m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2080m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2082m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2083m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2085m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2087m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2088m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2090m 994 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2092m 993 1 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2093m 993 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2095m 993 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2097m 993 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2098m 993 0 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2100m 992 1 0 0 0 0 1077s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2102m 992 1 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2103m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2105m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2107m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2108m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2110m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2112m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2113m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2115m 992 0 0 0 0 0 1078s 15s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2117m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2118m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2120m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2122m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2123m 992 1 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2125m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2127m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2128m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2130m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2132m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2133m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2135m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2137m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2138m 992 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2140m 991 1 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2142m 991 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2143m 991 0 0 0 0 0 1078s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2145m 991 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2147m 990 1 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2148m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2150m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2152m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2153m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2155m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2157m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2158m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2160m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2162m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2163m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2165m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2167m 990 0 0 0 0 0 1079s 14s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2168m 990 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2170m 990 1 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2172m 990 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2173m 990 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2175m 990 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2177m 990 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2178m 991 1 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2180m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2182m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2183m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2185m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2187m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2188m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2190m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2192m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2193m 991 0 0 0 0 0 1079s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2195m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2197m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2198m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2200m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2202m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2203m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2205m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2207m 991 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2208m 992 2 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2210m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2212m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2213m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2215m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2217m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2218m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2220m 992 0 0 0 0 0 1080s 13s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2222m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2223m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2225m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2227m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2228m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2230m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2232m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2233m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2235m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2237m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2238m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2240m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2242m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2243m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2245m 992 0 0 0 0 0 1080s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2247m 992 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2248m 992 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2250m 992 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2252m 992 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2253m 992 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2255m 991 1 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2257m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2258m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2260m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2262m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2263m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2265m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2267m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2268m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2270m 991 1 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2272m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2273m 991 0 0 0 0 0 1081s 12s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2275m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2277m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2278m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2280m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2282m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2283m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2285m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2287m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2288m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2290m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2292m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2293m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2295m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2297m 991 0 0 0 0 0 1081s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2298m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2300m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2302m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2303m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2305m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2307m 991 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2308m 990 1 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2310m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2312m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2313m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2315m 990 1 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2317m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2318m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2320m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2322m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2323m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2325m 990 0 0 0 0 0 1082s 11s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2327m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2328m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2330m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2332m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2333m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2335m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2337m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2338m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2340m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2342m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2343m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2345m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2347m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2348m 990 0 0 0 0 0 1082s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2350m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2352m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2353m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2355m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2357m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2358m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2360m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2362m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2363m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2365m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2367m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2368m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2370m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2372m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2373m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2375m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2377m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2378m 990 0 0 0 0 0 1083s 10s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2380m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2382m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2383m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2385m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2387m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2388m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2390m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2392m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2393m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2395m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2397m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2398m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2400m 990 0 0 0 0 0 1083s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2402m 990 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2403m 990 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2405m 990 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2407m 990 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2408m 990 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2410m 991 1 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2412m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2413m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2415m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2417m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2418m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2420m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2422m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2423m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2425m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2427m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2428m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2430m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2432m 991 0 0 0 0 0 1084s 9s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2433m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2435m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2437m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2438m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2440m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2442m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2443m 991 1 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2445m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2447m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2448m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2450m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2452m 991 0 0 0 0 0 1084s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2453m 991 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2455m 991 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2457m 990 1 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2458m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2460m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2462m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2463m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2465m 990 1 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2467m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2468m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2470m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2472m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2473m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2475m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2477m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2478m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2480m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2482m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2483m 990 0 0 0 0 0 1085s 8s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2485m 990 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2487m 990 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2488m 990 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2490m 989 1 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2492m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2493m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2495m 989 1 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2497m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2498m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2500m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2502m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2503m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2505m 989 0 0 0 0 0 1085s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2507m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2508m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2510m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2512m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2513m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2515m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2517m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2518m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2520m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2522m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2523m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2525m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2527m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2528m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2530m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2532m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2533m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2535m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2537m 989 0 0 0 0 0 1086s 7s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2538m 989 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2540m 988 1 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2542m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2543m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2545m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2547m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2548m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2550m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2552m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2553m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2555m 988 0 0 0 0 0 1086s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2557m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2558m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2560m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2562m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2563m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2565m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2567m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2568m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2570m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2572m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2573m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2575m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2577m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2578m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2580m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2582m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2583m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2585m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2587m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2588m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2590m 988 0 0 0 0 0 1087s 6s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2592m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2593m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2595m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2597m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2598m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2600m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2602m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2603m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2605m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2607m 988 0 0 0 0 0 1087s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2608m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2610m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2612m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2613m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2615m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2617m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2618m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2620m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2622m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2623m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2625m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2627m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2628m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2630m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2632m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2633m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2635m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2637m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2638m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2640m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2642m 988 0 0 0 0 0 1088s 5s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2643m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2645m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2647m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2648m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2650m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2652m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2653m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2655m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2657m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2658m 988 0 0 0 0 0 1088s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2660m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2662m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2663m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2665m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2667m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2668m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2670m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2672m 988 1 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2673m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2675m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2677m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2678m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2680m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2682m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2683m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2685m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2687m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2688m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2690m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2692m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2693m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2695m 988 0 0 0 0 0 1089s 4s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2697m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2698m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2700m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2702m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2703m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2705m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2707m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2708m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2710m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2712m 988 0 0 0 0 0 1089s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2713m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2715m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2717m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2718m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2720m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2722m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2723m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2725m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2727m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2728m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2730m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2732m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2733m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2735m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2737m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2738m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2740m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2742m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2743m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2745m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2747m 988 0 0 0 0 0 1090s 3s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2748m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2750m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2752m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2753m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2755m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2757m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2758m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2760m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2762m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2763m 988 0 0 0 0 0 1090s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2765m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2767m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2768m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2770m 988 1 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2772m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2773m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2775m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2777m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2778m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2780m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2782m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2783m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2785m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2787m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2788m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2790m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2792m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2793m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2795m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2797m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2798m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2800m 988 0 0 0 0 0 1091s 2s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2802m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2803m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2805m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2807m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2808m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2810m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2812m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2813m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2815m 988 0 0 0 0 0 1091s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2817m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2818m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2820m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2822m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2823m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2825m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2827m 988 1 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2828m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2830m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2832m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2833m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2835m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2837m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2838m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2840m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2842m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2843m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2845m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2847m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2848m 988 1 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2850m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2852m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2853m 988 0 0 0 0 0 1092s 1s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2855m 988 0 0 0 0 0 1092s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2857m 988 0 0 0 0 0 1092s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2858m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2860m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2862m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2863m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2865m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2867m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2868m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2870m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2872m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2873m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2875m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2877m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2878m 988 0 0 0 0 0 1093s 0s -repeat t_sim n_part n_coag n_emit n_dil_in n_dil_out n_nuc t_wall t_rem - 20 2880m 988 0 0 0 0 0 1093s 0s -#for i in out/freezing_part_*.nc; do ../../build/extract_aero_particles $i; done; diff --git a/scenarios/7_freezing/out_sese_default1/run_part.spec b/scenarios/7_freezing/out_sese_default1/run_part.spec deleted file mode 100644 index 9427d4423..000000000 --- a/scenarios/7_freezing/out_sese_default1/run_part.spec +++ /dev/null @@ -1,57 +0,0 @@ -run_type particle # particle-resolved run -output_prefix output/sese_default1/freezing_part # prefix of output files -n_repeat 3 # number of Monte Carlo repeats -n_part 1000 # total number of particles -restart no # whether to restart from saved state (yes/no) - -t_max 172800 # total simulation time (s) -del_t 5 # timestep (s) -t_output 100 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) - -do_camp_chem no # whether to run the campible chemistry module - -gas_data gas_data.dat # file containing gas data -gas_init gas_init.dat # initial gas mixing ratios - -aerosol_data aero_data.dat # file containing aerosol data -do_fractal no # whether to do fractal treatment -aerosol_init aero_init_dist.dat # aerosol initial condition file - -temp_profile temp.dat # temperature profile file -pressure_profile pressure.dat # pressure profile file -height_profile height.dat # height profile file -gas_emissions gas_emit.dat # gas emissions file -gas_background gas_back.dat # background gas mixing ratios file -aero_emissions aero_emit.dat # aerosol emissions file -aero_background aero_back.dat # aerosol background file -loss_function none # particle loss function - -rel_humidity 0.999 # initial relative humidity (1) -latitude 40 # latitude (degrees, -90 to 90) -longitude 0 # longitude (degrees, -180 to 180) -altitude 0 # altitude (m) -start_time 0 # start time (s since 00:00 UTC) -start_day 1 # start day of year (UTC) - -do_coagulation yes # whether to do coagulation (yes/no) -coag_kernel brown -do_condensation no # whether to do condensation (yes/no) -do_mosaic no # whether to do MOSAIC (yes/no) -do_nucleation no # whether to do nucleation (yes/no) -do_freezing yes # whether to do freezing (yes/no) -do_freezing_CNT yes -#abifm_m 28.13797 -#abifm_c -2.92414 -abifm_m 22.62 -abifm_c -1.35 - -#do_freezing_CNT no -#freezing_rate -.01123456789 - -rand_init 0 # random initialization (0 to auto-generate) -allow_doubling yes # whether to allow doubling (yes/no) -allow_halving yes # whether to allow halving (yes/no) -do_select_weighting no # whether to select weighting explicitly (yes/no) -record_removals no # whether to record particle removals (yes/no) -do_parallel no # whether to run in parallel (yes/no) diff --git a/scenarios/7_freezing/output b/scenarios/7_freezing/output deleted file mode 120000 index 63142cf94..000000000 --- a/scenarios/7_freezing/output +++ /dev/null @@ -1 +0,0 @@ -/data/keeling/a/wenhant2/modeldata/partmc_tests \ No newline at end of file diff --git a/scenarios/7_freezing/plot.gnuplot b/scenarios/7_freezing/plot.gnuplot deleted file mode 100644 index bfd023276..000000000 --- a/scenarios/7_freezing/plot.gnuplot +++ /dev/null @@ -1,13 +0,0 @@ -array files = ['01', '02', '03', '04', '05', '06', '07'] -a=system("ls -1 *.txt | cut -d_ -f4") -array SUM[|files|] -do for [i=1:|files|] { - stats 'freezing_part_0001_000000'.files[i].'_aero_particles.txt' using 6 nooutput - SUM[i] = STATS_sum -} -set style fill solid -set boxwidth 0.5 -set xlabel 'output step' -set ylabel '# frozen' -set yrange [0:] -plot SUM using 1:2:xticlabels(files[column(0)+1]) with boxes \ No newline at end of file diff --git a/scenarios/7_freezing/plot_freezing.py b/scenarios/7_freezing/plot_freezing.py deleted file mode 100755 index b1219d178..000000000 --- a/scenarios/7_freezing/plot_freezing.py +++ /dev/null @@ -1,141 +0,0 @@ -#!/usr/bin/env python -import os -import glob -import netCDF4 as nc -import numpy as np -import matplotlib.pyplot as plt -from pdb import set_trace - - -log_show = False -draw_relhum = False -#draw_ice_type = "num_conc" -draw_ice_type = "mix" -#OutDir = "out_base" -#OutDir = "out_coag" -#OutDir = "out_cold" -#OutDir = "out_poster" -#OutDir = "out_case1" -OutDir = "output/evaporation_base" - -fontsize_label = 15 -assert draw_ice_type in ["num_conc", "mix"] -t_max = 26 -t_output = 1 -nFile = int(t_max / t_output) + 1 - -temperature_data = [] -pressure_data = [] -relhum_data = [] -freezing_data = [] -P_frozen_data = [] -num_conc_data = [] -freezing_total = [] -freezing_total2 = [] -freezing_mass_data = [] -freezing_mass_data2 = [] - -#t_list = list(range(1, 864 *2)) -id_file_list = np.array(list(range(1, nFile + 1))) -t_list = (id_file_list - 1) * t_output -isFirst = True -for id_file in id_file_list: - fileName = OutDir + "/freezing_part_0001_" + str(id_file).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) - particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) - temperature = float(ncf.variables["temperature"][0].filled(np.nan)) - relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) - pressure = float(ncf.variables["pressure"][0].filled(np.nan)) - - freezing_data.append(part_frozen) - P_frozen_data.append(p_frozen) - num_conc_data.append(num_conc) - freezing_total.append(int(np.sum(p_frozen * num_conc))) - freezing_total2.append(int(np.sum(part_frozen * num_conc))) - freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) - freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) - - temperature_data.append(temperature) - relhum_data.append(relhum * 100) - pressure_data.append(pressure) - - -""" -freezing_data = np.array(freezing_data) -P_frozen_data = np.array(P_frozen_data) -num_conc_data = np.array(num_conc_data) -freezing_total = np.array(freezing_total) -freezing_total2 = np.array(freezing_total2) -""" -temperature_data = np.array(temperature_data) -relhum_data = np.array(relhum_data) -pressure_data = np.array(pressure_data) -freezing_mass_data = np.array(freezing_mass_data) -freezing_mass_data2 = np.array(freezing_mass_data2) - -air_density_data = pressure / (286 * temperature_data) -mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) -mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) - -f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) -f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) -P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) -P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) - -#freezing_data = np.array(freezing_data) -#set_trace() -#freezing_total = freezing_data.sum(axis = 1) - -#fig = plt.figure(figsize = (12, 10)) -fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize = (12, 10), sharex = True) -#ax1 = fig.add_subplot(3, 1, 1) -ax1.plot(t_list, temperature_data, color = "red") -ax1.plot(t_list, np.full((len(t_list)), 273.15), color = "red" if draw_relhum else "blue", linestyle = "dashed") -#ax1.set_xlabel("time (s)") -ax1.set_ylabel("Temperature (K)", color = "red" if draw_relhum else "black", fontsize = fontsize_label) -ax1.grid() -if draw_relhum: - ax1t = ax1.twinx() - ax1t.plot(t_list, relhum_data, color = "blue") - ax1t.set_ylabel("Relative humidity (%)", color = "blue", fontsize = fontsize_label) - -#ax2=fig.add_subplot(3, 1, 2) -if draw_ice_type == "num_conc": - #ax2.plot(t_list, np.log10(freezing_total) if log_show else freezing_total, label = "probability", color = "orange") - ax2.plot(t_list, np.log10(freezing_total2) if log_show else freezing_total2, label = "true false", color = "blue") - ax2.set_ylabel("frozen concentration " + ("10^* (m^-3)" if log_show else "(m^-3)"), fontsize = fontsize_label) -else: - #ax2.plot(t_list, mixing_ratio_ice * 1000, label = "probability", color = "orange") - ax2.plot(t_list, mixing_ratio_ice2 * 1000, label = "true false", color = "blue") - ax2.set_ylabel("ice mixing ratio (g/kg)", fontsize = fontsize_label) -ax2.grid() -#ax2.set_xlim([t_list[0], t_list[-1]]) -#ax2.set_xlabel("time (s)") - -ax2.legend() - -#ax3 = fig.add_subplot(3, 1, 3) -if log_show: - ax3.plot(t_list, np.log10(f_ufz_mean), color = "red") - ax3.fill_between(t_list, np.log10(f_ufz_mean - f_ufz_std), np.log10(f_ufz_mean + f_ufz_std), alpha = 0.1, color = "red", edgecolor = None) - -else: - #ax3.plot(t_list, f_ufz_mean, color = "red") - #ax3.fill_between(t_list, f_ufz_mean - f_ufz_std, f_ufz_mean + f_ufz_std, alpha = 0.1, color = "red", edgecolor = None) - ax3.plot(t_list, P_frz_mean, color = "red") - ax3.fill_between(t_list, P_frz_mean - P_frz_std, P_frz_mean + P_frz_std, alpha = 0.1, color = "red", edgecolor = None) - - ax3.set_ylim([-0.05, 1.05]) -#ax2.set_xlim([t_list[0], t_list[-1]]) -ax3.grid() -ax3.set_xlabel("time (s)", fontsize = fontsize_label) -ax3.set_ylabel("frozen ratio" + (" (10^*)" if log_show else ""), fontsize = fontsize_label) - -fig.subplots_adjust(hspace = 0.1) -fig.suptitle("Immersion freezing (partMC-ABIFM)", fontsize = 20) - -plt.show() - diff --git a/scenarios/7_freezing/pressure.dat b/scenarios/7_freezing/pressure.dat deleted file mode 100644 index c034ea450..000000000 --- a/scenarios/7_freezing/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 100000.000 diff --git a/scenarios/7_freezing/pressure.dat.bck b/scenarios/7_freezing/pressure.dat.bck deleted file mode 100644 index 07215617a..000000000 --- a/scenarios/7_freezing/pressure.dat.bck +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 -pressure 1e5 diff --git a/scenarios/7_freezing/profile.sh b/scenarios/7_freezing/profile.sh deleted file mode 100755 index 80ad4255d..000000000 --- a/scenarios/7_freezing/profile.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -gprof ../../build/partmc gmon.out > analysis.txt diff --git a/scenarios/7_freezing/run_part.spec b/scenarios/7_freezing/run_part.spec index 0ff35b6ad..cd5858820 100644 --- a/scenarios/7_freezing/run_part.spec +++ b/scenarios/7_freezing/run_part.spec @@ -1,14 +1,14 @@ run_type particle # particle-resolved run -output_prefix output/git_trans_t1/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats -n_part 1000 # total number of particles +output_prefix output/exp8/freezing_part # prefix of output files +n_repeat 20 # number of Monte Carlo repeats +n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) -#restart_file output/chiexp_0.15/restart.nc +#restart_file output/chiexp_indsize_0.8/restart.nc -t_max 3600 # total simulation time (s) -del_t 10 # timestep (s) +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module @@ -37,18 +37,16 @@ start_day 1 # start day of year (UTC) do_coagulation no # whether to do coagulation (yes/no) #coag_kernel brown -do_condensation yes # whether to do condensation (yes/no) -do_init_equilibrate yes # whether to initially equilibrate water (yes/no) +do_condensation no # whether to do condensation (yes/no) +#do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) -do_freezing yes # whether to do freezing (yes/no) -do_freezing_CNT yes -do_coating no -#coating_spec OIN -#coating_ratio 1.0 - -#do_freezing_CNT no +do_immersion_freezing yes # whether to do freezing (yes/no) +#immersion_freezing_scheme singular +immersion_freezing_scheme ABIFM +#immersion_freezing_scheme const #freezing_rate -.01123456789 +do_coating no rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/scenarios/7_freezing/run_scripts/freezing_run_chi.sh b/scenarios/7_freezing/run_scripts/freezing_run_chi.sh index 71f631c11..ae4ab6c8b 100755 --- a/scenarios/7_freezing/run_scripts/freezing_run_chi.sh +++ b/scenarios/7_freezing/run_scripts/freezing_run_chi.sh @@ -45,18 +45,20 @@ uncomment_for_restart() { caseName=$1 chi=$2 t_max=$3 +isbin=$4 frzDir=/data/nriemer/a/wenhant2/modeling/partmc/scenarios/7_freezing cd $frzDir mkdir -p $frzDir/output/$caseName +sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" $frzDir/run_part.spec cp -p $frzDir/run_part.spec $frzDir/output/$caseName cp -p $frzDir/*.dat $frzDir/output/$caseName -sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" $frzDir/run_part.spec sed -i "/t_max /ct_max 0 # total simulation time (s)" $frzDir/run_part.spec +sed -i "/restart /crestart no # whether to restart from saved state (yes/no)" $frzDir/run_part.spec ../../build/partmc run_part.spec -$frzDir/aero_init_tools/run_setchi.py $chi $frzDir/output/${caseName}/freezing_part_0001_00000001.nc $frzDir/aero_init_comp.dat +$frzDir/aero_init_tools/run_setchi.py $chi $frzDir/output/${caseName}/freezing_part_0001_00000001.nc $isbin #$frzDir/aero_init_comp.dat sed -i "/restart /crestart yes # whether to restart from saved state (yes/no)" $frzDir/run_part.spec sub_pound $frzDir/run_part.spec restart_file diff --git a/scenarios/7_freezing/run_scripts/multi_run.sh b/scenarios/7_freezing/run_scripts/multi_run.sh deleted file mode 100755 index 97707173a..000000000 --- a/scenarios/7_freezing/run_scripts/multi_run.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -expName=chiexp -t_max=3600 -frzDir=/data/keeling/a/wenhant2/modeling/partmc/scenarios/7_freezing/ -#mkdir -p $frzDir/output/$expName -#for chi in 0.2 0.4 0.6 0.8 -for chi in 0.001 0.01 0.05 0.1 0.15 -#for chi in 0.999 -do - caseName=${expName}_${chi} - echo $caseName - ./freezing_run_chi.sh $caseName $chi $t_max -done - diff --git a/scenarios/7_freezing/temp.dat b/scenarios/7_freezing/temp.dat deleted file mode 100644 index 46606ceb3..000000000 --- a/scenarios/7_freezing/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -temp 270.000 269.250 268.500 267.750 267.000 266.250 265.500 264.750 264.000 263.250 262.500 261.750 261.000 260.250 259.500 258.750 258.000 257.250 256.500 255.750 255.000 254.250 253.500 252.750 252.000 251.250 250.500 249.750 249.000 248.250 247.500 246.750 246.000 245.250 244.500 243.750 243.000 242.250 241.500 240.750 240.000 239.250 238.500 237.750 237.000 236.250 235.500 234.750 234.000 233.250 232.500 231.750 231.000 230.250 229.500 228.750 228.000 227.250 226.500 225.750 225.000 diff --git a/scenarios/7_freezing/temp.dat.bck b/scenarios/7_freezing/temp.dat.bck deleted file mode 100644 index 55bf326c7..000000000 --- a/scenarios/7_freezing/temp.dat.bck +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0 -temp 274 diff --git a/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/Bench.cpython-310.pyc index f6cc6b2cf9f242c4bd1d3f42f21132753e56c30a..05c7cbb71723f4a8dc12e1da267d6a4abef4f6c1 100644 GIT binary patch delta 20 acmdmMwAY9`pO=@50SJzVyxYiaBnbdJqXmrs delta 20 acmdmMwAY9`pO=@50SJt1q&9LJNdf>gV+2hA diff --git a/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/__init__.cpython-310.pyc index 27a8aefc3444d9cf32cbb8a73a840bbcd84ac662..7d96a035917c52f7f8906cac17042acb50db6546 100644 GIT binary patch delta 88 zcmdnYxRsG7pO=@50SJzVyi1wLW9<;3pORRTsGnDqnVOqgq@So?o|>1Dm{($?ADmp2 qSx{1}pO}}JQ(2r@tZy8jR+O4rm6?|w@06OCoDq^yzgXWqKCLJq8L-yQf&q5ZzsVNKxdVN!>WDQ#S?d6hZ;ZX>v52egwG`Fbeom2xy57my+2~q`FJT zl0qGVIM)Kb=U@T7=*Q#_?6rr$$kB%YxwLO6$+hFahc3a#S#oyw&6^o!3kx-d@$7b{ z-a3r^O_S3D@7TAv%?3a*#S_-z>auc_d%#-)mZyAJj;g5Y0c*MHlB(h9DZaxR^&_le z+ph_uSFgScU9x7w$FqX_N8CmMa(2iIuDD_^#HS1vQ-Z7;Y|KYqA$}A8y({SZ2RxTq z;ViSZP)^|~cabUYr6}CL_#d2uJ}CLyM;vDz{exlMNOhvl-EzFS-w@W5N!&@Tw;!u~ zx8Yck_N>#5Q|mmEy5U=QH#WKTXqmA>_N^OcQQP{D_oeO_TZd~9r+K8G$YjFwRh;y0 zr>SHvo2ibYZls&CxgVvwGR?nf?u0t-<)$f9nG8&9ns447gBa=K@*9G8?&t zd&tKOD8@{PkvH-SukhOf!aCcU4lW5b99<>*5&-(iexsr<(~CO66@rfdtttWtNS#)N zET}g#WWUsI3fJIjYcmIIMq3+#6@H6f<5jLd!6c-#&Id6eQ7G)=dw_x+vN0P`&4>fk z&I9(GW9FQi3HYG?3NaQO{s_t4KC`KqZMs97E&@7m`^6ve92-98e~RCsLrHnUt%EX{ z2rJe%tk=)u@bS5THWSoRn00$wq{T7qzQ~4a-Ao1jL_Ufr<3W;j);E(Zl!@7bF<)_x zmxt9QubXpTHH3$LE%NnAWBMIc`4wDs z?sC0`>6u_pXI5Xw*Nd{Gm*6lx_y(+r(93vOZ}5SHl);w%EAW}-Ver56pueD#ZxN7y z`l}PGoKi`b2NEs)C19>?No}U>)J8L{!l6|e%ypd^7wCG1ICY1WJz)S6@R2^V=J-qO`153Nz*oQL(`U`wozr>v-1>vIH%_% zHBTd`Lql8A(jEi-fMU-8#pR<=cZMl2z#sSlg#t57!=ucUfhm)={3y&627Z*?d$uGi zX({%2-`?Kt-rnBc?w&P{CY-ksDReLO(*RJMfVI#dU@pK~X$UYkU~M!Emj3iu)mDWi0%Ouoz!9-6av*&mQ&vqfZ2G5|s?KS}>GTXt9Lze< zn=3zF_~Q5g{FT?sl4RHnDJ>ZUAkpQVZNYBHlth6Nl@-t#gK9ip+d?@QHeVEJ~_HWiA%uio<`^a4(GUZcevs(91C9RT!aIR zOBKaHSxxE68Qj-uU= z7Sq44_4(bLvZq->)V7yn#b>kjR{Y~$oo_SCRUoWu05v`1TdM}Iv z^EJvmsG<^thkt@UVH;IUyRH>f{*rA6*}(1gpM~UN)^v_%bch+S%4;)nswOQ3Tr%Y(=mgL6f?WaQqZ2 z6>1ufF2Cj4N*uybe9+S$N9Cq-TGi91;oQ1VOD~cJd2eEnKj=yH*EhNwXKSmaT(=xb zpULPdV=n%RXJdEM>Va&jFf*&GXNVJ3p)bDglARx zw_9R|>dJ2s$`O17!7&84A!u4Eyy_hEMsc=~&X$VV2bTlE{iJ$@mDxVjv1VZ;d=$ZZ zEuLyY-NMCb9WSC~O_L$5jfMzjvdCXcwjnNg`?qXF8&f8*|p z2PaG)W%s732GS)B? zU+{O@_LIYWXLx6-&XvJE)`uv>Q~)m_GKB!o=hD0IBcjD5g~VmC5=Oq85%lw)h6i>> z08O;i?=U2thP|w~tL|9b8*?GJi}y#aCCB(=WaMhh7EP9!wR3IM_agsMq@M)%pCdb~ z>p%#zlqjd4gFuHmh*bvbj#PnkpCc6+Qacn;gDlE-*($b*9jcy`g9-|~whKs8fCfbY zX!aV-2{fodAn90 z+-kVRH)Qz4x6N=-C)6$nh00V3Q#bXTlc2P=Qg2K$!t?St7Sjl{E?1(r8|}0TkyMH5 zP;HHtoLhJ1Jd1KArrUI{5uAr&2NQSV9FXffgx>eHv>DH-~L zP>0k+2^#UZ)FCa}j98r$D&YCGeD@eDjF++b7yJg)W2n7jh9AmcU_yj6y9-bGP6T%Y zFoPMDl|D4CUM8;Vab!pX;19LMZ)Nx3upYGU6~k{J8^-Y5wuX*u7;?dBmFZXs z@Cu(U+8o4Ys#Jc+Zu}W}2_@nZm1oqfrk2x?B`nDTO8S6PH~^KIHmVgwl{39ltXi6bIYGA$#PX3Pj7isY*KDy) zFpos%ibhj`q6ivT5vZ($U`EVqRzWkpLfTSlDq0#1Y&g#(?%#}D@tiKgR2fr;OICmot;b&+v0DEo+Ap6mUeagc=;T*CFmj~yWXiF7gsNOL+_ zz%&9WMVA+BhKv}+uH6n7NQS0chJ-@G61BHMayM)c_l}863g}@NYV1Y;f4xoo{B9q# zAEE@G!}S|l1$jneM}aY6ZwQDA5K_wc3?5*k=YU*Kk{I2q1>~PFQ}zLHf!92u^Rkn< zp0)n48VW7Tld&l8X!j>S1_BAFMXpsf)}v~11o9R8rUvlX&4o8nKmZ~y=A zT}a5{+E|^~2?To)XaL@~J|PocL$h7PAhxX+Xq4kXG5#@ z5Gp-|pq^^P238v=TqQuys5-@xX*DXf$_wvpm|3A>IsrnRP1ye#N$P(evsV;%k>%&( zo5@YWQgI}8b3F~_KD^e_E*xTPi}WWvFWO@`!2}=bh~2pfZ3pE+)m5ss74a-OQ&k!I8SfSBjLo@Yn5 z00uEwcTWh_i{qex!NXIVQ&|skIjoE|#4q(E!)wol4FJQ(`KI1ceot?l{9}2pcPFVX zDHGPC4|guo<0Z_;!kC0tybT)yz5ZCykx6V*oKP5%03So*cSl&zZ=8-z&VP26|`dGzSt9}^hpFy zA^0MIlna|-*$~rrSC60Xw!P5vZa7AFIprJUsx+P>6yJKI*`L!o###V3EsxQ+h z3Np{a>6Leb1lAh6sLTjmqCy8qNDj&E{6Bp?q@SRAAw_UnkFTJ{YD4Tj?IB!Jh!x9ppM%nkD5U>E=S#y74-Z<)4yX&U~i zlqsGtZR**Xm2SZ#x0*J+FvG@CL6g4yKzob7ebuja34ebJS)K#1+G%_T3ExHVVFXRm z*8%OF<$opqBoA2yShzq`0O9)UQRZ$0hY=h{kOqJa_6KefqHz78NjNfebYvP8)NRPD z9b!2Z57(HGz|kT8@=#8B0MQiRH#}Gs?UmT-ED|>$7(*a78b&OK0MAA^JLNtBy>V%p zWeO<=_;<_ZM7wp|9%K=hW*ITe8CGkARn%&UasMf+C%3wcYoN`*FwP@Oy-g_LP{gTa zDh_Yqt;yjH_08h$%-a7FYDT@wGs&}kHs(MXY%32kk)37s2n;3?@&tPxkVF@MCpl2v zj9eoKb|Bb=;2?rq5!{a84g{i|fG$*GpGNQyf`<`2ieL-@Rs)g2*#csV2t?S5dm*B@ z=0t{J#;$|^eM;;FMC;oUm^e8*OrTH8I{~;PkL=p%bGjTJ#S`&#d!n8gz;2HV{@Oe- wSD&jT&l_YGraM z-(A|WESE;C^pT`><6EF<3j}iWQK$tP6#8fp1V#G%O#6|d$R-7neiU$l0!{i+AV2BM zU5YQeX-a@+=g!WZnL9H(bKj@$&4seTpkILBYZw1c%!@CFevtnstTaIpiJ(YiKaq%Q zO;lV&Chj#sk#%8SBp%`go}2hc4e&fDP>m!4 zQ~;9Zb}bF47Ipdg3R3T_8K=WwMj> zfJ6h?MS9^)Bk3c%;Ta(@(htuj@)+3z&nOungYax7aWVwY7BWmm;Mq#X$tc+e8rq2e zybwER2hOV0Iz5?BOsb}4i-SoQ#-;G{z*C0*B>c@cL_r|ps*n&?5k*T{bgj#)5|NsL z(=6N>#VOx=8sMY&xy!eZ@|-VUm8&|pNIgn37OofXu%QhEvP@BqiEpjn^rRc z*I{Eb2>=%&Us%;zEwB#VDRScl zHkUT~2pf|-*(G^QY-LRTeOs7nDoG?4wB(h9rDrtThj>aiE%q~aJmRrsQ%lcN{ElqT znVdDHQx^2JoeBYCL!dk0@yTqQsFoTxsIFx+8du}jHDf_FtdaQnB-NKJGp-tH`i7~S z@x6(nhsQJ{xo|d}wM@3=>45?f1dqgi>KSDpd+5Gxu%z_>F^P5}-Hm|e9M}nz9ZIG( z)kvWAIVkLd?0eonHt?P8@H*xx>|{56ySl2jhE+lmR<^izg1zPY+iAWR&syAz2Kx|V z2)hyb5vtTR@G#EPY^JDjdh=g3qap+l1IqRUdfHIC?M-P`;+jfr$yl=8Dy8ZTyO+Hj z=w>ej275|J9jvgY_|6?qTvsiPQZIWy(6_zHekhsEEafaM0b+VmJGHr^_O2MQ>wr#V z^ku9Fs#a zZAH>$sD|yPs*%!cmzm4N>PlHs8pqgWOV$R9aWUsGMh^;3s#d%9HwXPq?u7UG`2xLW+v)sDH1R zVS3{m(4cO)a2m1U$j;XAj9p9UjReuvjD{650d8!Fw3}rjm-iR-Z@6q}a7c0K2C-!W zM5}|~KTPzbh4vr+6%(5##7Xv1dpk=swI_;7=$G(_r6qob^veLhM&cQSV#;hW6MLwT z8c^g(1gDNx^d-BEt;gFA(MI6L!sWRwKh;CI#Zx-Don@oZBjQO$qa*$2kXz|rDZAzR zUT1eZyTekg=#ykg{xst9iz{91{#b-HG`F%}vAn|IpUKKP&d=%N#-yfgtd@){vSO6?_$+qkn?q^cquEk?LPi?DfYN1K#KUt=N1L!6aPt8W4d=2Fu3PQgeu zHOsDnNu{fEY0b1f^Lje15k3m&H10uH6t9s~EsL5;4GcDiuE<0mO7ipgaZV@r#2YQ^ zl3gGG^CUUXN31QQwyMKWoIx#{u3cU+KZ5#1fYkBV-~9f^e_nYUdPWN}>k;q>^eO@c zu-)_NtP0*C!$RPpNAGQSGMzQGQt)k8MqRdD>YQ0I{JH8b+?qpZ<@PIMO`GA(A@*wT zkN55Z3JSI80IkDKJZG1Hg4>k7qS0lPayy+a$8Pq;BUK99K;Q)XW#3+LntjyQDw>;t z-3P>c%roQMgYf+H7{CJwDcl_kH~}bq55?(iyUhi4sc=*t04z4hoN8p?{-k(-FfFn* z!!ct@jb@ly#z{ORb~x)qUX#p zquf0N-n}P~@*?nC1%^SXFBa1PpVCS(%J<;=UWCUG1`v)QoI;pEIE#=%;1ih7wIy8g zcwir-*t_U$1YVE4;CXo#!$Yx-D3$~L4nm<$9^WGIbD}bUAO0qW%qRFI-(aoR=k|O2 zP5$lvW`7Idc7LP4#kbQJZV32#*}DfiS}{-1*feW$YI@XZ!xFG)fQ84m)s+g8Q#;wg H@g4sG_+1+v diff --git a/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc b/scenarios/7_freezing/visual_tools/__pycache__/plots_lib.cpython-310.pyc index 5c47aabdb01b32fc881af866b24a88296e0dfc12..8d2a693f8f4bfbac5c3ebc1fa6d2272b3e1d1110 100644 GIT binary patch delta 148 zcmey$`IVD9pO=@50SJzVyxYia!^jvl*@IDrk$rP2qY)G1t;sW(LzTpV(ox(6Ir$~= z+2x5v>BU9tKoJPR0b)r^=4Z*0;si6{GDvDBPi9e55(UcKV#`m;N=+^)V#2EIHj5Mh Dw2~f4 delta 148 zcmey$`IVD9pO=@50SF$|N^Rt}VPw2D*@IDrkz;czqY)Eh)Z`h=p-K`!=_u}kocxmb z?DE8-^x`58pa_KE1hFJ1^Rr}0fs84Vgv%hQnLL?AO-T$WbBirMDJwO(q=*TtvfC_D E0CamD$^ZZW diff --git a/scenarios/7_freezing/visual_tools/bar.py b/scenarios/7_freezing/visual_tools/bar.py index 5bd93a04c..589b241f6 100755 --- a/scenarios/7_freezing/visual_tools/bar.py +++ b/scenarios/7_freezing/visual_tools/bar.py @@ -10,7 +10,7 @@ def bar_minmax(hist, edges, coef = 1e9): bar_data = hist / (edges[1:] - edges[:-1]) / coef bar_min, bar_max = bar_data.min(), bar_data.max() return bar_min, bar_max - +""" def mod_xlabel_to_log(ax_hist): x_ticks = ax_hist.get_xticks() x_ticks = [int(xtick) for xtick in x_ticks] @@ -24,3 +24,4 @@ def mod_ylabel_to_log(ax_hist): y_ticks_label = ["10$^{" + "%.1f" % (ytick) + "}$" for ytick in y_ticks] ax_hist.set_yticks(y_ticks, y_ticks_label) return ax_hist +""" diff --git a/scenarios/7_freezing/visual_tools/case.py b/scenarios/7_freezing/visual_tools/case.py index f2c5c7441..dc2d6c9fc 100755 --- a/scenarios/7_freezing/visual_tools/case.py +++ b/scenarios/7_freezing/visual_tools/case.py @@ -9,9 +9,10 @@ class PartMC_Case(object): - def __init__(self, caseName, OutDir = "."): + def __init__(self, caseName, OutDir = ".", prefix = "freezing_part", disable_check_time = False): - self.prefix = "freezing_part" + #self.prefix = "freezing_part" + self.prefix = prefix self.caseName = caseName if os.path.exists(OutDir + "/" + caseName): self.case_output = OutDir + "/" + caseName @@ -42,7 +43,16 @@ def __init__(self, caseName, OutDir = "."): else: assert self.N_file_per_ensemble == len(fileList) - self.read_check_time() + if disable_check_time: + timeList = [] + for fileName in self.ensemble_fileList[self.ensemble_nameList[0]]: + ncf = nc.Dataset(fileName) + time = float(ncf.variables["time"][0].filled(np.nan)) + ncf.close() + timeList.append(time) + self.timeList = np.array(timeList) + else: + self.read_check_time() self.nTime = len(self.timeList) self.read_dimensions() @@ -196,13 +206,52 @@ def compute_dry_diameter(self, ensemble_name = None): dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) dry_diameter_tList.append(dry_diameter) - dimensions = ("time", ) + dimensions + dimensions = ("time", ) + (dimensions[-1], ) info = { "units": "m", } self.database[ensemble_name]["dry_diameter"] = (dry_diameter_tList, dimensions, info) return dry_diameter_tList, dimensions, info - + + def convert_to_ice_volume(self, ensemble_name = None): + + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + timeList = self.timeList + aero_mass_list, _, mass_info = self.get_var("aero_particle_mass", ensemble_name) + aero_density_list, _, _ = self.get_var("aero_density", ensemble_name = ensemble_name) + aero_species_ind_list, _, aero_species_info = self.get_var("aero_species", ensemble_name = ensemble_name) + den_ice_list, dim, info = self.get_var("aero_ice_density", ensemble_name) + frozen_list, dim, info = self.get_var("aero_frozen", ensemble_name) + aero_volume_list = [] + for i_time in range(self.nTime): + aero_mass = aero_mass_list[i_time] + aero_density = aero_density_list[i_time] + aero_species_ind = aero_species_ind_list[i_time] + den_ice = den_ice_list[i_time] + frozen = frozen_list[i_time] + aero_species_names = aero_species_info["names"].split(",") + aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind - 1, aero_species_names)} + aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind - 1, aero_species_names)} + i_water = aero_species_name2ind["H2O"] + aero_volume = np.full(aero_mass.shape, np.nan) + for i_spec in range(len(aero_density)): + if i_spec == i_water: + aero_volume[i_spec, :] = np.where(frozen == 1, aero_mass[i_spec, :] / den_ice, aero_mass[i_spec, :] / aero_density[i_spec]) + else: + aero_volume[i_spec, :] = aero_mass[i_spec, :] / aero_density[i_spec] + aero_volume_list.append(aero_volume) + #return aero_volume_list, aero_mass_list, den_ice_list, i_water + return aero_volume_list + + def compute_ice_diameter(self, ensemble_name = None): + if ensemble_name is None: + ensemble_name = self.default_ensemble_name + aero_volume_list = self.convert_to_ice_volume(ensemble_name) + aero_volume_list = np.array(aero_volume_list) + Dp_ice = (6 / np.pi * aero_volume_list.sum(axis = 1)) ** (1/3.0) + return Dp_ice + def compute_diameter(self, ensemble_name = None): if ensemble_name is None: @@ -227,7 +276,7 @@ def compute_diameter(self, ensemble_name = None): #dry_diameter = self.aero_particle_dry_diameter(aero_particle_mass[i_time], aero_density[i_time], aero_species_name2ind) diameter_tList.append(diameter) - dimensions = ("time", ) + dimensions + dimensions = ("time", ) + (dimensions[-1],) info = { "units": "m", } @@ -373,6 +422,41 @@ def compute_ensemble_mean_std(self, varName, ensembles = None, getFun = None, ge return mean_list, std_list, info_dict else: return mean_list, std_list + + def compute_ensemble_max_min(self, varName, ensembles = None, getFun = None, getFun_kwargs = {}, return_info = False): + if ensembles is None: + ensembles = self.ensemble_nameList + max_list = [] + min_list = [] + for i_time in range(self.nTime): + combine_array = [] + shape_check = None + for ensemble_name in ensembles: + if not(varName in self.database[ensemble_name]): + if getFun is None: + self.get_var(varName, ensemble_name) + else: + getFun(ensemble_name = ensemble_name, **getFun_kwargs) + + assert varName in self.database[ensemble_name] + data = self.database[ensemble_name][varName][0][i_time] + if shape_check is None: + shape_check = data.shape + else: + assert shape_check == data.shape + combine_array.append(data) + combine_array = np.array(combine_array) + max_value = np.nanmax(combine_array, axis = 0) + min_value = np.nanmin(combine_array, axis = 0) + max_list.append(max_value) + min_list.append(min_value) + max_list = np.array(max_list) + min_list = np.array(min_list) + if return_info: + info_dict = self.database[ensemble_name][varName][2] + return max_list, min_list, info_dict + else: + return max_list, min_list From c6475931d1ed97d62009b27168c6fcd4d86364d4 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Mon, 11 Nov 2024 13:20:34 -0600 Subject: [PATCH 014/127] remove files --- scenarios/7_freezing/case_obj_test.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 scenarios/7_freezing/case_obj_test.py diff --git a/scenarios/7_freezing/case_obj_test.py b/scenarios/7_freezing/case_obj_test.py deleted file mode 100755 index ebbf6abe9..000000000 --- a/scenarios/7_freezing/case_obj_test.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env python - -from visual_tools.case import PartMC_Case -import numpy as np -from pdb import set_trace - -#a = PartMC_Case("out_sdm_a", OutDir = "output") -a = PartMC_Case("pap1_bin_chis_constT_0.5", OutDir = "/data/keeling/a/wenhant2/d/modeldata/partmc_cases/pap1_bin_chis_10", disable_check_time = True) -ice_ratio, dim, info = a.compute_ice_ratio("0001") -#print(dim) -#print(info) -#print(ice_ratio) -for ensem in ["0001", "0002", "0003"]: - Dp = a.compute_dry_diameter("0001") - print(10**np.mean(np.log10(Dp[0]))) - print(np.std(np.log10(Dp[0]))) - -#import matplotlib.pyplot as plt -#plt.plot(ice_ratio) -#plt.grid() -#plt.show() From 8fa3e1c5ea9093dfae6bfa302d3152816ee31612 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:37:51 -0600 Subject: [PATCH 015/127] Delete scenarios/7_freezing/freezing_run.sh --- scenarios/7_freezing/freezing_run.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 scenarios/7_freezing/freezing_run.sh diff --git a/scenarios/7_freezing/freezing_run.sh b/scenarios/7_freezing/freezing_run.sh deleted file mode 100755 index f63c1575c..000000000 --- a/scenarios/7_freezing/freezing_run.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -caseName=dev_test2 -# exit on error -set -e -# turn on command echoing -set -v -# make sure that the current directory is the one where this script is -cd ${0%/*} - -sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec - -# make the output directory if it doesn't exist -mkdir -p output/$caseName -cp -p run_part.spec output/$caseName -cp -p *.dat output/$caseName - -../../build/partmc run_part.spec -mv freezing_timing.txt output/$caseName - -#for i in out/freezing_part_*.nc; do ../../build/extract_aero_particles $i; done; From ef0fa57555d241ca01eb4c612a9a8f71ba2d87e0 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:38:03 -0600 Subject: [PATCH 016/127] Delete scenarios/7_freezing/hist.py --- scenarios/7_freezing/hist.py | 168 ----------------------------------- 1 file changed, 168 deletions(-) delete mode 100755 scenarios/7_freezing/hist.py diff --git a/scenarios/7_freezing/hist.py b/scenarios/7_freezing/hist.py deleted file mode 100755 index 80879f037..000000000 --- a/scenarios/7_freezing/hist.py +++ /dev/null @@ -1,168 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import matplotlib.pyplot as plt -import netCDF4 as nc - -from pdb import set_trace - -caseName = "out_comp1" -initial_time = 0 -final_time = 3600 - -OutDir = "./" + caseName - -def vol2rad(vol): - return (3 * vol / 4 / np.pi) ** (1/3.0) - -def aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - -def aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - if spec_name == "H2O": - continue - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - -def aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind): - vol = aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind) - radius = vol2rad(vol) - diameter = 2 * radius - return diameter - -def aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind): - vol = aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind) - radius = vol2rad(vol) - diameter = 2 * radius - return diameter - -def plot_bar(hist, edges, ax, **kwargs): - #mid = (edges[:-1] + edges[1:]) / 2 - """ - if log_show: - min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) - ax.bar(np.log10(mid), hist, width = min_interval * 3) - ax.set_xlabel(xlabel + " (10^* " + xunits + ")") - else: - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(mid, hist, width = min_interval * 1) - ax.set_xlabel(xlabel + " (" + xunits + ")") - """ - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(edges[:-1], hist / (edges[1:] - edges[:-1]), align = "edge", width = min_interval * 0.9, **kwargs) - - -def plot_bar_bck(hist, edges, ax, xlabel, xunits, log_show = False): - mid = (edges[:-1] + edges[1:]) / 2 - if log_show: - min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) - ax.bar(np.log10(mid), hist, width = min_interval * 3) - ax.set_xlabel(xlabel + " (10^* " + xunits + ")") - else: - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(mid, hist, width = min_interval * 1) - ax.set_xlabel(xlabel + " (" + xunits + ")") - - #ax.stairs(hist, np.log10(edges)) - -def draw_hist(time, ax1, ax2, ax3, bins = 100, log_show = False): - time_in_fileName = int(time / 100) + 1 - fileName = OutDir + "/freezing_part_0001_" + str(time_in_fileName).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - time_ = float(ncf.variables["time"][:].filled(np.nan)) - assert np.abs(time - time_) < 10e-6 - aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) # (aero_species, aero_particle) - aero_density = ncf.variables["aero_density"][:].filled(np.nan) #(aero_species) - aero_num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) # (aero_particle) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - aero_particle_vol = (aero_particle_mass.T / aero_density).T - aero_species_ind = ncf.variables["aero_species"][:].filled(np.nan) - 1 - aero_species_names = ncf.variables["aero_species"].names.split(",") - aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind, aero_species_names)} - aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind, aero_species_names)} - - diameter = aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - dry_diameter = aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - - diameter *= 10**6 - dry_diameter *= 10**6 - hists_dict = {} - if log_show: - hist, bin_edges = np.histogram(np.log10(diameter), weights=aero_num_conc, bins = bins) - hists_dict["diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights = aero_num_conc * p_frozen, bins = bins) - hists_dict["ice_dry_diameter"] = (hist, bin_edges) - - else: - hist, bin_edges = np.histogram(diameter, weights=aero_num_conc, bins = bins) - hists_dict["diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc * p_frozen, bins = bins) - hists_dict["ice_dry_diameter"] = (hist, bin_edges) - - - - #ax1.bar((hists_dict["diameter"][1][:-1] + hists_dict["diameter"][1][1:]) / 2, hists_dict["diameter"][0]) - #ax2.bar((hists_dict["dry_diameter"][1][:-1] + hists_dict["dry_diameter"][1][1:]) / 2, hists_dict["dry_diameter"][0]) - plot_bar(hists_dict["diameter"][0], hists_dict["diameter"][1], ax1, color = "green") - plot_bar(hists_dict["dry_diameter"][0], hists_dict["dry_diameter"][1], ax2, color = "green") - plot_bar(hists_dict["ice_dry_diameter"][0], hists_dict["ice_dry_diameter"][1], ax3, color = "blue") - ax1.grid() - ax2.grid() - ax3.grid() - - if log_show: - ax1.set_xlabel("diameter (10^* um)") - ax2.set_xlabel("dry diameter (10^* um)") - ax3.set_xlabel("dry diameter (10^* um)") - else: - ax1.set_xlabel("diameter (um)") - ax2.set_xlabel("dry diameter (um)") - ax3.set_xlabel("dry diameter (um)") - - ax1.set_ylabel("Number concentration density (m^-3)") - ax2.set_ylabel("Number concentration density (m^-3)") - ax3.set_ylabel("Number concentration density of ice (m^-3)") - - - - #set_trace() - -if __name__ == "__main__": - - fig = plt.figure(figsize = (15, 16)) - ax1 = fig.add_subplot(2, 3, 1) - ax2 = fig.add_subplot(2, 3, 2) - ax3 = fig.add_subplot(2, 3, 3) - - ax4 = fig.add_subplot(2, 3, 4) - ax5 = fig.add_subplot(2, 3, 5) - ax6 = fig.add_subplot(2, 3, 6) - - draw_hist(initial_time, ax1, ax2, ax3, log_show = True) - ax1.set_title("Initial distribution") - ax2.set_title("Initial distribution") - ax3.set_title("Ice initial distribution") - - - draw_hist(final_time, ax4, ax5, ax6, log_show = True) - ax4.set_title("Final distribution") - ax5.set_title("Final distribution") - ax6.set_title("Ice final distribution") - - plt.tight_layout(pad=5, w_pad=5, h_pad=10) - #plt.tight_layout() - - plt.show() - - - - From f713e41a0cda6f1d7ae68de05ef01a5aa6b40595 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:38:16 -0600 Subject: [PATCH 017/127] Delete scenarios/7_freezing/make_pres.py --- scenarios/7_freezing/make_pres.py | 79 ------------------------------- 1 file changed, 79 deletions(-) delete mode 100755 scenarios/7_freezing/make_pres.py diff --git a/scenarios/7_freezing/make_pres.py b/scenarios/7_freezing/make_pres.py deleted file mode 100755 index af7d4fed7..000000000 --- a/scenarios/7_freezing/make_pres.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -from pdb import set_trace -from scipy.interpolate import interp1d -import pandas as pd - -min_SI = 60 -hour_SI = 3600 -day_SI = 24 * 3600 - - -#total_hour = 24 -#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) -total_time = 3600 -dtime = 60 -timeList = np.arange(0, total_time + dtime, dtime) -Nt = len(timeList) - -def change_linear(start_T, end_T, Nt): - return np.linspace(start_T, end_T, Nt) - -def change_linear_stages(tList, tempList): - f = interp1d(tList, tempList) - temperature = f(timeList) - return temperature - -def change_curve_file(fileName): - df = pd.read_csv(fileName, header = None) - x = df[0].values - y = df[1].values - f = interp1d(x, y) - data = f(timeList) - return data - -def make_file(timeList, TList, fileName = "pressure.dat"): - with open(fileName, "w") as fw: - fw.write("# time (s)\n") - fw.write("# pressure (Pa)\n") - fw.write("time ") - for time in timeList: - fw.write("%d " % (time)) - fw.write("\n") - fw.write("pressure ") - for T in TList: - fw.write("%.3f " % (T)) - fw.write("\n") - - -if __name__ == "__main__": - print(Nt) - TLists = [ - #change_linear(288, 240, 25), - #change_linear(240, 288, 24), - #change_linear(240, 240, 5), - #change_linear(240, 278, 19), - #change_linear(240, 240, 24), - - #change_linear(265, 225, 61), - #change_linear(250, 250, total_hour + 1 - 13) - change_linear_stages( - #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], - #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], - #tList = [0, 14 * min_SI, 15 * min_SI, total_time], - #tempList = [270 , 270 , 225 , 225], - tList = [0, total_time], - tempList = [50000, 50000], - - ) - #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_P_black.csv") * 100 - ] - TList = np.concatenate(TLists) - assert len(timeList) == len(TList) - make_file(timeList, TList) - - - - - From 5bc0996b3f58aa2e5a0a0dc821c6b842cd5f77d5 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:38:24 -0600 Subject: [PATCH 018/127] Delete scenarios/7_freezing/make_temp.py --- scenarios/7_freezing/make_temp.py | 89 ------------------------------- 1 file changed, 89 deletions(-) delete mode 100755 scenarios/7_freezing/make_temp.py diff --git a/scenarios/7_freezing/make_temp.py b/scenarios/7_freezing/make_temp.py deleted file mode 100755 index 3993937bf..000000000 --- a/scenarios/7_freezing/make_temp.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -from pdb import set_trace -from scipy.interpolate import interp1d -import pandas as pd -from sys import argv - -min_SI = 60 -hour_SI = 3600 -day_SI = 24 * 3600 - - -#total_hour = 24 -#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) -if len(argv) > 1: - assert len(argv) == 3 - total_time = float(argv[1]) - dtime = float(argv[2]) -else: - total_time = 600 - dtime = 1 -timeList = np.arange(0, total_time + dtime, dtime) -Nt = len(timeList) - -def change_linear(start_T, end_T, Nt): - return np.linspace(start_T, end_T, Nt) - -def change_linear_stages(tList, tempList): - f = interp1d(tList, tempList) - temperature = f(timeList) - return temperature - -def change_curve_file(fileName): - df = pd.read_csv(fileName, header = None) - x = df[0].values - y = df[1].values - f = interp1d(x, y) - data = f(timeList) - return data - - -def make_file(timeList, TList, fileName = "temp.dat"): - with open(fileName, "w") as fw: - fw.write("# time (s)\n") - fw.write("# temp (K)\n") - fw.write("time ") - for time in timeList: - fw.write("%.3f " % (time)) - fw.write("\n") - fw.write("temp ") - for T in TList: - fw.write("%.3f " % (T)) - fw.write("\n") - - -if __name__ == "__main__": - print(Nt) - TLists = [ - #change_linear(288, 240, 25), - #change_linear(240, 288, 24), - #change_linear(240, 240, 5), - #change_linear(240, 278, 19), - #change_linear(240, 240, 24), - - #change_linear(265, 225, 61), - #change_linear(250, 250, total_hour + 1 - 13) - change_linear_stages( - #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], - #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], - #tList = [0, 14 * min_SI, 15 * min_SI, total_time], - #tempList = [270 , 270 , 225 , 225], - #tList = [0, total_time/2, total_time/2 + 1, total_time], - #tempList = [263.15, 243.15, 263.15, 243.15], - tList = [0, total_time], - tempList = [253.15, 253.15], - - ) - #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_Tg_black.csv") - #change_curve_file("/data/nriemer/d/wenhant2/datasets/LT_Tempfile/evaporation_temp.csv") - ] - TList = np.concatenate(TLists) - assert len(timeList) == len(TList) - make_file(timeList, TList) - - - - - From ceaf677939339195e51e28f9ebed42d5d9242dee Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:38:33 -0600 Subject: [PATCH 019/127] Delete scenarios/7_freezing/plot_temp1.py --- scenarios/7_freezing/plot_temp1.py | 86 ------------------------------ 1 file changed, 86 deletions(-) delete mode 100755 scenarios/7_freezing/plot_temp1.py diff --git a/scenarios/7_freezing/plot_temp1.py b/scenarios/7_freezing/plot_temp1.py deleted file mode 100755 index cae99efdf..000000000 --- a/scenarios/7_freezing/plot_temp1.py +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/env python -import os -import glob -import netCDF4 as nc -import numpy as np -import matplotlib.pyplot as plt -from pdb import set_trace - -sim_days = 2 -log_show = False -#draw_ice_type = "num_conc" -#OutDir = "out_base" -#OutDir = "out_coag" -#OutDir = "out_cold" -#OutDir = "out_poster" -#OutDir = "out_poster2" -OutDir = "." -fontsize_label = 15 -caseName = "out_case2" - -temperature_data = [] -pressure_data = [] -relhum_data = [] -freezing_data = [] -P_frozen_data = [] -num_conc_data = [] -freezing_total = [] -freezing_total2 = [] -freezing_mass_data = [] -freezing_mass_data2 = [] - -t_list = np.array(list(range(1, 864 *sim_days))) -isFirst = True -for t in t_list: - fileName = OutDir + "/" + caseName+ "/freezing_part_0001_" + str(t).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) - particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) - temperature = float(ncf.variables["temperature"][0].filled(np.nan)) - relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) - pressure = float(ncf.variables["pressure"][0].filled(np.nan)) - - freezing_data.append(part_frozen) - P_frozen_data.append(p_frozen) - num_conc_data.append(num_conc) - freezing_total.append(int(np.sum(p_frozen * num_conc))) - freezing_total2.append(int(np.sum(part_frozen * num_conc))) - freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) - freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) - - temperature_data.append(temperature) - relhum_data.append(relhum * 100) - pressure_data.append(pressure) - - -temperature_data = np.array(temperature_data) -relhum_data = np.array(relhum_data) -pressure_data = np.array(pressure_data) -freezing_mass_data = np.array(freezing_mass_data) -freezing_mass_data2 = np.array(freezing_mass_data2) - -air_density_data = pressure / (286 * temperature_data) -mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) -mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) - -f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) -f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) -P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) -P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) - -fig = plt.figure(figsize = (12, 6)) -ax = fig.add_subplot(1, 1, 1) -ax.plot(t_list * 100 / 3600, mixing_ratio_ice * 1000, label = "Ice crystals", color = "blue") -ax.set_ylabel("Mixing ratio of ice (g/Kg)", color = "blue", fontsize = 15) -axt = ax.twinx() -axt.plot(t_list * 100 / 3600, temperature_data - 273.15, label = "temperature", color = "red") -axt.set_ylabel("Temperature (˚C)", color = "red", fontsize = 15) -axt.plot(t_list * 100 / 3600, np.full((len(t_list)), 0), linestyle = "dashed", color = "grey") -ax.set_xlabel("time (hour)", fontsize = 15) -ax.grid() -#ax.legend() -plt.show() - - From 4b8a632f59388d0cea5ee65102497fb6330beade Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Mon, 11 Nov 2024 22:49:51 -0600 Subject: [PATCH 020/127] Update .gitignore to exclude some freezing scripts --- .gitignore | 13 +++ scenarios/7_freezing/hist.py | 168 ----------------------------- scenarios/7_freezing/make_pres.py | 79 -------------- scenarios/7_freezing/make_temp.py | 89 --------------- scenarios/7_freezing/plot_temp1.py | 86 --------------- 5 files changed, 13 insertions(+), 422 deletions(-) delete mode 100755 scenarios/7_freezing/hist.py delete mode 100755 scenarios/7_freezing/make_pres.py delete mode 100755 scenarios/7_freezing/make_temp.py delete mode 100755 scenarios/7_freezing/plot_temp1.py diff --git a/.gitignore b/.gitignore index 833f8e608..d535200e5 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,16 @@ scenarios/3_condense/spec/ scenarios/3_condense/temp/ scenarios/3_condense/out/ scenarios/4_chamber/out/ +scenarios/7_freezing/aero_init_tools +scenarios/7_freezing/draw.py +scenarios/7_freezing/freezing_run.sh +scenarios/7_freezing/freezing_timing.txt +scenarios/7_freezing/hist.py +scenarios/7_freezing/make_pres.py +scenarios/7_freezing/make_temp.py +scenarios/7_freezing/mass_to_volume.py +scenarios/7_freezing/volume_to_mass.py +scenarios/7_freezing/plot_temp1.py +scenarios/7_freezing/run_part.spec +scenarios/7_freezing/run_scripts +scenarios/7_freezing/visual_tools diff --git a/scenarios/7_freezing/hist.py b/scenarios/7_freezing/hist.py deleted file mode 100755 index 80879f037..000000000 --- a/scenarios/7_freezing/hist.py +++ /dev/null @@ -1,168 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import matplotlib.pyplot as plt -import netCDF4 as nc - -from pdb import set_trace - -caseName = "out_comp1" -initial_time = 0 -final_time = 3600 - -OutDir = "./" + caseName - -def vol2rad(vol): - return (3 * vol / 4 / np.pi) ** (1/3.0) - -def aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - -def aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind): - vol = 0 - for spec_name in aero_species_name2ind: - if spec_name == "H2O": - continue - vol += aero_particle_mass[aero_species_name2ind[spec_name], :] / aero_density[aero_species_name2ind[spec_name]] - return vol - -def aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind): - vol = aero_particle_volumn(aero_particle_mass, aero_density, aero_species_name2ind) - radius = vol2rad(vol) - diameter = 2 * radius - return diameter - -def aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind): - vol = aero_particle_dry_volumn(aero_particle_mass, aero_density, aero_species_name2ind) - radius = vol2rad(vol) - diameter = 2 * radius - return diameter - -def plot_bar(hist, edges, ax, **kwargs): - #mid = (edges[:-1] + edges[1:]) / 2 - """ - if log_show: - min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) - ax.bar(np.log10(mid), hist, width = min_interval * 3) - ax.set_xlabel(xlabel + " (10^* " + xunits + ")") - else: - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(mid, hist, width = min_interval * 1) - ax.set_xlabel(xlabel + " (" + xunits + ")") - """ - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(edges[:-1], hist / (edges[1:] - edges[:-1]), align = "edge", width = min_interval * 0.9, **kwargs) - - -def plot_bar_bck(hist, edges, ax, xlabel, xunits, log_show = False): - mid = (edges[:-1] + edges[1:]) / 2 - if log_show: - min_interval = np.min(np.log10(edges[1:]) - np.log10(edges[:-1])) - ax.bar(np.log10(mid), hist, width = min_interval * 3) - ax.set_xlabel(xlabel + " (10^* " + xunits + ")") - else: - min_interval = np.min(edges[1:] - edges[:-1]) - ax.bar(mid, hist, width = min_interval * 1) - ax.set_xlabel(xlabel + " (" + xunits + ")") - - #ax.stairs(hist, np.log10(edges)) - -def draw_hist(time, ax1, ax2, ax3, bins = 100, log_show = False): - time_in_fileName = int(time / 100) + 1 - fileName = OutDir + "/freezing_part_0001_" + str(time_in_fileName).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - time_ = float(ncf.variables["time"][:].filled(np.nan)) - assert np.abs(time - time_) < 10e-6 - aero_particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan) # (aero_species, aero_particle) - aero_density = ncf.variables["aero_density"][:].filled(np.nan) #(aero_species) - aero_num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) # (aero_particle) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - aero_particle_vol = (aero_particle_mass.T / aero_density).T - aero_species_ind = ncf.variables["aero_species"][:].filled(np.nan) - 1 - aero_species_names = ncf.variables["aero_species"].names.split(",") - aero_species_ind2name = {ind:name for ind, name in zip(aero_species_ind, aero_species_names)} - aero_species_name2ind = {name:ind for ind, name in zip(aero_species_ind, aero_species_names)} - - diameter = aero_particle_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - dry_diameter = aero_particle_dry_diameter(aero_particle_mass, aero_density, aero_species_name2ind) - - diameter *= 10**6 - dry_diameter *= 10**6 - hists_dict = {} - if log_show: - hist, bin_edges = np.histogram(np.log10(diameter), weights=aero_num_conc, bins = bins) - hists_dict["diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(np.log10(dry_diameter), weights = aero_num_conc * p_frozen, bins = bins) - hists_dict["ice_dry_diameter"] = (hist, bin_edges) - - else: - hist, bin_edges = np.histogram(diameter, weights=aero_num_conc, bins = bins) - hists_dict["diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc, bins = bins) - hists_dict["dry_diameter"] = (hist, bin_edges) - hist, bin_edges = np.histogram(dry_diameter, weights=aero_num_conc * p_frozen, bins = bins) - hists_dict["ice_dry_diameter"] = (hist, bin_edges) - - - - #ax1.bar((hists_dict["diameter"][1][:-1] + hists_dict["diameter"][1][1:]) / 2, hists_dict["diameter"][0]) - #ax2.bar((hists_dict["dry_diameter"][1][:-1] + hists_dict["dry_diameter"][1][1:]) / 2, hists_dict["dry_diameter"][0]) - plot_bar(hists_dict["diameter"][0], hists_dict["diameter"][1], ax1, color = "green") - plot_bar(hists_dict["dry_diameter"][0], hists_dict["dry_diameter"][1], ax2, color = "green") - plot_bar(hists_dict["ice_dry_diameter"][0], hists_dict["ice_dry_diameter"][1], ax3, color = "blue") - ax1.grid() - ax2.grid() - ax3.grid() - - if log_show: - ax1.set_xlabel("diameter (10^* um)") - ax2.set_xlabel("dry diameter (10^* um)") - ax3.set_xlabel("dry diameter (10^* um)") - else: - ax1.set_xlabel("diameter (um)") - ax2.set_xlabel("dry diameter (um)") - ax3.set_xlabel("dry diameter (um)") - - ax1.set_ylabel("Number concentration density (m^-3)") - ax2.set_ylabel("Number concentration density (m^-3)") - ax3.set_ylabel("Number concentration density of ice (m^-3)") - - - - #set_trace() - -if __name__ == "__main__": - - fig = plt.figure(figsize = (15, 16)) - ax1 = fig.add_subplot(2, 3, 1) - ax2 = fig.add_subplot(2, 3, 2) - ax3 = fig.add_subplot(2, 3, 3) - - ax4 = fig.add_subplot(2, 3, 4) - ax5 = fig.add_subplot(2, 3, 5) - ax6 = fig.add_subplot(2, 3, 6) - - draw_hist(initial_time, ax1, ax2, ax3, log_show = True) - ax1.set_title("Initial distribution") - ax2.set_title("Initial distribution") - ax3.set_title("Ice initial distribution") - - - draw_hist(final_time, ax4, ax5, ax6, log_show = True) - ax4.set_title("Final distribution") - ax5.set_title("Final distribution") - ax6.set_title("Ice final distribution") - - plt.tight_layout(pad=5, w_pad=5, h_pad=10) - #plt.tight_layout() - - plt.show() - - - - diff --git a/scenarios/7_freezing/make_pres.py b/scenarios/7_freezing/make_pres.py deleted file mode 100755 index af7d4fed7..000000000 --- a/scenarios/7_freezing/make_pres.py +++ /dev/null @@ -1,79 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -from pdb import set_trace -from scipy.interpolate import interp1d -import pandas as pd - -min_SI = 60 -hour_SI = 3600 -day_SI = 24 * 3600 - - -#total_hour = 24 -#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) -total_time = 3600 -dtime = 60 -timeList = np.arange(0, total_time + dtime, dtime) -Nt = len(timeList) - -def change_linear(start_T, end_T, Nt): - return np.linspace(start_T, end_T, Nt) - -def change_linear_stages(tList, tempList): - f = interp1d(tList, tempList) - temperature = f(timeList) - return temperature - -def change_curve_file(fileName): - df = pd.read_csv(fileName, header = None) - x = df[0].values - y = df[1].values - f = interp1d(x, y) - data = f(timeList) - return data - -def make_file(timeList, TList, fileName = "pressure.dat"): - with open(fileName, "w") as fw: - fw.write("# time (s)\n") - fw.write("# pressure (Pa)\n") - fw.write("time ") - for time in timeList: - fw.write("%d " % (time)) - fw.write("\n") - fw.write("pressure ") - for T in TList: - fw.write("%.3f " % (T)) - fw.write("\n") - - -if __name__ == "__main__": - print(Nt) - TLists = [ - #change_linear(288, 240, 25), - #change_linear(240, 288, 24), - #change_linear(240, 240, 5), - #change_linear(240, 278, 19), - #change_linear(240, 240, 24), - - #change_linear(265, 225, 61), - #change_linear(250, 250, total_hour + 1 - 13) - change_linear_stages( - #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], - #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], - #tList = [0, 14 * min_SI, 15 * min_SI, total_time], - #tempList = [270 , 270 , 225 , 225], - tList = [0, total_time], - tempList = [50000, 50000], - - ) - #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_P_black.csv") * 100 - ] - TList = np.concatenate(TLists) - assert len(timeList) == len(TList) - make_file(timeList, TList) - - - - - diff --git a/scenarios/7_freezing/make_temp.py b/scenarios/7_freezing/make_temp.py deleted file mode 100755 index 3993937bf..000000000 --- a/scenarios/7_freezing/make_temp.py +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -from pdb import set_trace -from scipy.interpolate import interp1d -import pandas as pd -from sys import argv - -min_SI = 60 -hour_SI = 3600 -day_SI = 24 * 3600 - - -#total_hour = 24 -#timeList = np.arange(0, 3600 * (total_hour + 1), 3600) -if len(argv) > 1: - assert len(argv) == 3 - total_time = float(argv[1]) - dtime = float(argv[2]) -else: - total_time = 600 - dtime = 1 -timeList = np.arange(0, total_time + dtime, dtime) -Nt = len(timeList) - -def change_linear(start_T, end_T, Nt): - return np.linspace(start_T, end_T, Nt) - -def change_linear_stages(tList, tempList): - f = interp1d(tList, tempList) - temperature = f(timeList) - return temperature - -def change_curve_file(fileName): - df = pd.read_csv(fileName, header = None) - x = df[0].values - y = df[1].values - f = interp1d(x, y) - data = f(timeList) - return data - - -def make_file(timeList, TList, fileName = "temp.dat"): - with open(fileName, "w") as fw: - fw.write("# time (s)\n") - fw.write("# temp (K)\n") - fw.write("time ") - for time in timeList: - fw.write("%.3f " % (time)) - fw.write("\n") - fw.write("temp ") - for T in TList: - fw.write("%.3f " % (T)) - fw.write("\n") - - -if __name__ == "__main__": - print(Nt) - TLists = [ - #change_linear(288, 240, 25), - #change_linear(240, 288, 24), - #change_linear(240, 240, 5), - #change_linear(240, 278, 19), - #change_linear(240, 240, 24), - - #change_linear(265, 225, 61), - #change_linear(250, 250, total_hour + 1 - 13) - change_linear_stages( - #tList = [0, 5 * min_SI, 15 * min_SI, 20 * min_SI, 30 * min_SI, 35 * min_SI, 45 * min_SI, 50 * min_SI, total_time], - #tempList = [280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 , 237.5 , 280 ], - #tList = [0, 14 * min_SI, 15 * min_SI, total_time], - #tempList = [270 , 270 , 225 , 225], - #tList = [0, total_time/2, total_time/2 + 1, total_time], - #tempList = [263.15, 243.15, 263.15, 243.15], - tList = [0, total_time], - tempList = [253.15, 253.15], - - ) - #change_curve_file("/data/keeling/a/wenhant2/Scripts/analysis/3_freezing_BenchPlots/Mohler2008_data/Mohler2008_fig3_Tg_black.csv") - #change_curve_file("/data/nriemer/d/wenhant2/datasets/LT_Tempfile/evaporation_temp.csv") - ] - TList = np.concatenate(TLists) - assert len(timeList) == len(TList) - make_file(timeList, TList) - - - - - diff --git a/scenarios/7_freezing/plot_temp1.py b/scenarios/7_freezing/plot_temp1.py deleted file mode 100755 index cae99efdf..000000000 --- a/scenarios/7_freezing/plot_temp1.py +++ /dev/null @@ -1,86 +0,0 @@ -#!/usr/bin/env python -import os -import glob -import netCDF4 as nc -import numpy as np -import matplotlib.pyplot as plt -from pdb import set_trace - -sim_days = 2 -log_show = False -#draw_ice_type = "num_conc" -#OutDir = "out_base" -#OutDir = "out_coag" -#OutDir = "out_cold" -#OutDir = "out_poster" -#OutDir = "out_poster2" -OutDir = "." -fontsize_label = 15 -caseName = "out_case2" - -temperature_data = [] -pressure_data = [] -relhum_data = [] -freezing_data = [] -P_frozen_data = [] -num_conc_data = [] -freezing_total = [] -freezing_total2 = [] -freezing_mass_data = [] -freezing_mass_data2 = [] - -t_list = np.array(list(range(1, 864 *sim_days))) -isFirst = True -for t in t_list: - fileName = OutDir + "/" + caseName+ "/freezing_part_0001_" + str(t).zfill(8) + ".nc" - ncf = nc.Dataset(fileName) - part_frozen = ncf.variables["aero_frozen"][:].filled(np.nan) - p_frozen = ncf.variables["aero_frozen_probability"][:].filled(np.nan) - num_conc = ncf.variables["aero_num_conc"][:].filled(np.nan) - particle_mass = ncf.variables["aero_particle_mass"][:].filled(np.nan).sum(axis = 0) - temperature = float(ncf.variables["temperature"][0].filled(np.nan)) - relhum = float(ncf.variables["relative_humidity"][0].filled(np.nan)) - pressure = float(ncf.variables["pressure"][0].filled(np.nan)) - - freezing_data.append(part_frozen) - P_frozen_data.append(p_frozen) - num_conc_data.append(num_conc) - freezing_total.append(int(np.sum(p_frozen * num_conc))) - freezing_total2.append(int(np.sum(part_frozen * num_conc))) - freezing_mass_data.append( np.sum(p_frozen * num_conc * particle_mass) ) - freezing_mass_data2.append( np.sum(part_frozen * num_conc * particle_mass) ) - - temperature_data.append(temperature) - relhum_data.append(relhum * 100) - pressure_data.append(pressure) - - -temperature_data = np.array(temperature_data) -relhum_data = np.array(relhum_data) -pressure_data = np.array(pressure_data) -freezing_mass_data = np.array(freezing_mass_data) -freezing_mass_data2 = np.array(freezing_mass_data2) - -air_density_data = pressure / (286 * temperature_data) -mixing_ratio_ice = freezing_mass_data / (air_density_data * 1) -mixing_ratio_ice2 = freezing_mass_data2 / (air_density_data * 1) - -f_ufz_mean = np.array([np.mean(1 - p_frozen) for p_frozen in P_frozen_data]) -f_ufz_std = np.array([np.std(1 - p_frozen) for p_frozen in P_frozen_data]) -P_frz_mean = np.array([np.mean(p_frozen) for p_frozen in P_frozen_data]) -P_frz_std = np.array([np.std(p_frozen) for p_frozen in P_frozen_data]) - -fig = plt.figure(figsize = (12, 6)) -ax = fig.add_subplot(1, 1, 1) -ax.plot(t_list * 100 / 3600, mixing_ratio_ice * 1000, label = "Ice crystals", color = "blue") -ax.set_ylabel("Mixing ratio of ice (g/Kg)", color = "blue", fontsize = 15) -axt = ax.twinx() -axt.plot(t_list * 100 / 3600, temperature_data - 273.15, label = "temperature", color = "red") -axt.set_ylabel("Temperature (˚C)", color = "red", fontsize = 15) -axt.plot(t_list * 100 / 3600, np.full((len(t_list)), 0), linestyle = "dashed", color = "grey") -ax.set_xlabel("time (hour)", fontsize = 15) -ax.grid() -#ax.legend() -plt.show() - - From 8688c83a53c6a7246dfc473ccfb12c2ebbd65890 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 22:29:09 -0600 Subject: [PATCH 021/127] update and modify test cases for freezing --- CMakeLists.txt | 28 ++++++++++++- test/additive/aero_data.dat | 2 +- test/additive/run_part.spec | 1 + test/average/aero_data.dat | 40 +++++++++---------- test/average/run_part.spec | 1 + test/bidisperse/aero_data.dat | 2 +- test/bidisperse/run_part.spec | 1 + test/brownian/aero_data.dat | 2 +- test/brownian/run_part.spec | 1 + test/condense/aero_data.dat | 40 +++++++++---------- test/condense/run_part.spec | 1 + test/emission/aero_data.dat | 6 +-- test/emission/run_part.spec | 1 + test/fractal/aero_data.dat | 2 +- .../run_part_brown_cont_df_1_8_restart.spec | 1 + .../run_part_brown_cont_df_1_8_upto1000s.spec | 1 + .../run_part_brown_free_df_2_4_restart.spec | 1 + .../run_part_brown_free_df_2_4_upto1000s.spec | 1 + test/freezing/README | 15 +++++-- test/freezing/aero_data.dat | 32 ++++++++++++++- test/freezing/aero_init_comp.dat | 7 +++- test/freezing/aero_init_dist.dat | 11 ++--- test/freezing/plot.gnuplot | 13 ------ test/freezing/pressure.dat | 6 +-- test/freezing/run_part.spec | 33 +++++++++------ test/freezing/temp.dat | 8 ++-- test/freezing/test_freezing_1.sh | 12 +++++- test/loss/aero_data.dat | 2 +- test/loss/run_chamber_part.spec | 1 + test/loss/run_constant_part.spec | 1 + test/loss/run_drydep_part.spec | 1 + test/loss/run_volume_part.spec | 1 + test/mixing_state/aero_data.dat | 8 ++-- test/mixing_state/run_part.spec | 1 + test/mosaic/aero_data.dat | 40 +++++++++---------- test/mosaic/run_part.spec | 1 + test/mosaic/run_part_restarted.spec | 1 + test/nucleate/aero_data.dat | 4 +- test/nucleate/run_part.spec | 1 + test/parallel/aero_data.dat | 2 +- test/parallel/run_part_parallel_dist.spec | 1 + .../run_part_parallel_dist_single.spec | 1 + test/parallel/run_part_parallel_mix.spec | 1 + test/parallel/run_part_serial.spec | 1 + test/sedi/aero_data.dat | 2 +- test/sedi/run_part.spec | 1 + 46 files changed, 216 insertions(+), 124 deletions(-) delete mode 100644 test/freezing/plot.gnuplot diff --git a/CMakeLists.txt b/CMakeLists.txt index 60cc862f5..4b5791543 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -170,7 +170,7 @@ add_library(partmclib src/aero_state.F90 src/integer_varray.F90 src/netcdf.F90 src/aero_info.F90 src/aero_info_array.F90 src/nucleate.F90 src/condense.F90 src/fractal.F90 src/chamber.F90 src/camp_interface.F90 src/photolysis.F90 src/sys.F90 - src/freezing.F90 + src/ice_nucleation.F90 ${SUNDIALS_SRC} ${GSL_SRC} ${C_SORT_SRC}) @@ -195,6 +195,7 @@ add_executable(test_bidisperse_ode target_link_libraries(test_bidisperse_ode partmclib) ###################################################################### + # test_bidisperse_extract add_executable(test_bidisperse_extract @@ -203,6 +204,7 @@ add_executable(test_bidisperse_extract target_link_libraries(test_bidisperse_extract ${NETCDF_LIBS}) ###################################################################### + # test_nucleate_ode add_executable(test_nucleate_ode test/nucleate/test_nucleate_ode.F90 @@ -322,6 +324,14 @@ add_executable(urban_plume_process target_link_libraries(urban_plume_process partmclib) ###################################################################### +# scenarios/7_freezing/freezing_process + +add_executable(freezing_process + scenarios/7_freezing/freezing_process.F90) +target_link_libraries(freezing_process partmclib) + +###################################################################### + # scenarios/4_chamber/chamber_process add_executable(chamber_process @@ -329,3 +339,19 @@ add_executable(chamber_process target_link_libraries(chamber_process partmclib) ###################################################################### + +# test_freezing_extract + +add_executable(test_freezing_extract + test/freezing/test_freezing_extract.F90) + +target_link_libraries(test_freezing_extract ${NETCDF_LIBS}) +###################################################################### + +# test_freezing_theoretical + +add_executable(test_freezing_theoretical + test/freezing/test_freezing_theoretical.F90) + +target_link_libraries(test_freezing_theoretical partmclib) +###################################################################### diff --git a/test/additive/aero_data.dat b/test/additive/aero_data.dat index 41cdc37fc..dd551dfa9 100644 --- a/test/additive/aero_data.dat +++ b/test/additive/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/additive/run_part.spec b/test/additive/run_part.spec index 756a473f4..33cd8b1ce 100644 --- a/test/additive/run_part.spec +++ b/test/additive/run_part.spec @@ -39,6 +39,7 @@ coag_kernel additive # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/average/aero_data.dat b/test/average/aero_data.dat index adc790ba7..ef4fe0e19 100644 --- a/test/average/aero_data.dat +++ b/test/average/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa -H2O 1000 0 18d-3 0 -SO4 1800 0 96d-3 0.53 -NO3 1800 0 62d-3 0.53 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.53 -CO3 2600 0 60d-3 0.53 -MSA 1800 0 95d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OC 1000 0 1d-3 0.1 -BC 1800 0 1d-3 0 -OIN 2600 0 1d-3 0.1 -ARO1 1000 0 150d-3 0.1 -ARO2 1000 0 150d-3 0.1 -ALK1 1000 0 140d-3 0.1 -OLE1 1000 0 140d-3 0.1 -API1 1000 0 184d-3 0.1 -API2 1000 0 184d-3 0.1 -LIM1 1000 0 200d-3 0.1 -LIM2 1000 0 200d-3 0.1 +H2O 1000 0 18d-3 0 0 0 +SO4 1800 0 96d-3 0.53 0 0 +NO3 1800 0 62d-3 0.53 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.53 0 0 +CO3 2600 0 60d-3 0.53 0 0 +MSA 1800 0 95d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +ARO1 1000 0 150d-3 0.1 0 0 +ARO2 1000 0 150d-3 0.1 0 0 +ALK1 1000 0 140d-3 0.1 0 0 +OLE1 1000 0 140d-3 0.1 0 0 +API1 1000 0 184d-3 0.1 0 0 +API2 1000 0 184d-3 0.1 0 0 +LIM1 1000 0 200d-3 0.1 0 0 +LIM2 1000 0 200d-3 0.1 0 0 diff --git a/test/average/run_part.spec b/test/average/run_part.spec index d0fd01bcf..64c10b682 100644 --- a/test/average/run_part.spec +++ b/test/average/run_part.spec @@ -38,6 +38,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling no # whether to allow doubling (yes/no) diff --git a/test/bidisperse/aero_data.dat b/test/bidisperse/aero_data.dat index 41cdc37fc..c00133a94 100644 --- a/test/bidisperse/aero_data.dat +++ b/test/bidisperse/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/bidisperse/run_part.spec b/test/bidisperse/run_part.spec index 429d314b4..efbc15bd7 100644 --- a/test/bidisperse/run_part.spec +++ b/test/bidisperse/run_part.spec @@ -39,6 +39,7 @@ coag_kernel sedi # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/brownian/aero_data.dat b/test/brownian/aero_data.dat index 41cdc37fc..533f85a76 100644 --- a/test/brownian/aero_data.dat +++ b/test/brownian/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/brownian/run_part.spec b/test/brownian/run_part.spec index e061466d5..02c37304c 100644 --- a/test/brownian/run_part.spec +++ b/test/brownian/run_part.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/condense/aero_data.dat b/test/condense/aero_data.dat index af22101b2..a0dce82c2 100644 --- a/test/condense/aero_data.dat +++ b/test/condense/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 1 96d-3 0 -NO3 1800 1 62d-3 0 -Cl 2200 1 35.5d-3 0 -NH4 1800 1 18d-3 0 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 1 60d-3 0 -Na 2200 1 23d-3 0 -Ca 2600 1 40d-3 0 -OIN 2600 0 1d-3 0.1 -OC 1400 0 1d-3 0.1 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 1 96d-3 0 0 0 +NO3 1800 1 62d-3 0 0 0 +Cl 2200 1 35.5d-3 0 0 0 +NH4 1800 1 18d-3 0 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 1 60d-3 0 0 0 +Na 2200 1 23d-3 0 0 0 +Ca 2600 1 40d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1400 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/condense/run_part.spec b/test/condense/run_part.spec index 3820bce61..d0b716c99 100644 --- a/test/condense/run_part.spec +++ b/test/condense/run_part.spec @@ -39,6 +39,7 @@ do_condensation yes # whether to do condensation (yes/no) do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling no # whether to allow doubling (yes/no) diff --git a/test/emission/aero_data.dat b/test/emission/aero_data.dat index 83d7a7091..d52f270c3 100644 --- a/test/emission/aero_data.dat +++ b/test/emission/aero_data.dat @@ -1,4 +1,4 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SI 10000 0 18d-3 0 -SB 100 0 18d-3 0 -SE 1500 0 18d-3 0 +SI 10000 0 18d-3 0 0 0 +SB 100 0 18d-3 0 0 0 +SE 1500 0 18d-3 0 0 0 diff --git a/test/emission/run_part.spec b/test/emission/run_part.spec index 59b8ef589..4f60c7739 100644 --- a/test/emission/run_part.spec +++ b/test/emission/run_part.spec @@ -38,6 +38,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/fractal/aero_data.dat b/test/fractal/aero_data.dat index 21e82154f..22df47dec 100644 --- a/test/fractal/aero_data.dat +++ b/test/fractal/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -BC 4200 0 1d-3 0 +BC 4200 0 1d-3 0 0 0 diff --git a/test/fractal/run_part_brown_cont_df_1_8_restart.spec b/test/fractal/run_part_brown_cont_df_1_8_restart.spec index e8a9c04e5..2731e2012 100644 --- a/test/fractal/run_part_brown_cont_df_1_8_restart.spec +++ b/test/fractal/run_part_brown_cont_df_1_8_restart.spec @@ -33,6 +33,7 @@ coag_kernel brown_cont # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/fractal/run_part_brown_cont_df_1_8_upto1000s.spec b/test/fractal/run_part_brown_cont_df_1_8_upto1000s.spec index 131cdd26a..32a836217 100644 --- a/test/fractal/run_part_brown_cont_df_1_8_upto1000s.spec +++ b/test/fractal/run_part_brown_cont_df_1_8_upto1000s.spec @@ -42,6 +42,7 @@ coag_kernel brown_cont # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/fractal/run_part_brown_free_df_2_4_restart.spec b/test/fractal/run_part_brown_free_df_2_4_restart.spec index 0e60f2a2b..f0d83fc62 100644 --- a/test/fractal/run_part_brown_free_df_2_4_restart.spec +++ b/test/fractal/run_part_brown_free_df_2_4_restart.spec @@ -33,6 +33,7 @@ coag_kernel brown_free # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/fractal/run_part_brown_free_df_2_4_upto1000s.spec b/test/fractal/run_part_brown_free_df_2_4_upto1000s.spec index 4ed51fd8f..01b9b6d72 100644 --- a/test/fractal/run_part_brown_free_df_2_4_upto1000s.spec +++ b/test/fractal/run_part_brown_free_df_2_4_upto1000s.spec @@ -42,6 +42,7 @@ coag_kernel brown_free # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/freezing/README b/test/freezing/README index 1bff2f5b6..5e3cc4ebc 100644 --- a/test/freezing/README +++ b/test/freezing/README @@ -1,6 +1,13 @@ -Freezing Test -============= +Immersion freezing Test-case +================================== +The initial condition is an internally mixed INPs in a constant +temperature process. All particles initially immersed in water, +with wet diameter of ~2.15 um in average, and dry diameter +of 1 um in average. The log-std of wet and dry diameter is 0.5. +All particles contain an insoluble INP, with 50% of surface +covered by illite, and 50% of surface by Fe2O3. The temperature +is -20 degrees celsius. -This test reproduces immersion freezing simulations from Alpert & Knopf 2016 -(https://doi.org/10.5194/acp-16-2083-2016). +The theoretical frozen fraction results are calculated using +the equation (3.40) in Tang 2024 (https://www.ideals.illinois.edu/items/131711). diff --git a/test/freezing/aero_data.dat b/test/freezing/aero_data.dat index 41cdc37fc..3735cb147 100644 --- a/test/freezing/aero_data.dat +++ b/test/freezing/aero_data.dat @@ -1,2 +1,30 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/test/freezing/aero_init_comp.dat b/test/freezing/aero_init_comp.dat index 7430b9ccb..014decb58 100644 --- a/test/freezing/aero_init_comp.dat +++ b/test/freezing/aero_init_comp.dat @@ -1,2 +1,5 @@ -# mass fractions -H2O 1 +# mass fractions +H2O 0.69257407 +Fe2O3 0.20161601 +ILT 0.10580993 + diff --git a/test/freezing/aero_init_dist.dat b/test/freezing/aero_init_dist.dat index 1600fb609..03ecb9a2a 100644 --- a/test/freezing/aero_init_dist.dat +++ b/test/freezing/aero_init_dist.dat @@ -1,7 +1,8 @@ -mode_name init # name of mode source +# +mode_name init1 # name of mode source mass_frac aero_init_comp.dat # species mass fractions diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e9 # particle number concentration (#/m^3) -geom_mean_diam 2e-5 # geometric mean diameter (m) -log10_geom_std_dev 0.2 # log_10 of geometric std dev of diameter +mode_type mono # type of distribution +num_conc 1e8 # particle number concentration (#/m^3) +diam 2.154434690031885e-06 # geometric mean diameter (m) +#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/test/freezing/plot.gnuplot b/test/freezing/plot.gnuplot deleted file mode 100644 index bfd023276..000000000 --- a/test/freezing/plot.gnuplot +++ /dev/null @@ -1,13 +0,0 @@ -array files = ['01', '02', '03', '04', '05', '06', '07'] -a=system("ls -1 *.txt | cut -d_ -f4") -array SUM[|files|] -do for [i=1:|files|] { - stats 'freezing_part_0001_000000'.files[i].'_aero_particles.txt' using 6 nooutput - SUM[i] = STATS_sum -} -set style fill solid -set boxwidth 0.5 -set xlabel 'output step' -set ylabel '# frozen' -set yrange [0:] -plot SUM using 1:2:xticlabels(files[column(0)+1]) with boxes \ No newline at end of file diff --git a/test/freezing/pressure.dat b/test/freezing/pressure.dat index 07215617a..570ccfb30 100644 --- a/test/freezing/pressure.dat +++ b/test/freezing/pressure.dat @@ -1,4 +1,4 @@ -# time (s) +# time (s) # pressure (Pa) -time 0 -pressure 1e5 +time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 +pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/test/freezing/run_part.spec b/test/freezing/run_part.spec index 60371f5f2..1a8882137 100644 --- a/test/freezing/run_part.spec +++ b/test/freezing/run_part.spec @@ -1,13 +1,14 @@ run_type particle # particle-resolved run output_prefix out/freezing_part # prefix of output files -n_repeat 1 # number of Monte Carlo repeats -n_part 1000 # total number of particles +n_repeat 10 # number of Monte Carlo repeats +n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) +#restart_file output/chiexp_indsize_0.8/restart.nc -t_max 600 # total simulation time (s) -del_t 5 # timestep (s) -t_output 100 # output interval (0 disables) (s) -t_progress 60 # progress printing interval (0 disables) (s) +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module @@ -27,7 +28,7 @@ aero_emissions aero_emit.dat # aerosol emissions file aero_background aero_back.dat # aerosol background file loss_function none # particle loss function -rel_humidity 0.999 # initial relative humidity (1) +rel_humidity 1.000 # initial relative humidity (1) latitude 40 # latitude (degrees, -90 to 90) longitude 0 # longitude (degrees, -180 to 180) altitude 0 # altitude (m) @@ -35,14 +36,22 @@ start_time 0 # start time (s since 00:00 UTC) start_day 1 # start day of year (UTC) do_coagulation no # whether to do coagulation (yes/no) -do_condensation no # whether to do condensation (yes/no) +#coag_kernel brown +do_condensation no # whether to do condensation (yes/no) +#do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) -do_freezing yes # whether to do freezing (yes/no) - -rand_init 0 # random initialization (0 to auto-generate) +do_immersion_freezing yes # whether to do freezing (yes/no) +#immersion_freezing_scheme singular +immersion_freezing_scheme ABIFM +#immersion_freezing_scheme const +#freezing_rate -.01123456789 +do_coating no + +rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) -do_select_weighting no # whether to select weighting explicitly (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat record_removals no # whether to record particle removals (yes/no) do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/temp.dat b/test/freezing/temp.dat index 491945f6e..c7af6c62c 100644 --- a/test/freezing/temp.dat +++ b/test/freezing/temp.dat @@ -1,4 +1,4 @@ -# time (s) -# temp (K) -time 0 -temp 288 +# time (s) +# temp (K) +time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 +temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 diff --git a/test/freezing/test_freezing_1.sh b/test/freezing/test_freezing_1.sh index e5ffd9a59..67b1fb8bb 100755 --- a/test/freezing/test_freezing_1.sh +++ b/test/freezing/test_freezing_1.sh @@ -6,8 +6,16 @@ set -e set -v # make sure that the current directory is the one where this script is cd ${0%/*} + # make the output directory if it doesn't exist mkdir -p out - ../../partmc run_part.spec -for i in out/freezing_part_*.nc; do ../../extract_aero_particles $i; done; +#./extract_data.py +../../test_freezing_extract + +#mkdir -p theoretical +#./theoretical_freezing.py +../../test_freezing_theoretical + + +../../numeric_diff --rel-tol 0.02 out/freezing_part_data.txt out/freezing_theoretical_data.txt diff --git a/test/loss/aero_data.dat b/test/loss/aero_data.dat index 41cdc37fc..c00133a94 100644 --- a/test/loss/aero_data.dat +++ b/test/loss/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/loss/run_chamber_part.spec b/test/loss/run_chamber_part.spec index ffe1d1db6..bfd58ed96 100644 --- a/test/loss/run_chamber_part.spec +++ b/test/loss/run_chamber_part.spec @@ -43,6 +43,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/loss/run_constant_part.spec b/test/loss/run_constant_part.spec index ecab2cef0..e95a4bc43 100644 --- a/test/loss/run_constant_part.spec +++ b/test/loss/run_constant_part.spec @@ -38,6 +38,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/loss/run_drydep_part.spec b/test/loss/run_drydep_part.spec index 1a40489b1..a20356b9a 100644 --- a/test/loss/run_drydep_part.spec +++ b/test/loss/run_drydep_part.spec @@ -38,6 +38,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/loss/run_volume_part.spec b/test/loss/run_volume_part.spec index 4b653b669..4a42b4c9d 100644 --- a/test/loss/run_volume_part.spec +++ b/test/loss/run_volume_part.spec @@ -38,6 +38,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/mixing_state/aero_data.dat b/test/mixing_state/aero_data.dat index 740f9933b..e6a526c89 100644 --- a/test/mixing_state/aero_data.dat +++ b/test/mixing_state/aero_data.dat @@ -1,5 +1,5 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -A 1000 0 100d-3 0.1 -B 1500 0 100d-3 0.1 -C 2000 0 100d-3 0.1 -D 2500 0 100d-3 0.1 +A 1000 0 100d-3 0.1 0 0 +B 1500 0 100d-3 0.1 0 0 +C 2000 0 100d-3 0.1 0 0 +D 2500 0 100d-3 0.1 0 0 diff --git a/test/mixing_state/run_part.spec b/test/mixing_state/run_part.spec index 1917543d1..7a55001d5 100644 --- a/test/mixing_state/run_part.spec +++ b/test/mixing_state/run_part.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/mosaic/aero_data.dat b/test/mosaic/aero_data.dat index d6d5f3538..b1a64b8a7 100644 --- a/test/mosaic/aero_data.dat +++ b/test/mosaic/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa -H2O 1000 0 18d-3 0 -SO4 1800 0 96d-3 0.53 -NO3 1800 0 62d-3 0.53 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.53 -CO3 2600 0 60d-3 0.53 -MSA 1800 0 95d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OC 1000 0 1d-3 0.1 -BC 1800 0 1d-3 0 -OIN 2600 0 1d-3 0.1 -ARO1 1000 0 150d-3 0.1 -ARO2 1000 0 150d-3 0.1 -ALK1 1000 0 140d-3 0.1 -OLE1 1000 0 140d-3 0.1 -API1 1000 0 184d-3 0.1 -API2 1000 0 184d-3 0.1 -LIM1 1000 0 200d-3 0.1 -LIM2 1000 0 200d-3 0.1 +H2O 1000 0 18d-3 0 0 0 +SO4 1800 0 96d-3 0.53 0 0 +NO3 1800 0 62d-3 0.53 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.53 0 0 +CO3 2600 0 60d-3 0.53 0 0 +MSA 1800 0 95d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +ARO1 1000 0 150d-3 0.1 0 0 +ARO2 1000 0 150d-3 0.1 0 0 +ALK1 1000 0 140d-3 0.1 0 0 +OLE1 1000 0 140d-3 0.1 0 0 +API1 1000 0 184d-3 0.1 0 0 +API2 1000 0 184d-3 0.1 0 0 +LIM1 1000 0 200d-3 0.1 0 0 +LIM2 1000 0 200d-3 0.1 0 0 diff --git a/test/mosaic/run_part.spec b/test/mosaic/run_part.spec index ab67f92d5..065ff5412 100644 --- a/test/mosaic/run_part.spec +++ b/test/mosaic/run_part.spec @@ -39,6 +39,7 @@ do_condensation no # whether to do condensation (yes/no) do_mosaic yes # whether to do MOSAIC (yes/no) do_optical yes # whether to compute optical props (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/mosaic/run_part_restarted.spec b/test/mosaic/run_part_restarted.spec index 338af7f41..1af9bc960 100644 --- a/test/mosaic/run_part_restarted.spec +++ b/test/mosaic/run_part_restarted.spec @@ -33,6 +33,7 @@ do_condensation no # whether to do condensation (yes/no) do_mosaic yes # whether to do MOSAIC (yes/no) do_optical yes # whether to compute optical props (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/nucleate/aero_data.dat b/test/nucleate/aero_data.dat index 1f0f968fa..2b2b506f6 100644 --- a/test/nucleate/aero_data.dat +++ b/test/nucleate/aero_data.dat @@ -1,3 +1,3 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 -NO3 1800 0 62d-3 0.65 +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 diff --git a/test/nucleate/run_part.spec b/test/nucleate/run_part.spec index 908dc3d3e..8e028ccee 100644 --- a/test/nucleate/run_part.spec +++ b/test/nucleate/run_part.spec @@ -39,6 +39,7 @@ do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation yes # whether to do nucleation (yes/no) nucleate sulf_acid # nucleation parameterization +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling no # whether to allow doubling (yes/no) diff --git a/test/parallel/aero_data.dat b/test/parallel/aero_data.dat index 41cdc37fc..c00133a94 100644 --- a/test/parallel/aero_data.dat +++ b/test/parallel/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/parallel/run_part_parallel_dist.spec b/test/parallel/run_part_parallel_dist.spec index 79f6f50e4..59d57acbc 100644 --- a/test/parallel/run_part_parallel_dist.spec +++ b/test/parallel/run_part_parallel_dist.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/parallel/run_part_parallel_dist_single.spec b/test/parallel/run_part_parallel_dist_single.spec index 1cc07063c..e782cee5c 100644 --- a/test/parallel/run_part_parallel_dist_single.spec +++ b/test/parallel/run_part_parallel_dist_single.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/parallel/run_part_parallel_mix.spec b/test/parallel/run_part_parallel_mix.spec index e3835872c..883ff8f29 100644 --- a/test/parallel/run_part_parallel_mix.spec +++ b/test/parallel/run_part_parallel_mix.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/parallel/run_part_serial.spec b/test/parallel/run_part_serial.spec index 004a58b05..aa65f2782 100644 --- a/test/parallel/run_part_serial.spec +++ b/test/parallel/run_part_serial.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/sedi/aero_data.dat b/test/sedi/aero_data.dat index 41cdc37fc..659064443 100644 --- a/test/sedi/aero_data.dat +++ b/test/sedi/aero_data.dat @@ -1,2 +1,2 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/sedi/run_part.spec b/test/sedi/run_part.spec index a4577d0ca..3637d5a23 100644 --- a/test/sedi/run_part.spec +++ b/test/sedi/run_part.spec @@ -39,6 +39,7 @@ coag_kernel sedi # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) From c01b77ceb217c42502f3dd71d12c713e1a2f4c2f Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 22:31:28 -0600 Subject: [PATCH 022/127] add fortran codes for extracting data and theoretical calculation --- test/freezing/test_freezing_extract.F90 | 116 ++++++++++++++++++++ test/freezing/test_freezing_theoretical.F90 | 53 +++++++++ 2 files changed, 169 insertions(+) create mode 100644 test/freezing/test_freezing_extract.F90 create mode 100644 test/freezing/test_freezing_theoretical.F90 diff --git a/test/freezing/test_freezing_extract.F90 b/test/freezing/test_freezing_extract.F90 new file mode 100644 index 000000000..28a59f091 --- /dev/null +++ b/test/freezing/test_freezing_extract.F90 @@ -0,0 +1,116 @@ +! --- + +program extract_freezing + use netcdf + implicit none + integer, parameter :: dp = kind(0.d0) + integer, parameter :: out_unit = 65 + character(len=*), parameter :: in_prefix = "out/freezing_part_" + character(len=*), parameter :: out_filename = "out/freezing_part_data.txt" + character(len=1000) :: in_filename + integer :: ncid + integer :: varid_time, dimid_aero_particle + integer :: varid_aero_num_conc, varid_aero_frozen + integer :: n_aero_particle + integer :: xtype, ndims, nAtts + character(len=1000) :: tmp_str + real(kind=dp), allocatable :: aero_num_conc(:) + integer(kind=dp), allocatable :: aero_frozen(:) + real(kind=dp) :: time + real(kind=dp) :: frozen_fraction, frozen_fraction_total + real(kind=dp) :: frozen_fraction_mean + integer, dimension(nf90_max_var_dims) :: dimids + integer :: i_time, i_ens, status, ios + + ! open output + open(unit=out_unit, file=out_filename, iostat=ios) + if (ios /= 0) then + write(0,'(a,a,a,i4)') 'ERROR: unable to open file ', & + trim(out_filename), ' for writing: ', ios + stop 1 + end if + + i_time = 0 + do while(.true.) + i_time = i_time + 1 + !do i_ens = 1, 10 + i_ens = 0 + frozen_fraction_total = 0d0 + do while(.true.) + i_ens = i_ens + 1 + write(in_filename,'(a,i4.4, a, i8.8,a)') trim(in_prefix), i_ens, "_", i_time, ".nc" + status = nf90_open(trim(in_filename), NF90_NOWRITE, ncid) + if (status /= NF90_NOERR) then + exit + end if + !print*, trim(in_filename) + + call nc_check(nf90_inq_varid(ncid, "time", varid_time)) + call nc_check(nf90_inq_varid(ncid, "time", varid_time)) + call nc_check(nf90_get_var(ncid, varid_time, time)) + call nc_check(nf90_inq_dimid(ncid, "aero_particle", & + dimid_aero_particle)) + call nc_check(nf90_Inquire_Dimension(ncid, dimid_aero_particle, & + tmp_str, n_aero_particle)) + call nc_check(nf90_inq_varid(ncid, "aero_num_conc", & + varid_aero_num_conc)) + call nc_check(nf90_Inquire_Variable(ncid, varid_aero_num_conc, & + tmp_str, xtype, ndims, dimids, nAtts)) + if ((ndims /= 1) & + .or. (dimids(1) /= dimid_aero_particle)) then + write(*,*) "ERROR: unexpected aero_num_conc dimids" + stop 1 + end if + allocate(aero_num_conc(n_aero_particle)) + call nc_check(nf90_get_var(ncid, varid_aero_num_conc, & + aero_num_conc)) + + call nc_check(nf90_inq_varid(ncid, "aero_frozen", & + varid_aero_frozen)) + call nc_check(nf90_Inquire_Variable(ncid, varid_aero_frozen, & + tmp_str, xtype, ndims, dimids, nAtts)) + if ((ndims /= 1) & + .or. (dimids(1) /= dimid_aero_particle)) then + write(*,*) "ERROR: unexpected aero_frozen dimids" + stop 1 + end if + allocate(aero_frozen(n_aero_particle)) + call nc_check(nf90_get_var(ncid, varid_aero_frozen, & + aero_frozen)) + + call nc_check(nf90_close(ncid)) + frozen_fraction = sum(aero_frozen * aero_num_conc) / & + sum(aero_num_conc) + frozen_fraction_total = frozen_fraction_total + & + frozen_fraction + + !print*, aero_frozen + deallocate(aero_num_conc) + deallocate(aero_frozen) + end do + if (i_ens .eq. 1) then + exit + end if + frozen_fraction_mean = frozen_fraction_total / (i_ens - 1) + write(out_unit,'(e20.10)') frozen_fraction_mean + + end do + + close(out_unit) +contains + !> Check return status of NetCDF function calls. + subroutine nc_check(status) + + !> Status return value. + integer, intent(in) :: status + + if (status /= NF90_NOERR) then + write(0,*) nf90_strerror(status) + stop 1 + end if + + end subroutine nc_check +end program extract_freezing + + + diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 new file mode 100644 index 000000000..536104beb --- /dev/null +++ b/test/freezing/test_freezing_theoretical.F90 @@ -0,0 +1,53 @@ +! --- +program theoretical_freezing + use pmc_env_state + implicit none + !integer, parameter :: dp = kind(0.d0) + integer, parameter :: out_unit = 65 + real(kind=dp), parameter :: temperature = 253.15 + real(kind=dp), parameter :: total_time = 600 + real(kind=dp), parameter :: out_dt = 10 + real(kind=dp), parameter :: abifm_m_1 = 17.62106, abifm_c_1 = 1.42411 + real(kind=dp), parameter :: abifm_m_2 = 54.48075, abifm_c_2 = -10.66873 + real(kind=dp), parameter :: s_ratio_1 = 0.5, s_ratio_2 = 0.5 + real(kind=dp), parameter :: Dp_dry = 1d-6 + character(len=*), parameter :: out_filename = "out/freezing_theoretical_data.txt" + real(kind=dp) :: time, Jhet_1, Jhet_2, Jhet_mean, Phi_mean, frozen_fraction + integer :: ios + ! open output + open(unit=out_unit, file=out_filename, iostat=ios) + if (ios /= 0) then + write(0,'(a,a,a,i4)') 'ERROR: unable to open file ', & + trim(out_filename), ' for writing: ', ios + stop 1 + end if + call compute_Jhet_ABIFM(temperature, abifm_m_1, abifm_c_1, Jhet_1) + call compute_Jhet_ABIFM(temperature, abifm_m_2, abifm_c_2, Jhet_2) + Jhet_mean = Jhet_1 * s_ratio_1 + Jhet_2 * s_ratio_2 + + time = 0 + do while(time .le. total_time) + Phi_mean = Jhet_mean * time + frozen_fraction = 1 - exp(- const%pi * Dp_dry**2 * Phi_mean) + write(out_unit,'(e20.10)') frozen_fraction + time = time + out_dt + end do + + close(out_unit) + + +end program theoretical_freezing + +subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) + use pmc_env_state + use pmc_constants + implicit none + real(kind=dp), intent(in) :: T, abifm_m, abifm_c + real(kind=dp), intent(out) :: Jhet + real(kind=dp) :: es, ei, a_w_ice + call env_state_saturated_vapor_pressure_water_2(T, es) + call env_state_saturated_vapor_pressure_ice_2(T, ei) + a_w_ice = ei / es + Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + +end subroutine compute_Jhet_ABIFM From 43a8ceb03584ccdacd843cb9df30d986e86e0170 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 22:35:20 -0600 Subject: [PATCH 023/127] delete old freezing codes --- src/freezing.F90 | 1 - src/freezing.F90.bck.F90 | 206 ----------------------- src/freezing.F90.speedup.F90 | 318 ----------------------------------- 3 files changed, 525 deletions(-) delete mode 120000 src/freezing.F90 delete mode 100644 src/freezing.F90.bck.F90 delete mode 100644 src/freezing.F90.speedup.F90 diff --git a/src/freezing.F90 b/src/freezing.F90 deleted file mode 120000 index 3d2c82285..000000000 --- a/src/freezing.F90 +++ /dev/null @@ -1 +0,0 @@ -freezing.F90.bck.F90 \ No newline at end of file diff --git a/src/freezing.F90.bck.F90 b/src/freezing.F90.bck.F90 deleted file mode 100644 index 552519283..000000000 --- a/src/freezing.F90.bck.F90 +++ /dev/null @@ -1,206 +0,0 @@ -! Copyright (C) 2021 University of Illinois at Urbana-Champaign -! Licensed under the GNU General Public License version 2 or (at your -! option) any later version. See the file COPYING for details. - -!> \file -!tate_saturated_vapor_pressure_ice The pmc_freezing module. - -module pmc_freezing - use pmc_aero_state - use pmc_env_state - use pmc_aero_data - use pmc_util - use pmc_aero_particle - use pmc_constants - use pmc_rand - implicit none - - integer :: freeze_module_run_time = 0 - -contains - - subroutine freeze(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, do_freezing_CNT, freezing_rate, & - do_coating, coating_spec, coating_ratio) - - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - !> Total time to integrate. - real(kind=dp), intent(in) :: del_t - - integer :: i_part - real(kind=dp) :: tmp - logical :: do_freezing_CNT, do_coating - real(kind=dp) :: freezing_rate - real(kind=dp) :: a_w_ice, pis, pvs - !real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: p_freeze, p_frozen - real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & - H2O_frac(:) - character(len=*), intent(in) :: coating_spec - real(kind=dp) :: coating_ratio - real(kind=dp) :: rand - integer :: clock_start, clock_end - - call system_clock(clock_start) - total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) - H2O_frac = H2O_masses / total_masses - !print*, sum(H2O_frac) / aero_state_n_part(aero_state), & - ! env_state_final%rel_humid, sum(H2O_masses) - !print*, aero_data%abifm_m - !print*, aero_data%abifm_c - call env_state_saturated_vapor_pressure_water(env_state_final, pvs) - call env_state_saturated_vapor_pressure_ice(env_state_final, pis) - a_w_ice = pis / pvs - - do i_part = 1, aero_state_n_part(aero_state) - if (H2O_frac(i_part) < 1e-2) then - cycle - end if - rand = pmc_random() - !p = 1 - exp(-J_het * immersed_surface_area[i] * del_t) -!p = 1 - exp(-.00123456789 * del_t) - !print*, "Begin CNT" - if (do_freezing_CNT) then - call ABIFM(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t, & - do_coating, coating_spec, coating_ratio) - else - p_freeze = 1 - exp(freezing_rate * del_t) - end if - !print*, "freezing_rate:", freezing_rate, "; p=", p - - !aero_state%apa%particle(i_part)%P_frozen = p_freeze - p_frozen = aero_state%apa%particle(i_part)%P_frozen - aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & - * (1 - p_freeze) - - if (rand < p_freeze) then - aero_state%apa%particle(i_part)%frozen = .TRUE. - end if - end do - call system_clock(clock_end) - freeze_module_run_time = freeze_module_run_time + clock_end - clock_start - - end subroutine freeze - - subroutine unfreeze(aero_state, aero_data, env_state_initial, & - env_state_final) - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - integer :: i_part - - if (env_state_final%temp > const%water_freeze_temp) then - do i_part = 1, aero_state_n_part(aero_state) - aero_state%apa%particle(i_part)%P_frozen = 0d0 - aero_state%apa%particle(i_part)%frozen = .FALSE. - end do - end if - - end subroutine unfreeze - - subroutine ABIFM(i_part, P_freezing, aero_state, aero_data, a_w_ice, del_t, & - do_coating, coating_spec, coating_ratio) - implicit none - integer :: i_part, i_spec - type(aero_data_t), intent(in) :: aero_data - !type(env_state_t), intent(in) :: env_state - real(kind=dp), intent(out) :: P_freezing - type(aero_state_t), intent(inout) :: aero_state - - real(kind=dp) :: aerosol_diameter - real(kind=dp) :: immersed_surface_area - real(kind=dp) :: total_vol - real(kind=dp) :: surface_ratio - real(kind=dp) :: a_w_ice - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: del_t - real(kind=dp) :: j_het, j_het_x_aera - real(kind=dp) :: pvs, pis - logical :: do_coating - character(len=*), intent(in) :: coating_spec - real(kind=dp) :: coating_ratio - integer :: i_coat_spec - real(kind=dp) :: coat_spec_vol - !real(kind=dp) :: aero_particle_diameter - - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) - - immersed_surface_area = const%pi * aerosol_diameter **2 - - if (do_coating) then - i_coat_spec = string_array_find(aero_data%name, coating_spec) - endif - !print*, i_coat_spec, aero_data%name(i_coat_spec) - total_vol = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) - end do - if (do_coating) then - coat_spec_vol = aero_state%apa%particle(i_part)%vol(i_coat_spec) - endif - - j_het_x_aera = 0d0 - !print*, "---------------" - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - !call env_state_saturated_vapor_pressure_water(env_state, pvs) - !call env_state_saturated_vapor_pressure_ice(env_state, pis) - !a_w_ice = pis / pvs - !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice - abifm_m = aero_data%abifm_m(i_spec) - abifm_c = aero_data%abifm_c(i_spec) - - ! Coating with Illite - !abifm_m = 54.48075 - !abifm_c = -10.66873 - - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ", & - ! j_het, "abifm_m = ", abifm_m, "abifm_c = ", abifm_c - if (do_coating) then - if (i_spec == i_coat_spec) then - surface_ratio = coating_ratio - else - surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec)& - / (total_vol - coat_spec_vol) * (1 - coating_ratio) - endif - else - surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol - endif - !print*, aero_data%name(i_spec), surface_ratio - !print*, i_spec, surface_ratio - j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & - surface_ratio - - - end do - !print*, j_het - !immersed_surface_area = 1.8150015899967208e-12 - !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) - P_freezing = 1 - exp(-j_het_x_aera * del_t) - !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ",& - ! j_het, "P = ", P_freezing - - end subroutine ABIFM - -end module pmc_freezing diff --git a/src/freezing.F90.speedup.F90 b/src/freezing.F90.speedup.F90 deleted file mode 100644 index 57c7286b2..000000000 --- a/src/freezing.F90.speedup.F90 +++ /dev/null @@ -1,318 +0,0 @@ -! Copyright (C) 2021 University of Illinois at Urbana-Champaign -! Licensed under the GNU General Public License version 2 or (at your -! option) any later version. See the file COPYING for details. - -!> \file -!tate_saturated_vapor_pressure_ice The pmc_freezing module. - -module pmc_freezing - use pmc_aero_state - use pmc_env_state - use pmc_aero_data - use pmc_util - use pmc_aero_particle - use pmc_constants - use pmc_rand - - implicit none - - integer :: freeze_module_run_time = 0 - interface ABIFM - module procedure ABIFM_particle - module procedure ABIFM_max - end interface - -contains - - subroutine freeze(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, do_freezing_CNT, freezing_rate, & - do_coating, coating_spec, coating_ratio) - - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - !> Total time to integrate. - real(kind=dp), intent(in) :: del_t - - integer :: i_part, i_bin, i_class, n_bins, n_class - real(kind=dp) :: tmp - logical :: do_freezing_CNT, do_coating - real(kind=dp) :: freezing_rate - real(kind=dp) :: a_w_ice, pis, pvs - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: p_freeze, p_frozen - - real(kind=dp) :: p_freeze_max, radius_max, diameter_max - logical :: freeze_thisTime - - integer :: n_entry, ind, spec_bin = 13 - integer :: k_th, n_parts_in_bin - real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand - real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & - H2O_frac(:) - character(len=*), intent(in) :: coating_spec - real(kind=dp) :: coating_ratio - integer :: i_spec_max - real(kind=dp) :: j_het_max - - integer :: loop_count = 0 - integer :: clock_start, clock_end - - call system_clock(clock_start) - call aero_state_sort(aero_state, aero_data) - - total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) - H2O_frac = H2O_masses / total_masses - call env_state_saturated_vapor_pressure_water(env_state_final, pvs) - call env_state_saturated_vapor_pressure_ice(env_state_final, pis) - a_w_ice = pis / pvs - call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) - !print*, i_spec_max, aero_data%name(i_spec_max) - !print*, size(aero_state%awa%weight, 2) - - n_bins = aero_sorted_n_bin(aero_state%aero_sorted) - n_class = aero_sorted_n_class(aero_state%aero_sorted) - loop_count = 0 - - loop_bins: do i_bin = 1, n_bins - loop_classes: do i_class = 1, n_class - !print*, "i_bin = ", i_bin, "i_class = ", i_class - n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) - !print*, "pass" - radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) - diameter_max = radius_max * 2 - if (do_freezing_CNT) then - !print*, "Before ABIFM_max" - call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) - !print*, "After ABIFM_max" - else - p_freeze_max = 1 - exp(freezing_rate * del_t) - endif - !print*, "diameter_max = ", diameter_max - - k_th = n_parts_in_bin + 1 - loop_choosed_particles: do while(.TRUE.) - !print*, "k_th = ", k_th - rand = pmc_random_geometric(p_freeze_max) - k_th = k_th - rand - if (k_th <= 0) then - EXIT loop_choosed_particles - endif - loop_count = loop_count + 1 - i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) - !print*, i_bin, k_th, i_part, aero_state_n_part(aero_state), rand - if (aero_state%apa%particle(i_part)%frozen) then - cycle - end if - if (H2O_frac(i_part) < 1e-2) then - cycle - end if - if (do_freezing_CNT) then - !print*, "Before ABIFM_particle" - call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) - !print*, "After ABIFM_particle" - if (p_freeze > p_freeze_max) then - print*, "Warning! p_freeze > p_freeze_max. & - p_freeze = ", p_freeze, "; p_freeze_max = "& - , p_freeze_max - endif - rand = pmc_random() - !print*, "p_freeze = ", p_freeze, "; p_freeze_max = ", & - !p_freeze_max, "; ratio = ", p_freeze / p_freeze_max - if (rand < p_freeze / p_freeze_max) then - aero_state%apa%particle(i_part)%frozen = .TRUE. - !aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & - ! * (1 - p_freeze) - endif - else - aero_state%apa%particle(i_part)%frozen = .TRUE. - endif - enddo loop_choosed_particles - enddo loop_classes - enddo loop_bins - !print*, "Total particles=", aero_state_n_part(aero_state), "; loop=", loop_count - - call system_clock(clock_end) - !print*, clock_end - clock_start - freeze_module_run_time = freeze_module_run_time + clock_end - clock_start - !print*, freeze_module_run_time - - end subroutine freeze - - subroutine unfreeze(aero_state, aero_data, env_state_initial, & - env_state_final) - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - integer :: i_part - - if (env_state_final%temp > const%water_freeze_temp) then - do i_part = 1, aero_state_n_part(aero_state) - !aero_state%apa%particle(i_part)%P_frozen = 0d0 - aero_state%apa%particle(i_part)%frozen = .FALSE. - end do - end if - - end subroutine unfreeze - subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & - a_w_ice, del_t) - !integer :: i_part - !type(aero_data_t), intent(in) :: aero_data - !type(env_state_t), intent(in) :: env_state - !real(kind=dp), intent(out) :: P_freezing - !type(aero_state_t), intent(inout) :: aero_state - - !real(kind=dp) :: aerosol_diameter - !real(kind=dp) :: immersed_surface_area - !real(kind=dp) :: a_w_ice - !real(kind=dp) :: abifm_m, abifm_c - !real(kind=dp) :: del_t - !real(kind=dp) :: j_het - !real(kind=dp) :: pvs, pis - - !!real(kind=dp) :: aero_particle_diameter - - !aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) - - !immersed_surface_area = const%pi * aerosol_diameter **2 - !call env_state_saturated_vapor_pressure_water(env_state, pvs) - !call env_state_saturated_vapor_pressure_ice(env_state, pis) - !a_w_ice = pis / pvs - !!print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice - !j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) - !!print*, j_het - !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) - implicit none - integer :: i_part, i_spec - type(aero_data_t), intent(in) :: aero_data - !type(env_state_t), intent(in) :: env_state - real(kind=dp), intent(out) :: P_freezing - type(aero_state_t), intent(inout) :: aero_state - - real(kind=dp) :: aerosol_diameter - real(kind=dp) :: immersed_surface_area - real(kind=dp) :: total_vol - real(kind=dp) :: surface_ratio - real(kind=dp) :: a_w_ice - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: del_t - real(kind=dp) :: j_het, j_het_x_aera - real(kind=dp) :: pvs, pis - - - !real(kind=dp) :: aero_particle_diameter - !print*, "i_part = ", i_part - !print*, "n_part = ", aero_state_n_part(aero_state) - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) - !print*, "aerosol_diameter = ", aerosol_diameter - - immersed_surface_area = const%pi * aerosol_diameter **2 - - - total_vol = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) - end do - - j_het_x_aera = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - !call env_state_saturated_vapor_pressure_water(env_state, pvs) - !call env_state_saturated_vapor_pressure_ice(env_state, pis) - !a_w_ice = pis / pvs - !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice - abifm_m = aero_data%abifm_m(i_spec) - abifm_c = aero_data%abifm_c(i_spec) - - ! Coating with Illite - !abifm_m = 54.48075 - !abifm_c = -10.66873 - - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ", & - ! j_het, "abifm_m = ", abifm_m, "abifm_c = ", abifm_c - surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol - !print*, i_spec, surface_ratio - j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & - surface_ratio - - - end do - !print*, j_het - !immersed_surface_area = 1.8150015899967208e-12 - !P_freezing = 1 - exp(-j_het * immersed_surface_area * del_t) - P_freezing = 1 - exp(-j_het_x_aera * del_t) - !print*, "area = ", immersed_surface_area, "aw = ", a_w_ice, "rate = ",& - ! j_het, "P = ", P_freezing - - end subroutine ABIFM_particle - - subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) - implicit none - !type(env_state_t), intent(in) :: env_state - type(aero_data_t), intent(in) :: aero_data - type(aero_state_t), intent(in) :: aero_state - real(kind=dp) :: a_w_ice - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: j_het, j_het_max - !real(kind=dp) :: pvs, pis - integer :: i_spec - integer, intent(out) :: i_spec_max - - j_het_max = -9999.0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - abifm_m = aero_data%abifm_m(i_spec) - abifm_c = aero_data%abifm_c(i_spec) - !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - if (j_het > j_het_max) then - j_het_max = j_het - i_spec_max = i_spec - end if - end do - - end subroutine ABIFM_max_spec - - subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) - implicit none - !type(env_state_t), intent(in) :: env_state - real(kind=dp), intent(out) :: P_freezing - type(aero_data_t), intent(in) :: aero_data - real(kind=dp) :: diameter_max - real(kind=dp) :: immersed_surface_area - !real(kind=dp) :: a_w_ice - !real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: del_t - real(kind=dp) :: j_het_max - !real(kind=dp) :: pvs, pis - integer :: i_spec - - immersed_surface_area = const%pi * diameter_max **2 - P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) - - end subroutine ABIFM_max - -end module pmc_freezing From d4b99bbe68096a8cafea081150340db2d58a22d2 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 22:42:14 -0600 Subject: [PATCH 024/127] remove the freezing timing output --- src/partmc.F90 | 4 ++-- src/run_part.F90 | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/partmc.F90 b/src/partmc.F90 index dbfe43807..fefd49131 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -780,7 +780,7 @@ subroutine partmc_part(file) ! Wenhan Tang: add for saving the timing results - open(1997, file="freezing_timing.txt") + !open(1997, file="freezing_timing.txt") do i_repeat = 1,run_part_opt%n_repeat run_part_opt%i_repeat = i_repeat @@ -834,7 +834,7 @@ subroutine partmc_part(file) end do ! Wenhan Tang: add for the freezing timing - close(1997) + !close(1997) call pmc_rand_finalize() diff --git a/src/run_part.F90 b/src/run_part.F90 index e48300f90..c1c28d5a5 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -80,9 +80,9 @@ module pmc_run_part character(len=300) :: coating_spec real(kind=dp) :: coating_ratio - logical :: do_ice_shape - logical :: do_ice_density - logical :: do_ice_ventilation + logical :: do_ice_shape = .False. + logical :: do_ice_density = .False. + logical :: do_ice_ventilation = .False. !> Allow doubling if needed. logical :: allow_doubling @@ -419,8 +419,9 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end if end do - print*, "Freeze module total run time:", freeze_module_run_time - write(1997, *) freeze_module_run_time + + !print*, "Freeze module total run time:", freeze_module_run_time + !write(1997, *) freeze_module_run_time if (run_part_opt%do_mosaic) then call mosaic_cleanup() From a3aa8009a439fded36223838febf48321ae57a36 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 22:58:41 -0600 Subject: [PATCH 025/127] remove the forward ice growth parameters for condense subroutine --- src/run_part.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index c1c28d5a5..da86d24bd 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -311,8 +311,8 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & #ifdef PMC_USE_SUNDIALS if (run_part_opt%do_condensation) then call condense_particles(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%do_ice_shape, & - run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) + env_state, run_part_opt%del_t)!, run_part_opt%do_ice_shape, & + !run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) end if #endif From 40075bea74773807859d405f64ef64b405d131c1 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 12 Nov 2024 23:02:30 -0600 Subject: [PATCH 026/127] modify 1_run.sh for freezing scenario --- scenarios/7_freezing/1_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh index 4b6c9374d..99ba7a571 100755 --- a/scenarios/7_freezing/1_run.sh +++ b/scenarios/7_freezing/1_run.sh @@ -32,6 +32,6 @@ do sleep 1 ../../build/partmc run_part.spec - mv freezing_timing.txt output/$caseName + #mv freezing_timing.txt output/$caseName done From 3ab971dcc8de38c7fbc070161d2f819914cdcf87 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 13 Nov 2024 00:29:44 -0600 Subject: [PATCH 027/127] modify visualization code --- scenarios/7_freezing/3_draw.py | 4 ++-- scenarios/7_freezing/4_clean.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py index 87b36bedb..2403f9abe 100755 --- a/scenarios/7_freezing/3_draw.py +++ b/scenarios/7_freezing/3_draw.py @@ -107,5 +107,5 @@ def draw(fig, ax, casesName, ax_label): fig, ax2 = draw(fig, ax2, casesName, ax_label = "(b)") ax2.set_xlabel("Time (min)", fontsize = xlabel_fontsize) - plt.show() - #plt.savefig("figs_code/TSs.png", dpi = 500) + #plt.show() + plt.savefig("out/TSs.png", dpi = 500) diff --git a/scenarios/7_freezing/4_clean.sh b/scenarios/7_freezing/4_clean.sh index fa51965af..9517a1e99 100755 --- a/scenarios/7_freezing/4_clean.sh +++ b/scenarios/7_freezing/4_clean.sh @@ -2,5 +2,5 @@ rm -f *.dat rm -fr out -rm -fr __pycache__ +#rm -fr __pycache__ unlink output From 89d1740fccfb14a34e1172019af06cd610914e27 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 13 Nov 2024 11:08:16 -0600 Subject: [PATCH 028/127] add freezing document (tex file) --- doc/freezing/freezing.tex | 90 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 doc/freezing/freezing.tex diff --git a/doc/freezing/freezing.tex b/doc/freezing/freezing.tex new file mode 100644 index 000000000..9e5b95812 --- /dev/null +++ b/doc/freezing/freezing.tex @@ -0,0 +1,90 @@ +\documentclass{article} +\usepackage{amsmath} +\usepackage[margin=2cm]{geometry} +\usepackage{longtable} +\usepackage{comment} + +\begin{document} + +\section{Symbol list} +\label{sec:symbol-list} + +\newcommand{\rr}{\raggedright} +\newcommand{\tn}{\tabularnewline\hline} +\renewcommand{\arraystretch}{1.5} +\begin{longtable}{|l|p{5.5cm}|l|l|p{4.5cm}|} +\hline \textbf{Symbol} & \textbf{Meaning} & \textbf{Type} & \textbf{Units} & \textbf{Reference} \tn +\hline \endhead +\(i\) & species index. & index & discrete & \tn +\( A_j \) & The total surface area of the INP. & function & $m^2$ & \tn +\( A_j^\text{(i)} \) & Surface area of \( i \)th species. & function & $m^2$ & \tn +\( a_{\text{w}} \) & Water activity of the droplet in which the INP is immersed. & function & 1 & eq.~\ref{eq:4}\tn +\( a_\text{w}^\text{ice} \) & Water activity in equilibrium with ice. & function & 1 & eq.~\ref{eq:5} \tn +\(a_\text{INAS}\) & INAS parameter for singular scheme. & constant & $K^{-1}$ & Niemand et al., 2012 \tn +\(b_\text{INAS}\) & INAS parameter for singular scheme. & constant & 1 & Niemand et al., 2012 \tn +\( \Delta t \) & Time interval. & function & $s$ & \tn +\( e_\text{s} \) & Saturated vapor pressure with respect to water. & function & Pa & eq.~\ref{eq:2} \tn +\( e_\text{s}^\text{ice} \) & Saturated vapor pressure with respect to ice. & function & Pa & eq.~\ref{eq:3} \tn +\( H \) & Relative humidity with respect to water. & dynamics & 1 & \tn +\( J_{\text{het}} \) & A constant heterogeneous freezing rate for all particles (for the constant nucleation rate scheme only) & constant & $m^{-2}s^{-1}$ & \tn +\( J_{\text{het}}^{(i)} \) & Heterogeneous freezing rate coefficients of the \( i \)th species. & function & $m^{-2}s^{-1}$ & eq.~\ref{eq:6} \tn +\( m_i, c_i \) & ABIFM parameters of \( i^\text{th} \) species. & constant & 1 & Knopf et al., 2013 \tn +\(n_0\) & An unit constant (=1 $m^{-2}$). & constant & $m^{-2}$ & \tn +\( N_\text{s} \) & The total number of species covering the surface of the INP. & constant & 1 & \tn +\( P_{\text{frz,}j} (\Delta t)\) & The freezing probability of $j^\text{th}$ particle within a time interval of $\Delta t$. & function & 1 & eq.~\ref{eq:1},eq.~\ref{eq:7} \tn +\(p_j\) & A random number uniformly distributed in [0,1] regarding the sampling of $j^\text{th}$ particle. & function & 1 & eq.~\ref{eq:8} \tn +\(T\) & Current environmental temperature & prescribed & $K$ & \tn +\(T_0\) & Water freezing temperature & constant & K & \verb+env_state%temp+ \tn +\(T_{\text{m,}j}\) & The freezing temperature of the $j^\text{th}$ particle. & function & K & eq.~\ref{eq:9} \tn + +\end{longtable} + +\begin{comment} +\( J_{\text{het}}^{(i)} \) & Heterogeneous freezing rate coefficients of the \( i \)th species. \\ + \( A_i \) & Surface area of \( i \)th species. \\ + \( A \) & The total surface area of the INP. \\ + \( \Delta t \) & Time interval. \\ + \( a_{\text{w}} \) & Water activity of the droplet in which the INP is immersed. \\ + \( a_\text{w}^\text{ice} \) & Water activity in equilibrium with ice. \\ + \( RH \) & Relative humidity with respect to water. \\ + \( e_\text{s} \) & Saturated vapor pressure with respect to water. \\ + \( e_\text{s}^\text{ice} \) & Saturated vapor pressure with respect to ice. \\ + \( m_i, c_i \) & ABIFM parameters of \( i^\text{th} \) species. \\ + \( N_\text{s} \) & The total number of species covering the surface of the INP. \\ + \hline +\end{comment} + +\section{Equations} +\label{sec:equations} + +\subsection{Time-dependent scheme with a constant nucleation rate} +\begin{equation} + P_{\text{frz,}j}(\Delta t) = 1 - \exp\left(J_{\text{het}} \cdot A_j \cdot \Delta t \right) \label{eq:1} +\end{equation} + +\subsection{Time-dependent ABIFM scheme} +\begin{equation} + \begin{split} + e_\text{s}(T) &= \exp \left\{ 54.842763 - \frac{6763.22}{T} - 4.21 * \ln{T} + 0.000367T \right.\\ + &+ \left. \tanh \left[{0.0415 \cdot (T - 218.8) \cdot (53.878 - \frac{1331.22}{T} - 9.44523 \ln{T} + 0.014025T)}\right] \right\} \label{eq:2} + \end{split} +\end{equation} +\begin{equation} + e_\text{s}^\text{ice} (T) = \exp \left( 9.550426 - \frac{5723.265}{T} + 3.53068 \cdot \ln{T} - 0.00728332T\right). \label{eq:3} +\end{equation} +\begin{align} + a_{\text{w}} &= 1 \label{eq:4} \\ + a_\text{w}^\text{ice} &= \frac{e_\text{s}^\text{ice}(T)}{e_\text{s}(T)} \label{eq:5} \\ + \log_{10}J_{\text{het}}^{(i)} &= m_{\text{i}} \cdot (a_{\text{w}} - a_\text{w}^\text{ice}) + c_i \label{eq:6} \\ + P_{\text{frz,}j}(\Delta t) &= 1 - \exp\left[ -\sum_{i=1}^{N_{\text{s}}} (A_j^\text{(i)} \cdot J_{\text{het}}^{(i)}) \cdot \Delta t \right] \label{eq:7} +\end{align} + +\subsection{Singular scheme} +\begin{equation} + p_j = random() \in [0,1] \label{eq:8} +\end{equation} + +\begin{equation} + T_{\text{m,}j} = T_0 + \frac{1}{a_\text{INAS}} \left[\ln{\left( \frac{\ln{(1-p_j)} + \exp{\left(-A_j n_0 \exp{\left(-a_\text{INAS} T_0 + b_\text{INAS}\right)}\right)}}{-A_j n_0} \right)} - b_\text{INAS}\right] \label{eq:9} +\end{equation} +\end{document} From 1ad2951b9ac196be7c8251b28cc192c55a2e2136 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 13 Nov 2024 11:37:26 -0600 Subject: [PATCH 029/127] modify README and run shell scripts --- scenarios/7_freezing/0_README.md | 9 +++++++-- scenarios/7_freezing/1_run.sh | 16 ++++++++-------- scenarios/7_freezing/4_clean.sh | 2 -- .../7_freezing/standard_setting/run_part.spec | 2 +- 4 files changed, 16 insertions(+), 13 deletions(-) diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md index d5bc44490..eb8e44fc7 100644 --- a/scenarios/7_freezing/0_README.md +++ b/scenarios/7_freezing/0_README.md @@ -1,7 +1,8 @@ # Immersion freezing scenario -[reference] +Reference: +Tang, W. (2024). Particle-resolved simulations of immersion freezing with multi-species ice nucleating particles. (Master’s thesis, University of Illinois at Urbana-Champaign). https://hdl.handle.net/2142/124611 This is a scenario demonstrating how to use PartMC to simulate the immersion freezing process of multiple species INPs. @@ -18,5 +19,9 @@ exp8: internal mixture, steady cooling 1. Run 1_run.sh. This is the shell scripts for running all simulations. 2. Run 2_process.sh. This is the shell scripts for extract data from netcdf files. -3. Run 3_draw.py. This creates the figure showing the frozen fraction time series in each simulation. (Reproduces the Figure 8 in Tang et al., 2025) +3. Run 3_draw.py. This creates the figure showing the frozen fraction time series in each simulation. + (Reproduces the Figure 3.6 in the reference mentioned above, the output png file is out/TSs.png) 4. (Optional) Run 4_clean.sh. This deletes all files created by the processes above. + +Figure capture of out/TSs.png: +Simulated frozen fraction from PartMC for four different INP species and mixing states. (a) isothermal conditions, while panel (b) constant-rate cooling process. The red lines represent the temperature profiles as a function of time. The green lines correspond to simulations with 100% illite, gray lines indicate 100% Fe2O3, light blue lines are for external mixtures, and dark blue lines represent internal mixtures. Solid lines represent the average frozen fraction from 20 repeated simulations for each scenario, and the shaded areas denote the range between the maximum and minimum values. diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh index 99ba7a571..9e21eb30d 100755 --- a/scenarios/7_freezing/1_run.sh +++ b/scenarios/7_freezing/1_run.sh @@ -14,10 +14,10 @@ fi cp -rp $setDir $outDir/ -if [ -e "output" ]; then - unlink output -fi -ln -sf $outDir output +#if [ -e "output" ]; then +# unlink output +#fi +#ln -sf $outDir output for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 do @@ -25,10 +25,10 @@ do echo "Running $caseName ..." cp -p $setDir/$expName/*.dat . cp -p $setDir/run_part.spec . - sed -i "/output_prefix /coutput_prefix output/${caseName}/freezing_part # prefix of output files" run_part.spec - mkdir -p output/$caseName - cp -p run_part.spec output/$caseName - cp -p *.dat output/$caseName + sed -i "/output_prefix /coutput_prefix ${outDir}/${caseName}/freezing_part # prefix of output files" run_part.spec + mkdir -p $outDir/$caseName + cp -p run_part.spec $outDir/$caseName + cp -p *.dat $outDir/$caseName sleep 1 ../../build/partmc run_part.spec diff --git a/scenarios/7_freezing/4_clean.sh b/scenarios/7_freezing/4_clean.sh index 9517a1e99..1931ea0e1 100755 --- a/scenarios/7_freezing/4_clean.sh +++ b/scenarios/7_freezing/4_clean.sh @@ -2,5 +2,3 @@ rm -f *.dat rm -fr out -#rm -fr __pycache__ -unlink output diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec index f1029d494..cf3db8018 100644 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -1,5 +1,5 @@ run_type particle # particle-resolved run -output_prefix output/pap1_exp8_acc/freezing_part # prefix of output files +output_prefix out/freezing_part # prefix of output files n_repeat 20 # number of Monte Carlo repeats n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) From 7ca770ed124a2ac0dd6b8e9102d18f70710bd4cd Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 13 Nov 2024 11:46:23 -0600 Subject: [PATCH 030/127] modify CMakeList.txt --- CMakeLists.txt | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b5791543..cfafbf2c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -205,6 +205,24 @@ target_link_libraries(test_bidisperse_extract ${NETCDF_LIBS}) ###################################################################### +# test_freezing_extract + +add_executable(test_freezing_extract + test/freezing/test_freezing_extract.F90) + +target_link_libraries(test_freezing_extract ${NETCDF_LIBS}) + +###################################################################### + +# test_freezing_theoretical + +add_executable(test_freezing_theoretical + test/freezing/test_freezing_theoretical.F90) + +target_link_libraries(test_freezing_theoretical partmclib) + +###################################################################### + # test_nucleate_ode add_executable(test_nucleate_ode test/nucleate/test_nucleate_ode.F90 @@ -340,18 +358,4 @@ target_link_libraries(chamber_process partmclib) ###################################################################### -# test_freezing_extract - -add_executable(test_freezing_extract - test/freezing/test_freezing_extract.F90) - -target_link_libraries(test_freezing_extract ${NETCDF_LIBS}) -###################################################################### - -# test_freezing_theoretical - -add_executable(test_freezing_theoretical - test/freezing/test_freezing_theoretical.F90) -target_link_libraries(test_freezing_theoretical partmclib) -###################################################################### From 49816659ba252fbc8685abe65074eca968142ca1 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 13 Nov 2024 18:24:57 -0600 Subject: [PATCH 031/127] empty --- src/run_part.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index da86d24bd..c1c28d5a5 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -311,8 +311,8 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & #ifdef PMC_USE_SUNDIALS if (run_part_opt%do_condensation) then call condense_particles(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t)!, run_part_opt%do_ice_shape, & - !run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) + env_state, run_part_opt%del_t, run_part_opt%do_ice_shape, & + run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) end if #endif From 56a4395fc5d0030bae4c795ac3b37756189ad61e Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 10:08:54 -0600 Subject: [PATCH 032/127] remove the ice growth development for imf branch --- src/run_part.F90 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index c1c28d5a5..6a885e286 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -311,8 +311,7 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & #ifdef PMC_USE_SUNDIALS if (run_part_opt%do_condensation) then call condense_particles(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%do_ice_shape, & - run_part_opt%do_ice_density, run_part_opt%do_ice_ventilation) + env_state, run_part_opt%del_t) end if #endif From ef29b90d815071991c70e57bea2d3643f156ddfc Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 10:20:38 -0600 Subject: [PATCH 033/127] add output messages --- scenarios/7_freezing/3_draw.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py index 2403f9abe..5e65ff228 100755 --- a/scenarios/7_freezing/3_draw.py +++ b/scenarios/7_freezing/3_draw.py @@ -109,3 +109,4 @@ def draw(fig, ax, casesName, ax_label): #plt.show() plt.savefig("out/TSs.png", dpi = 500) + print("The figure has been saved to out/Ts.png") From 69546ffbf8035f65e91735ef2e259145c111b927 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 10:44:31 -0600 Subject: [PATCH 034/127] modify the aero_data.dat and spec file for acommodating the freezing codes --- scenarios/1_urban_plume/aero_data.dat | 40 +++++++++++----------- scenarios/1_urban_plume/urban_plume.spec | 1 + scenarios/2_urban_plume2/aero_data.dat | 40 +++++++++++----------- scenarios/2_urban_plume2/urban_plume2.spec | 1 + scenarios/3_condense/aero_data.dat | 40 +++++++++++----------- scenarios/3_condense/cond_template.spec | 1 + scenarios/4_chamber/aero_data.dat | 40 +++++++++++----------- scenarios/4_chamber/chamber.spec | 1 + scenarios/5_coag_brownian/1_run.sh | 0 scenarios/5_coag_brownian/aero_data.dat | 40 +++++++++++----------- scenarios/5_coag_brownian/example.spec | 1 + scenarios/6_camp/camp.spec | 1 + 12 files changed, 106 insertions(+), 100 deletions(-) mode change 100644 => 100755 scenarios/5_coag_brownian/1_run.sh diff --git a/scenarios/1_urban_plume/aero_data.dat b/scenarios/1_urban_plume/aero_data.dat index 43422f091..d519d553e 100644 --- a/scenarios/1_urban_plume/aero_data.dat +++ b/scenarios/1_urban_plume/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 -NO3 1800 0 62d-3 0.65 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.65 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 0 60d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OIN 2600 0 1d-3 0.1 -OC 1000 0 1d-3 0.001 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/1_urban_plume/urban_plume.spec b/scenarios/1_urban_plume/urban_plume.spec index 0f5a0815a..7be7bba99 100644 --- a/scenarios/1_urban_plume/urban_plume.spec +++ b/scenarios/1_urban_plume/urban_plume.spec @@ -40,6 +40,7 @@ do_condensation no # whether to do condensation (yes/no) do_mosaic yes # whether to do MOSAIC (yes/no) do_optical yes # whether to compute optical props (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/scenarios/2_urban_plume2/aero_data.dat b/scenarios/2_urban_plume2/aero_data.dat index cd98619d5..a93726739 100644 --- a/scenarios/2_urban_plume2/aero_data.dat +++ b/scenarios/2_urban_plume2/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 -NO3 1800 0 62d-3 0.65 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.65 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 0 60d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OIN 2600 0 1d-3 0.1 -OC 1000 0 1d-3 0.001 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/2_urban_plume2/urban_plume2.spec b/scenarios/2_urban_plume2/urban_plume2.spec index f5e049902..e82b27f38 100644 --- a/scenarios/2_urban_plume2/urban_plume2.spec +++ b/scenarios/2_urban_plume2/urban_plume2.spec @@ -40,6 +40,7 @@ do_condensation no # whether to do condensation (yes/no) do_mosaic yes # whether to do MOSAIC (yes/no) do_optical yes # whether to compute optical props (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/scenarios/3_condense/aero_data.dat b/scenarios/3_condense/aero_data.dat index 66960e1c5..e2be311a5 100644 --- a/scenarios/3_condense/aero_data.dat +++ b/scenarios/3_condense/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 1 96d-3 0 -NO3 1800 1 62d-3 0 -Cl 2200 1 35.5d-3 0 -NH4 1800 1 18d-3 0 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 1 60d-3 0 -Na 2200 1 23d-3 0 -Ca 2600 1 40d-3 0 -OIN 2600 0 1d-3 0.1 -OC 1000 0 1d-3 0.1 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 1 96d-3 0 0 0 +NO3 1800 1 62d-3 0 0 0 +Cl 2200 1 35.5d-3 0 0 0 +NH4 1800 1 18d-3 0 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 1 60d-3 0 0 0 +Na 2200 1 23d-3 0 0 0 +Ca 2600 1 40d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/3_condense/cond_template.spec b/scenarios/3_condense/cond_template.spec index e9bf7389f..02eaeceb8 100644 --- a/scenarios/3_condense/cond_template.spec +++ b/scenarios/3_condense/cond_template.spec @@ -33,6 +33,7 @@ do_condensation yes # whether to do condensation (yes/no) do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling no # whether to allow doubling (yes/no) diff --git a/scenarios/4_chamber/aero_data.dat b/scenarios/4_chamber/aero_data.dat index 43422f091..147f0345a 100644 --- a/scenarios/4_chamber/aero_data.dat +++ b/scenarios/4_chamber/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 -NO3 1800 0 62d-3 0.65 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.65 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 0 60d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OIN 2600 0 1d-3 0.1 -OC 1000 0 1d-3 0.001 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/4_chamber/chamber.spec b/scenarios/4_chamber/chamber.spec index 221b91603..3ce17ac49 100644 --- a/scenarios/4_chamber/chamber.spec +++ b/scenarios/4_chamber/chamber.spec @@ -47,6 +47,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 7 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/scenarios/5_coag_brownian/1_run.sh b/scenarios/5_coag_brownian/1_run.sh old mode 100644 new mode 100755 diff --git a/scenarios/5_coag_brownian/aero_data.dat b/scenarios/5_coag_brownian/aero_data.dat index 43422f091..f3351b3f1 100644 --- a/scenarios/5_coag_brownian/aero_data.dat +++ b/scenarios/5_coag_brownian/aero_data.dat @@ -1,21 +1,21 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 -NO3 1800 0 62d-3 0.65 -Cl 2200 0 35.5d-3 1.28 -NH4 1800 0 18d-3 0.65 -MSA 1800 0 95d-3 0.53 -ARO1 1400 0 150d-3 0.1 -ARO2 1400 0 150d-3 0.1 -ALK1 1400 0 140d-3 0.1 -OLE1 1400 0 140d-3 0.1 -API1 1400 0 184d-3 0.1 -API2 1400 0 184d-3 0.1 -LIM1 1400 0 200d-3 0.1 -LIM2 1400 0 200d-3 0.1 -CO3 2600 0 60d-3 0.53 -Na 2200 0 23d-3 1.28 -Ca 2600 0 40d-3 0.53 -OIN 2600 0 1d-3 0.1 -OC 1000 0 1d-3 0.001 -BC 1800 0 1d-3 0 -H2O 1000 0 18d-3 0 +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/5_coag_brownian/example.spec b/scenarios/5_coag_brownian/example.spec index 48a8d8d42..0ac19b5eb 100644 --- a/scenarios/5_coag_brownian/example.spec +++ b/scenarios/5_coag_brownian/example.spec @@ -39,6 +39,7 @@ coag_kernel brown # coagulation kernel do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 66 # random initialization (0 to use time) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/scenarios/6_camp/camp.spec b/scenarios/6_camp/camp.spec index 0eb21c603..1786ab6d0 100644 --- a/scenarios/6_camp/camp.spec +++ b/scenarios/6_camp/camp.spec @@ -37,6 +37,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to use time) allow_doubling no # whether to allow doubling (yes/no) From 6e653f47efe73ee9b179536a0dff7586dc36d9c0 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 23:02:59 -0600 Subject: [PATCH 035/127] update the test settings for weighting, accomodating the freezing codes --- scenarios/7_freezing/standard_setting/run_part.spec | 9 +++++---- test/freezing/run_part.spec | 8 +++++--- test/weighting/aero_data.dat | 6 +++--- test/weighting/run_part_flat.spec | 1 + test/weighting/run_part_flat_source.spec | 1 + test/weighting/run_part_flat_specified.spec | 1 + test/weighting/run_part_nummass.spec | 1 + test/weighting/run_part_nummass_source.spec | 1 + test/weighting/run_part_nummass_specified.spec | 1 + 9 files changed, 19 insertions(+), 10 deletions(-) diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec index cf3db8018..fea2a2c1e 100644 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -1,9 +1,11 @@ run_type particle # particle-resolved run output_prefix out/freezing_part # prefix of output files -n_repeat 20 # number of Monte Carlo repeats +n_repeat 10 # number of Monte Carlo repeats n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) #restart_file output/chiexp_indsize_0.8/restart.nc +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) @@ -11,6 +13,7 @@ t_output 10 # output interval (0 disables) (s) t_progress 10 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry gas_data gas_data.dat # file containing gas data gas_init gas_init.dat # initial gas mixing ratios @@ -46,12 +49,10 @@ do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM #immersion_freezing_scheme const #freezing_rate -.01123456789 -do_coating no +#do_coating no rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) -do_select_weighting yes # whether to select weighting explicitly (yes/no) -weight_type flat record_removals no # whether to record particle removals (yes/no) do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/run_part.spec b/test/freezing/run_part.spec index 1a8882137..4d45ef59c 100644 --- a/test/freezing/run_part.spec +++ b/test/freezing/run_part.spec @@ -4,6 +4,9 @@ n_repeat 10 # number of Monte Carlo repeats n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) #restart_file output/chiexp_indsize_0.8/restart.nc +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat + t_max 600 # total simulation time (s) del_t 1 # timestep (s) @@ -11,6 +14,7 @@ t_output 10 # output interval (0 disables) (s) t_progress 10 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry gas_data gas_data.dat # file containing gas data gas_init gas_init.dat # initial gas mixing ratios @@ -46,12 +50,10 @@ do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM #immersion_freezing_scheme const #freezing_rate -.01123456789 -do_coating no +#do_coating no rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) -do_select_weighting yes # whether to select weighting explicitly (yes/no) -weight_type flat record_removals no # whether to record particle removals (yes/no) do_parallel no # whether to run in parallel (yes/no) diff --git a/test/weighting/aero_data.dat b/test/weighting/aero_data.dat index 83d7a7091..f2fd5f131 100644 --- a/test/weighting/aero_data.dat +++ b/test/weighting/aero_data.dat @@ -1,4 +1,4 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SI 10000 0 18d-3 0 -SB 100 0 18d-3 0 -SE 1500 0 18d-3 0 +SI 10000 0 18d-3 0 0 0 +SB 100 0 18d-3 0 0 0 +SE 1500 0 18d-3 0 0 0 diff --git a/test/weighting/run_part_flat.spec b/test/weighting/run_part_flat.spec index 4ae85f318..3e0d24570 100644 --- a/test/weighting/run_part_flat.spec +++ b/test/weighting/run_part_flat.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/weighting/run_part_flat_source.spec b/test/weighting/run_part_flat_source.spec index 5ff999a45..1f9839264 100644 --- a/test/weighting/run_part_flat_source.spec +++ b/test/weighting/run_part_flat_source.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/weighting/run_part_flat_specified.spec b/test/weighting/run_part_flat_specified.spec index 3bb804688..1e0901c64 100644 --- a/test/weighting/run_part_flat_specified.spec +++ b/test/weighting/run_part_flat_specified.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/weighting/run_part_nummass.spec b/test/weighting/run_part_nummass.spec index eb6a5d208..c402c93d5 100644 --- a/test/weighting/run_part_nummass.spec +++ b/test/weighting/run_part_nummass.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/weighting/run_part_nummass_source.spec b/test/weighting/run_part_nummass_source.spec index fd107ebab..3d70d4cdd 100644 --- a/test/weighting/run_part_nummass_source.spec +++ b/test/weighting/run_part_nummass_source.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/weighting/run_part_nummass_specified.spec b/test/weighting/run_part_nummass_specified.spec index 0dc3e5cca..ab8129f67 100644 --- a/test/weighting/run_part_nummass_specified.spec +++ b/test/weighting/run_part_nummass_specified.spec @@ -41,6 +41,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) From 15af24562751120e9813d51d661989f244d8cf02 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 23:32:24 -0600 Subject: [PATCH 036/127] modify the 4_clean.sh for immersion freezing --- .gitignore | 3 ++- scenarios/7_freezing/4_clean.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a26c709eb..99e6e1f75 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ scenarios/3_condense/spec/ scenarios/3_condense/temp/ scenarios/3_condense/out/ scenarios/4_chamber/out/ -scenarios/7_freezing/aero_init_tools +scenarios/7_freezing/aero_init_tools/ scenarios/7_freezing/draw.py scenarios/7_freezing/freezing_run.sh scenarios/7_freezing/freezing_timing.txt @@ -30,5 +30,6 @@ scenarios/7_freezing/plot_temp1.py scenarios/7_freezing/run_part.spec scenarios/7_freezing/run_scripts scenarios/7_freezing/visual_tools +scenarios/7_freezing/out/ *.o *.mod diff --git a/scenarios/7_freezing/4_clean.sh b/scenarios/7_freezing/4_clean.sh index 1931ea0e1..ce836dcdc 100755 --- a/scenarios/7_freezing/4_clean.sh +++ b/scenarios/7_freezing/4_clean.sh @@ -2,3 +2,4 @@ rm -f *.dat rm -fr out +rm -f run_part.spec From 1064ce561a2a4258752a9a162153fef701f74ed6 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 26 Nov 2024 23:49:26 -0600 Subject: [PATCH 037/127] modify README for freezing scenario --- scenarios/7_freezing/0_README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md index eb8e44fc7..6c001d3eb 100644 --- a/scenarios/7_freezing/0_README.md +++ b/scenarios/7_freezing/0_README.md @@ -24,4 +24,4 @@ exp8: internal mixture, steady cooling 4. (Optional) Run 4_clean.sh. This deletes all files created by the processes above. Figure capture of out/TSs.png: -Simulated frozen fraction from PartMC for four different INP species and mixing states. (a) isothermal conditions, while panel (b) constant-rate cooling process. The red lines represent the temperature profiles as a function of time. The green lines correspond to simulations with 100% illite, gray lines indicate 100% Fe2O3, light blue lines are for external mixtures, and dark blue lines represent internal mixtures. Solid lines represent the average frozen fraction from 20 repeated simulations for each scenario, and the shaded areas denote the range between the maximum and minimum values. +Simulated frozen fraction from PartMC for four different INP species and mixing states. (a) isothermal conditions, while panel (b) constant-rate cooling process. The red lines represent the temperature profiles as a function of time. The green lines correspond to simulations with 100% illite, gray lines indicate 100% Fe2O3, light blue lines are for external mixtures, and dark blue lines represent internal mixtures. Solid lines represent the average frozen fraction from 10 repeated simulations for each scenario, and the shaded areas denote the range between the maximum and minimum values. From f1e60a4666fc7aea53c03ddb35dd070ad9f2d647 Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Wed, 27 Nov 2024 09:44:49 -0600 Subject: [PATCH 038/127] whitelist freezing scenario --- .dockerignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.dockerignore b/.dockerignore index e725e276f..42155c2ca 100644 --- a/.dockerignore +++ b/.dockerignore @@ -25,3 +25,4 @@ scenarios/4_chamber/out scenarios/5_coag_brownian/out !scenarios/6_camp scenarios/6_camp/out +!scenarios/7_freezing From f73236e179dbda4d91ccfe5072d0dae66a3dc908 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 27 Nov 2024 11:31:17 -0600 Subject: [PATCH 039/127] fix a bug in geometric random number generator --- src/rand.F90 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rand.F90 b/src/rand.F90 index b62f558ab..6f1502ca7 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -698,6 +698,7 @@ end subroutine uuid4_str FUNCTION pmc_random_geometric(P) ! Generate a random number in geometric distribution with the probability P ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f + implicit none real(kind=dp) :: P, U, TINY INTEGER :: pmc_random_geometric @@ -710,11 +711,11 @@ FUNCTION pmc_random_geometric(P) ENDIF IF (P.GT.0.9D0) THEN - pmc_random_geometric = ZBQLGEO + 1 + pmc_random_geometric = pmc_random_geometric + 1 U = pmc_random() do while( U.GT.P ) !U = ZBQLU01(0.0D0) - pmc_random_geometric = ZBQLGEO + 1 + pmc_random_geometric = pmc_random_geometric + 1 U = pmc_random() enddo !IF (U.GT.P) GOTO 10 From 64ae2383f1a0dc7d5968ade56d6fda419cde613c Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 27 Nov 2024 18:04:25 -0600 Subject: [PATCH 040/127] modify some codes to meet the compiler requirement in Docker --- src/aero_state.F90 | 12 +++++-- src/env_state.F90 | 16 ++++----- src/ice_nucleation.F90 | 36 ++++++++++++++++++--- test/freezing/test_freezing_theoretical.F90 | 26 ++++++++------- 4 files changed, 64 insertions(+), 26 deletions(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index fe301207e..a481396a6 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2807,7 +2807,11 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & = aero_state_particle_num_conc(aero_state, & aero_state%apa%particle(i_part), aero_data) aero_id(i_part) = aero_state%apa%particle(i_part)%id - aero_frozen(i_part) = aero_state%apa%particle(i_part)%frozen + if (aero_state%apa%particle(i_part)%frozen) then + aero_frozen(i_part) = 1 + else + aero_frozen(i_part) = 0 + end if aero_imf_temperature(i_part) & = aero_state%apa%particle(i_part)%imf_temperature aero_frozen_probability(i_part) = aero_state%apa%particle(i_part)%P_frozen @@ -3216,7 +3220,11 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) end if aero_particle%water_hyst_leg = aero_water_hyst_leg(i_part) aero_particle%id = aero_id(i_part) - aero_particle%frozen = aero_frozen(i_part) + if (aero_frozen(i_part) .eq. 1) then + aero_particle%frozen = .True. + else + aero_particle%frozen = .False. + end if aero_particle%imf_temperature = aero_imf_temperature(i_part) aero_particle%P_frozen = aero_frozen_probability(i_part) aero_particle%den_ice = aero_ice_density(i_part) diff --git a/src/env_state.F90 b/src/env_state.F90 index f623a6bdc..1c5b5aea3 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -656,8 +656,8 @@ subroutine env_state_saturated_vapor_pressure_water(env_state, pvs) T = env_state%temp if ((T <= 123) .OR. (T >= 332)) then - write(*, *) "Warning! the environment temperature is less then 123K or & - larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" + write(*, *) "Warning! the environment temperature is less then 123K or"& + ," larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" end if tmp = 54.842763 & @@ -682,8 +682,8 @@ subroutine env_state_saturated_vapor_pressure_ice(env_state, pis) T = env_state%temp if (T <= 110) then - write(*, *) "Warning! the environment temperature is less then 110K, the & - subroutine env_state_saturated_vapor_pressure_ice isn't applicable" + write(*, *) "Warning! the environment temperature is less then 110K, the"& + , "subroutine env_state_saturated_vapor_pressure_ice isn't applicable" end if tmp = 9.550426 & - 5723.265 / T & @@ -703,8 +703,8 @@ subroutine env_state_saturated_vapor_pressure_water_2(T, pvs) real(kind=dp) :: tmp if ((T <= 123) .OR. (T >= 332)) then - write(*, *) "Warning! the environment temperature is less then 123K or & - larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" + write(*, *) "Warning! the environment temperature is less then 123K or" & + ," larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" end if tmp = 54.842763 & @@ -728,8 +728,8 @@ subroutine env_state_saturated_vapor_pressure_ice_2(T, pis) real(kind=dp) :: tmp if (T <= 110) then - write(*, *) "Warning! the environment temperature is less then 110K, the & - subroutine env_state_saturated_vapor_pressure_ice isn't applicable" + write(*, *) "Warning! the environment temperature is less then 110K, the "& + "subroutine env_state_saturated_vapor_pressure_ice isn't applicable" end if tmp = 9.550426 & - 5723.265 / T & diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index f58d5911a..b7cbc427f 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -131,6 +131,11 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) integer :: i_part, i_bin, i_class, n_bins, n_class + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + total_masses = aero_state_masses(aero_state, aero_data) H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) H2O_frac = H2O_masses / total_masses @@ -149,6 +154,10 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 end if end do + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) + end subroutine immersion_freezing_singular !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), @@ -193,8 +202,14 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in real(kind=dp) :: coating_ratio integer :: i_spec_max real(kind=dp) :: j_het_max + integer :: rand_geometric integer :: loop_count = 0 + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + call aero_state_sort(aero_state, aero_data) total_masses = aero_state_masses(aero_state, aero_data) @@ -224,8 +239,8 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in k_th = n_parts_in_bin + 1 loop_choosed_particles: do while(.TRUE.) - rand = pmc_random_geometric(p_freeze_max) - k_th = k_th - rand + rand_geometric = pmc_random_geometric(p_freeze_max) + k_th = k_th - rand_geometric if (k_th <= 0) then EXIT loop_choosed_particles endif @@ -240,8 +255,8 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in if (immersion_freezing_scheme .eq. 'ABIFM') then call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) if (p_freeze > p_freeze_max) then - print*, "Warning! p_freeze > p_freeze_max. & - p_freeze = ", p_freeze, "; p_freeze_max = "& + print*, "Warning! p_freeze > p_freeze_max. "& + ,"p_freeze = ", p_freeze, "; p_freeze_max = "& , p_freeze_max endif rand = pmc_random() @@ -264,6 +279,9 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in enddo loop_classes enddo loop_bins + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) end subroutine immersion_freezing_time_dependent @@ -302,6 +320,11 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & integer :: clock_start, clock_end call system_clock(clock_start) + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + total_masses = aero_state_masses(aero_state, aero_data) H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) H2O_frac = H2O_masses / total_masses @@ -336,6 +359,11 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 end if end do + + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) + call system_clock(clock_end) freeze_module_run_time = freeze_module_run_time + clock_end - clock_start diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index 536104beb..b968fdea5 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -35,19 +35,21 @@ program theoretical_freezing close(out_unit) + contains + subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) + use pmc_env_state + use pmc_constants + implicit none + real(kind=dp), intent(in) :: T, abifm_m, abifm_c + real(kind=dp), intent(out) :: Jhet + real(kind=dp) :: es, ei, a_w_ice + call env_state_saturated_vapor_pressure_water_2(T, es) + call env_state_saturated_vapor_pressure_ice_2(T, ei) + a_w_ice = ei / es + Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + + end subroutine compute_Jhet_ABIFM end program theoretical_freezing -subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) - use pmc_env_state - use pmc_constants - implicit none - real(kind=dp), intent(in) :: T, abifm_m, abifm_c - real(kind=dp), intent(out) :: Jhet - real(kind=dp) :: es, ei, a_w_ice - call env_state_saturated_vapor_pressure_water_2(T, es) - call env_state_saturated_vapor_pressure_ice_2(T, ei) - a_w_ice = ei / es - Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 -end subroutine compute_Jhet_ABIFM From e32c3a593dbd97c15269fd173637cfa1c1bf5ac9 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 27 Nov 2024 19:09:14 -0600 Subject: [PATCH 041/127] modify the aero_data.dat and spec file of tchem test case --- test/tchem/aero_data.dat | 6 +++--- test/tchem/run_part_cb05cl_ae5.spec | 1 + test/tchem/run_part_chapman.spec | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/test/tchem/aero_data.dat b/test/tchem/aero_data.dat index 83d7a7091..d52f270c3 100644 --- a/test/tchem/aero_data.dat +++ b/test/tchem/aero_data.dat @@ -1,4 +1,4 @@ # dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SI 10000 0 18d-3 0 -SB 100 0 18d-3 0 -SE 1500 0 18d-3 0 +SI 10000 0 18d-3 0 0 0 +SB 100 0 18d-3 0 0 0 +SE 1500 0 18d-3 0 0 0 diff --git a/test/tchem/run_part_cb05cl_ae5.spec b/test/tchem/run_part_cb05cl_ae5.spec index 296463b2e..0526191c0 100644 --- a/test/tchem/run_part_cb05cl_ae5.spec +++ b/test/tchem/run_part_cb05cl_ae5.spec @@ -42,6 +42,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/tchem/run_part_chapman.spec b/test/tchem/run_part_chapman.spec index e28a9dae5..91a449619 100644 --- a/test/tchem/run_part_chapman.spec +++ b/test/tchem/run_part_chapman.spec @@ -42,6 +42,7 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) From 685a2222169391508bae68e8322b471e51a62ad8 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 28 Nov 2024 02:09:21 -0600 Subject: [PATCH 042/127] fix the issue of imf in MPI run; modify the imf scheme variable --- scenarios/7_freezing/3_draw.py | 2 +- src/ice_nucleation.F90 | 119 ++++++++++++++++++++++++--------- src/run_part.F90 | 45 +++++++++---- 3 files changed, 119 insertions(+), 47 deletions(-) diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py index 5e65ff228..638ded297 100755 --- a/scenarios/7_freezing/3_draw.py +++ b/scenarios/7_freezing/3_draw.py @@ -109,4 +109,4 @@ def draw(fig, ax, casesName, ax_label): #plt.show() plt.savefig("out/TSs.png", dpi = 500) - print("The figure has been saved to out/Ts.png") + print("The figure has been saved to out/TSs.png") diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index b7cbc427f..50145a9c2 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -16,6 +16,11 @@ module pmc_ice_nucleation implicit none + integer, parameter :: IMMERSION_FREEZING_SCHEME_INVALID = 0 + integer, parameter :: IMMERSION_FREEZING_SCHEME_CONST = 1 + integer, parameter :: IMMERSION_FREEZING_SCHEME_SINGULAR = 2 + integer, parameter :: IMMERSION_FREEZING_SCHEME_ABIFM = 3 + !> Used to record the runtime of the ice nucleation module. integer :: freeze_module_run_time = 0 !> True: using the binned-tau leaping algorithm for time-dependent scheme. @@ -32,8 +37,8 @@ module pmc_ice_nucleation !> Main subroutine for immersion freezing simulation. subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & - do_coating, coating_spec, coating_ratio) + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + !do_coating, coating_spec, coating_ratio) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -47,15 +52,16 @@ subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & !> Total time to integrate. real(kind=dp), intent(in) :: del_t !> Flag for coating effect. - logical :: do_coating + !logical :: do_coating !> Immersion freezing scheme (e.g., ABIFM, sigular, constant rate ...). - character(len=*), intent(in) :: immersion_freezing_scheme + !character(len=*), intent(in) :: immersion_freezing_scheme + integer, intent(in) :: immersion_freezing_scheme_type !> Freezing rate (only used for the constant rate scheme). real(kind=dp) :: freezing_rate !> Coating species (only used for the coating effect). - character(len=*), intent(in) :: coating_spec + !character(len=*), intent(in) :: coating_spec !> Surface ratio coated (only used for the coating effect). - real(kind=dp) :: coating_ratio + !real(kind=dp) :: coating_ratio !> Start and end time (used for timing). integer :: clock_start, clock_end @@ -64,18 +70,19 @@ subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & !> Call the immersion freezing subroutine according to the immersion !> freezing scheme. - if ((immersion_freezing_scheme .eq. 'ABIFM') & - .OR. (immersion_freezing_scheme .eq. 'const')) then + if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & + .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then if (do_speedup) then call immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & - do_coating, coating_spec, coating_ratio) + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & + !do_coating, coating_spec, coating_ratio) else call immersion_freezing_time_dependent_naive(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & - do_coating, coating_spec, coating_ratio) + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & + !do_coating, coating_spec, coating_ratio) end if - else if (immersion_freezing_scheme .eq. 'singular') then + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_SINGULAR) then call immersion_freezing_singular(aero_state, aero_data, env_state_initial, & env_state_final) else @@ -164,8 +171,8 @@ end subroutine immersion_freezing_singular !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applys the binned-tau leaping algorithm for speeding up. subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme, freezing_rate, & - do_coating, coating_spec, coating_ratio) + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & + !do_coating, coating_spec, coating_ratio) implicit none !> Aerosol state. @@ -183,8 +190,9 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in integer :: i_part, i_bin, i_class, n_bins, n_class real(kind=dp) :: tmp !logical :: do_freezing_CNT, do_coating - logical :: do_coating - character(len=*), intent(in) :: immersion_freezing_scheme + !logical :: do_coating + !character(len=*), intent(in) :: immersion_freezing_scheme + integer, intent(in) :: immersion_freezing_scheme_type real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs real(kind=dp) :: abifm_m, abifm_c @@ -198,8 +206,8 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) - character(len=*), intent(in) :: coating_spec - real(kind=dp) :: coating_ratio + !character(len=*), intent(in) :: coating_spec + !real(kind=dp) :: coating_ratio integer :: i_spec_max real(kind=dp) :: j_het_max integer :: rand_geometric @@ -218,7 +226,7 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in call env_state_saturated_vapor_pressure_water(env_state_final, pvs) call env_state_saturated_vapor_pressure_ice(env_state_final, pis) a_w_ice = pis / pvs - if (immersion_freezing_scheme .eq. 'ABIFM') then + if (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) endif @@ -231,9 +239,11 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) diameter_max = radius_max * 2 - if (immersion_freezing_scheme .eq. 'ABIFM') then + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) - else if (immersion_freezing_scheme .eq. 'const') then + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then p_freeze_max = 1 - exp(freezing_rate * del_t) endif @@ -252,7 +262,8 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in if (H2O_frac(i_part) < 1e-2) then cycle end if - if (immersion_freezing_scheme .eq. 'ABIFM') then + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) if (p_freeze > p_freeze_max) then print*, "Warning! p_freeze > p_freeze_max. "& @@ -289,8 +300,9 @@ end subroutine immersion_freezing_time_dependent !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applys the naive algorithm for reference. subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state_initial, env_state_final, del_t, immersion_freezing_scheme, & - freezing_rate, do_coating, coating_spec, coating_ratio) + env_state_initial, env_state_final, del_t, & + immersion_freezing_scheme_type, & + freezing_rate)!, do_coating, coating_spec, coating_ratio) !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -306,16 +318,17 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & integer :: i_part real(kind=dp) :: tmp - logical :: do_coating - character(len=*), intent(in) :: immersion_freezing_scheme + !logical :: do_coating + !character(len=*), intent(in) :: immersion_freezing_scheme + integer, intent(in) :: immersion_freezing_scheme_type real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs !real(kind=dp) :: abifm_m, abifm_c real(kind=dp) :: p_freeze, p_frozen real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) - character(len=*), intent(in) :: coating_spec - real(kind=dp) :: coating_ratio + !character(len=*), intent(in) :: coating_spec + !real(kind=dp) :: coating_ratio real(kind=dp) :: rand integer :: clock_start, clock_end @@ -343,9 +356,11 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & end if rand = pmc_random() - if (immersion_freezing_scheme .eq. 'ABIFM') then + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) !do_coating, coating_spec, coating_ratio) - else if (immersion_freezing_scheme .eq. 'const') then + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then p_freeze = 1 - exp(freezing_rate * del_t) end if p_frozen = aero_state%apa%particle(i_part)%P_frozen @@ -508,5 +523,45 @@ subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) end subroutine ABIFM_max - + + !> Read the specification for a kernel type from a spec file and + !> generate it. + subroutine spec_file_read_immersion_freezing_scheme_type(file, immersion_freezing_scheme_type) + + !> Spec file. + type(spec_file_t), intent(inout) :: file + !> Kernel type. + integer, intent(out) :: immersion_freezing_scheme_type + + character(len=SPEC_LINE_MAX_VAR_LEN) :: imf_scheme + + !> \page input_format_immersion_freezing_scheme Input File Format: Immersion freezing scheme + !! + !! The immersion freezing scheme is specified by the parameter: + !! - \b immersion_freezing_scheme (string): the type of immersion freezing scheme + !! must be one of: \c sedi for the gravitational sedimentation + !! kernel; \c additive for the additive kernel; \c constant + !! for the constant kernel; \c brown for the Brownian kernel, + !! or \c zero for no immersion freezing + !! + !! If \c immersion_freezing_scheme is \c additive, the kernel coefficient needs to be + !! provided using the \c additive_kernel_coeff parameter + !! + !! See also: + !! - \ref spec_file_format --- the input file text format + + call spec_file_read_string(file, 'immersion_freezing_scheme', imf_scheme) + if (trim(imf_scheme) == 'const') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_CONST + elseif (trim(imf_scheme) == 'singular') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_SINGULAR + elseif (trim(imf_scheme) == 'ABIFM') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_ABIFM + else + call spec_file_die_msg(920761229, file, & + "Unknown immersion freezing scheme: " // trim(imf_scheme)) + end if + + end subroutine spec_file_read_immersion_freezing_scheme_type + end module pmc_ice_nucleation diff --git a/src/run_part.F90 b/src/run_part.F90 index e8896b490..2ab48f878 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -75,13 +75,14 @@ module pmc_run_part logical :: do_immersion_freezing !> Whether to do freezing using Classical Nucleation Theory !logical :: do_freezing_CNT - character(len=300) :: immersion_freezing_scheme + !character(len=300) :: immersion_freezing_scheme + integer :: immersion_freezing_scheme_type real(kind=dp) :: freezing_rate !real(kind=dp) :: abifm_m, abifm_c - logical :: do_coating - character(len=300) :: coating_spec - real(kind=dp) :: coating_ratio + !logical :: do_coating + !character(len=300) :: coating_spec + !real(kind=dp) :: coating_ratio logical :: do_ice_shape = .False. logical :: do_ice_density = .False. @@ -252,7 +253,8 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end if ! initialize the immersion freezing temperature for Singular scheme if (run_part_opt%do_immersion_freezing .and. & - run_part_opt%immersion_freezing_scheme .eq. 'singular') then + (run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_SINGULAR)) then call singular_initialize(aero_state, aero_data) end if @@ -341,6 +343,9 @@ integer function pmc_mpi_pack_size_run_part_opt(val) + pmc_mpi_pack_size_integer(val%nucleate_weight_class) & + pmc_mpi_pack_size_logical(val%do_coagulation) & + pmc_mpi_pack_size_logical(val%do_nucleation) & + + pmc_mpi_pack_size_logical(val%do_immersion_freezing) & + + pmc_mpi_pack_size_integer(val%immersion_freezing_scheme_type) & + + pmc_mpi_pack_size_real(val%freezing_rate) & + pmc_mpi_pack_size_logical(val%allow_doubling) & + pmc_mpi_pack_size_logical(val%allow_halving) & + pmc_mpi_pack_size_logical(val%do_condensation) & @@ -392,6 +397,10 @@ subroutine pmc_mpi_pack_run_part_opt(buffer, position, val) call pmc_mpi_pack_integer(buffer, position, val%nucleate_weight_class) call pmc_mpi_pack_logical(buffer, position, val%do_coagulation) call pmc_mpi_pack_logical(buffer, position, val%do_nucleation) + call pmc_mpi_pack_logical(buffer, position, val%do_immersion_freezing) + call pmc_mpi_pack_integer(buffer, position, & + val%immersion_freezing_scheme_type) + call pmc_mpi_pack_real(buffer, position, val%freezing_rate) call pmc_mpi_pack_logical(buffer, position, val%allow_doubling) call pmc_mpi_pack_logical(buffer, position, val%allow_halving) call pmc_mpi_pack_logical(buffer, position, val%do_condensation) @@ -446,6 +455,9 @@ subroutine pmc_mpi_unpack_run_part_opt(buffer, position, val) call pmc_mpi_unpack_integer(buffer, position, val%nucleate_weight_class) call pmc_mpi_unpack_logical(buffer, position, val%do_coagulation) call pmc_mpi_unpack_logical(buffer, position, val%do_nucleation) + call pmc_mpi_unpack_logical(buffer, position, val%do_immersion_freezing) + call pmc_mpi_unpack_integer(buffer, position, val%immersion_freezing_scheme_type) + call pmc_mpi_unpack_real(buffer, position, val%freezing_rate) call pmc_mpi_unpack_logical(buffer, position, val%allow_doubling) call pmc_mpi_unpack_logical(buffer, position, val%allow_halving) call pmc_mpi_unpack_logical(buffer, position, val%do_condensation) @@ -703,8 +715,10 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & if (run_part_opt%do_immersion_freezing) then - call spec_file_read_string(file, 'immersion_freezing_scheme', & - run_part_opt%immersion_freezing_scheme) + !call spec_file_read_string(file, 'immersion_freezing_scheme', & + ! run_part_opt%immersion_freezing_scheme) + call spec_file_read_immersion_freezing_scheme_type(file, & + run_part_opt%immersion_freezing_scheme_type) !if (run_part_opt%do_freezing_CNT) then @@ -714,14 +728,17 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & ! run_part_opt%abifm_c) !else - if (run_part_opt%immersion_freezing_scheme .eq. 'const') then - + if (run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then call spec_file_read_real(file, 'freezing_rate', & run_part_opt%freezing_rate) - else if (run_part_opt%immersion_freezing_scheme .eq. 'ABIFM') then + + else if (run_part_opt%immersion_freezing_scheme_type .eq.& + IMMERSION_FREEZING_SCHEME_ABIFM) then continue - else if (run_part_opt%immersion_freezing_scheme .eq. 'singular') then + else if (run_part_opt%immersion_freezing_scheme_type .eq.& + IMMERSION_FREEZING_SCHEME_SINGULAR) then continue else call assert_msg(121370299, .false., & @@ -911,9 +928,9 @@ subroutine run_part_timestep(scenario, env_state, aero_data, aero_state, & end if if (run_part_opt%do_immersion_freezing) then call immersion_freezing(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme, & - run_part_opt%freezing_rate, run_part_opt%do_coating, run_part_opt%coating_spec, & - run_part_opt%coating_ratio) + env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & + run_part_opt%freezing_rate)!, run_part_opt%do_coating, run_part_opt%coating_spec, & + !run_part_opt%coating_ratio) call melting(aero_state, aero_data, old_env_state, env_state) end if if (run_part_opt%do_coagulation) then From 840678c85530fcf8473759865338677d02735489 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 28 Nov 2024 02:15:30 -0600 Subject: [PATCH 043/127] modify camp.spec, adding do_immersion_freezing no --- test/camp/camp.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/camp/camp.spec b/test/camp/camp.spec index f563bbbf9..30e6444f2 100644 --- a/test/camp/camp.spec +++ b/test/camp/camp.spec @@ -39,6 +39,8 @@ do_coagulation no # whether to do coagulation (yes/no) do_condensation no # whether to do condensation (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing no # whether to do freezing (yes/no) + rand_init 0 # random initialization (0 to use time) allow_doubling no # whether to allow doubling (yes/no) From 9782e5729c3abc09286fa1e638e68eeb88520869 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Fri, 29 Nov 2024 21:47:36 -0600 Subject: [PATCH 044/127] Apply suggestions from code review Modifications from Jeffrey Curtis' suggestion. Co-authored-by: Jeffrey Curtis --- .gitignore | 13 ------------- CMakeLists.txt | 12 ------------ .../7_freezing/standard_setting/run_part.spec | 4 ---- src/aero_data.F90 | 1 - src/aero_particle.F90 | 17 +++++------------ src/aero_state.F90 | 4 ++-- 6 files changed, 7 insertions(+), 44 deletions(-) diff --git a/.gitignore b/.gitignore index 99e6e1f75..6f9897539 100644 --- a/.gitignore +++ b/.gitignore @@ -17,19 +17,6 @@ scenarios/3_condense/spec/ scenarios/3_condense/temp/ scenarios/3_condense/out/ scenarios/4_chamber/out/ -scenarios/7_freezing/aero_init_tools/ -scenarios/7_freezing/draw.py -scenarios/7_freezing/freezing_run.sh -scenarios/7_freezing/freezing_timing.txt -scenarios/7_freezing/hist.py -scenarios/7_freezing/make_pres.py -scenarios/7_freezing/make_temp.py -scenarios/7_freezing/mass_to_volume.py -scenarios/7_freezing/volume_to_mass.py -scenarios/7_freezing/plot_temp1.py -scenarios/7_freezing/run_part.spec -scenarios/7_freezing/run_scripts -scenarios/7_freezing/visual_tools scenarios/7_freezing/out/ *.o *.mod diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e597019c..9cafe2549 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -209,9 +209,7 @@ if(ENABLE_MPI) endif() add_test(test_rand ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh rand) add_test(test_sedi ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh sedi) -#<<<<<<< HEAD add_test(test_freezing ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh freezing) -#======= if (ENABLE_TCHEM) add_test(test_tchem ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh tchem) endif() @@ -238,14 +236,11 @@ add_library(partmclib src/aero_state.F90 src/integer_varray.F90 src/netcdf.F90 src/aero_info.F90 src/aero_info_array.F90 src/nucleate.F90 src/condense.F90 src/fractal.F90 src/chamber.F90 src/camp_interface.F90 src/photolysis.F90 src/sys.F90 -#<<<<<<< HEAD src/ice_nucleation.F90 ${SUNDIALS_SRC} ${GSL_SRC} -#======= src/tchem_interface.F90 src/aero_component.F90 ${SUNDIALS_SRC} ${GSL_SRC} ${TCHEM_SRC} -#>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 ${C_SORT_SRC}) target_link_libraries(partmclib ${NETCDF_LIBS} ${SUNDIALS_LIBS} @@ -288,7 +283,6 @@ add_executable(test_bidisperse_ode target_link_libraries(test_bidisperse_ode partmclib) ###################################################################### - # test_bidisperse_extract add_executable(test_bidisperse_extract @@ -297,7 +291,6 @@ add_executable(test_bidisperse_extract target_link_libraries(test_bidisperse_extract ${NETCDF_LIBS}) ###################################################################### - # test_freezing_extract add_executable(test_freezing_extract @@ -306,7 +299,6 @@ add_executable(test_freezing_extract target_link_libraries(test_freezing_extract ${NETCDF_LIBS}) ###################################################################### - # test_freezing_theoretical add_executable(test_freezing_theoretical @@ -315,7 +307,6 @@ add_executable(test_freezing_theoretical target_link_libraries(test_freezing_theoretical partmclib) ###################################################################### - # test_nucleate_ode add_executable(test_nucleate_ode test/nucleate/test_nucleate_ode.F90 @@ -442,7 +433,6 @@ add_executable(freezing_process target_link_libraries(freezing_process partmclib) ###################################################################### - # scenarios/4_chamber/chamber_process add_executable(chamber_process @@ -450,5 +440,3 @@ add_executable(chamber_process target_link_libraries(chamber_process partmclib) ###################################################################### - - diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec index fea2a2c1e..23a5199e3 100644 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -3,7 +3,6 @@ output_prefix out/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) -#restart_file output/chiexp_indsize_0.8/restart.nc do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -39,9 +38,7 @@ start_time 0 # start time (s since 00:00 UTC) start_day 1 # start day of year (UTC) do_coagulation no # whether to do coagulation (yes/no) -#coag_kernel brown do_condensation no # whether to do condensation (yes/no) -#do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) do_immersion_freezing yes # whether to do freezing (yes/no) @@ -49,7 +46,6 @@ do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM #immersion_freezing_scheme const #freezing_rate -.01123456789 -#do_coating no rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/src/aero_data.F90 b/src/aero_data.F90 index 75c0ab9b5..d0fe85384 100644 --- a/src/aero_data.F90 +++ b/src/aero_data.F90 @@ -1100,7 +1100,6 @@ subroutine aero_data_initialize(aero_data, camp_core) if (spec_type /= CHEM_SPEC_VARIABLE .and. & spec_type /= CHEM_SPEC_CONSTANT .and. & spec_type /= CHEM_SPEC_PSSA) cycle - !print*, spec_names(i_spec)%string if (spec_names(i_spec)%string(1:3) /= "P1.") exit num_spec = num_spec + 1 tmp_spec_names(num_spec)%string = spec_names(i_spec)%string(4:) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 1cc4c8390..2d6e216e9 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -56,22 +56,18 @@ module pmc_aero_particle real(kind=dp) :: least_create_time !> Last time a constituent was created (s). real(kind=dp) :: greatest_create_time -!<<<<<<< HEAD - !> ice-phase flag + !> Ice-phase flag. logical :: frozen - !> immersion freezing temperature + !> Immersion freezing temperature (K). real(kind=dp) :: imf_temperature - !> ice-phase probability + !> Ice-phase probability (1). real(kind=dp) :: P_frozen - !> ice density + !> Ice density (kg m^{-3}). real(kind=dp) :: den_ice - !> ice shape + !> Ice shape. real(kind=dp) :: ice_shape_phi - -!======= !> True number of primary particles contributing to particle. integer :: n_primary_parts -!>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 end type aero_particle_t !> Next unique ID number to use for a particle. @@ -110,15 +106,12 @@ subroutine aero_particle_shift(aero_particle_from, aero_particle_to) aero_particle_to%least_create_time = aero_particle_from%least_create_time aero_particle_to%greatest_create_time = & aero_particle_from%greatest_create_time -!<<<<<<< HEAD aero_particle_to%frozen = aero_particle_from%frozen aero_particle_to%imf_temperature = aero_particle_from%imf_temperature aero_particle_to%P_frozen = aero_particle_from%P_frozen aero_particle_to%den_ice = aero_particle_from%den_ice aero_particle_to%ice_shape_phi = aero_particle_from%ice_shape_phi -!======= aero_particle_to%n_primary_parts = aero_particle_from%n_primary_parts -!>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 end subroutine aero_particle_shift diff --git a/src/aero_state.F90 b/src/aero_state.F90 index a481396a6..4206c3a95 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2813,11 +2813,11 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & aero_frozen(i_part) = 0 end if aero_imf_temperature(i_part) & - = aero_state%apa%particle(i_part)%imf_temperature + = aero_state%apa%particle(i_part)%imf_temperature aero_frozen_probability(i_part) = aero_state%apa%particle(i_part)%P_frozen aero_ice_density(i_part) = aero_state%apa%particle(i_part)%den_ice aero_ice_shape_phi(i_part) & - = aero_state%apa%particle(i_part)%ice_shape_phi + = aero_state%apa%particle(i_part)%ice_shape_phi aero_least_create_time(i_part) & = aero_state%apa%particle(i_part)%least_create_time aero_greatest_create_time(i_part) & From 411474dc1a047e96fb2ff0ad777990f43cf72bb2 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 3 Dec 2024 09:38:46 -0600 Subject: [PATCH 045/127] add abifm parameters for camp test --- .../species.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json b/test/camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json index e46bc5511..e0c09ac1c 100644 --- a/test/camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json +++ b/test/camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json @@ -9,6 +9,8 @@ "type" : "CHEM_SPEC", "absolute integration tolerance" : 1.0E-03, "molecular weight [kg mol-1]" : 0.08806, + "abifm_m": 0, + "abifm_c": 0, "description" : "gas-phase product from isoprene oxidation by OH", "notes" : [ "using diffusion coefficient from dry deposition", @@ -20,6 +22,8 @@ "type" : "CHEM_SPEC", "absolute integration tolerance" : 1.0E-03, "molecular weight [kg mol-1]" : 0.09003, + "abifm_m": 0, + "abifm_c": 0, "description" : "gas-phase product from isoprene oxidation by O3", "notes" : [ "using diffusion coefficient from dry deposition", @@ -31,6 +35,8 @@ "type" : "CHEM_SPEC", "absolute integration tolerance" : 1.0E-03, "molecular weight [kg mol-1]" : 0.17025, + "abifm_m": 0, + "abifm_c": 0, "description" : "gas-phase product from monoterpene oxidation by OH", "notes" : [ "using diffusion coefficient from dry deposition", @@ -42,6 +48,8 @@ "type" : "CHEM_SPEC", "absolute integration tolerance" : 1.0E-03, "molecular weight [kg mol-1]" : 0.202162, + "abifm_m": 0, + "abifm_c": 0, "description" : "gas-phase product from monoterpene oxidation by O3", "notes" : [ "using diffusion coefficient from dry deposition", @@ -55,6 +63,8 @@ "absolute integration tolerance" : 1.0E-05, "density [kg m-3]" : 1800.0, "molecular weight [kg mol-1]" : 0.41475, + "abifm_m": 0, + "abifm_c": 0, "description" : "lumped hydrophobic particulate matter", "num_ions" : 0, "kappa" : 0.0, @@ -67,6 +77,8 @@ "absolute integration tolerance" : 1.0E-05, "density [kg m-3]" : 1800.0, "molecular weight [kg mol-1]" : 0.08806, + "abifm_m": 0, + "abifm_c": 0, "description" : "First isoprene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, @@ -82,6 +94,8 @@ "absolute integration tolerance" : 1.0E-05, "density [kg m-3]" : 1800.0, "molecular weight [kg mol-1]" : 0.09003, + "abifm_m": 0, + "abifm_c": 0, "description" : "Second isoprene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, @@ -97,6 +111,8 @@ "absolute integration tolerance" : 1.0E-05, "density [kg m-3]" : 1800.0, "molecular weight [kg mol-1]" : 0.17025, + "abifm_m": 0, + "abifm_c": 0, "description" : "First monoterpene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, @@ -113,6 +129,8 @@ "absolute integration tolerance" : 1.0E-05, "density [kg m-3]" : 1800.0, "molecular weight [kg mol-1]" : 0.202162, + "abifm_m": 0, + "abifm_c": 0, "description" : "Second monoterpene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, From 5c06fce3c615b0187a673949e94d526b51c1390d Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 10:20:58 -0600 Subject: [PATCH 046/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 50145a9c2..a984e921f 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -214,9 +214,6 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in integer :: loop_count = 0 - allocate(total_masses(aero_state_n_part(aero_state))) - allocate(H2O_masses(aero_state_n_part(aero_state))) - allocate(H2O_frac(aero_state_n_part(aero_state))) call aero_state_sort(aero_state, aero_data) From 9b38567a545c6084b949d01593e05eb8fbb6d9cc Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 10:21:10 -0600 Subject: [PATCH 047/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index a984e921f..d3992202f 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -287,9 +287,6 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in enddo loop_classes enddo loop_bins - deallocate(total_masses) - deallocate(H2O_masses) - deallocate(H2O_frac) end subroutine immersion_freezing_time_dependent From abfa072cc1ebce4bafaa87c2b590c19cf000d874 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 3 Dec 2024 10:57:34 -0600 Subject: [PATCH 048/127] keep allocate/deallocate in the ice_nucleation.F90 (fix it in the future) --- src/ice_nucleation.F90 | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index d3992202f..2df621501 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -161,6 +161,7 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 end if end do + deallocate(total_masses) deallocate(H2O_masses) deallocate(H2O_frac) @@ -215,6 +216,10 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in integer :: loop_count = 0 + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + call aero_state_sort(aero_state, aero_data) total_masses = aero_state_masses(aero_state, aero_data) @@ -286,7 +291,10 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in enddo loop_choosed_particles enddo loop_classes enddo loop_bins - + + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) end subroutine immersion_freezing_time_dependent From 3227dd2854f70fcca2d8a10567f39d29e67d76ce Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 3 Dec 2024 11:25:59 -0600 Subject: [PATCH 049/127] rank the test cases alphabetically --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9cafe2549..1971d9e67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -198,18 +198,18 @@ if(ENABLE_SUNDIALS) endif() add_test(test_emission ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh emission) add_test(test_fractal ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh fractal) +add_test(test_freezing ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh freezing) add_test(test_loss ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh loss) -add_test(test_nucleate ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh nucleate) add_test(test_mixing_state ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh mixing_state) if(ENABLE_MOSAIC) add_test(test_mosaic ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh mosaic) endif() +add_test(test_nucleate ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh nucleate) if(ENABLE_MPI) add_test(test_parallel ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh parallel) endif() add_test(test_rand ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh rand) add_test(test_sedi ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh sedi) -add_test(test_freezing ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh freezing) if (ENABLE_TCHEM) add_test(test_tchem ${CMAKE_BINARY_DIR}/test_run/run_test_directory.sh tchem) endif() From b80486c21a295bfc8d5375f664dcf23abc5e50ab Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 3 Dec 2024 11:29:06 -0600 Subject: [PATCH 050/127] delete the repeated line --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1971d9e67..99907062c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -237,7 +237,6 @@ add_library(partmclib src/aero_state.F90 src/integer_varray.F90 src/nucleate.F90 src/condense.F90 src/fractal.F90 src/chamber.F90 src/camp_interface.F90 src/photolysis.F90 src/sys.F90 src/ice_nucleation.F90 - ${SUNDIALS_SRC} ${GSL_SRC} src/tchem_interface.F90 src/aero_component.F90 ${SUNDIALS_SRC} ${GSL_SRC} ${TCHEM_SRC} From 22aca301f104b2cd937dab0b4c573d7f674a8f08 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:29:39 -0600 Subject: [PATCH 051/127] Update src/partmc.F90 Co-authored-by: Jeffrey Curtis --- src/partmc.F90 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/partmc.F90 b/src/partmc.F90 index b360dfaa9..8f3c9aa5d 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -490,10 +490,6 @@ subroutine partmc_part(file) run_part_opt%t_wall_start = system_clock_time() - - ! Wenhan Tang: add for saving the timing results - !open(1997, file="freezing_timing.txt") - do i_repeat = 1,run_part_opt%n_repeat run_part_opt%i_repeat = i_repeat From f3ef66a049f19189458340eea8c4d138e48726ca Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:30:02 -0600 Subject: [PATCH 052/127] Update src/partmc.F90 Co-authored-by: Jeffrey Curtis --- src/partmc.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/partmc.F90 b/src/partmc.F90 index 8f3c9aa5d..bf533e9b0 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -499,7 +499,6 @@ subroutine partmc_part(file) call aero_state_set_n_part_ideal(aero_state, n_part) else call aero_state_zero(aero_state) - aero_mode_type_exp_present & = aero_dist_contains_aero_mode_type(aero_dist_init, & AERO_MODE_TYPE_EXP) & From 4ef94ce7145733c9968f5a7878d779a5302cc4c1 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:30:26 -0600 Subject: [PATCH 053/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 2ab48f878..356c7c4ea 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -71,7 +71,6 @@ module pmc_run_part !> Whether to do nucleation. logical :: do_nucleation !> Whether to do freezing. - !logical :: do_freezing logical :: do_immersion_freezing !> Whether to do freezing using Classical Nucleation Theory !logical :: do_freezing_CNT From f40ec3c9e881d203dc201d1ac3c3ef6c1c526b4e Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:30:44 -0600 Subject: [PATCH 054/127] Update src/partmc.F90 Co-authored-by: Jeffrey Curtis --- src/partmc.F90 | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/partmc.F90 b/src/partmc.F90 index bf533e9b0..f7e34947e 100644 --- a/src/partmc.F90 +++ b/src/partmc.F90 @@ -540,8 +540,6 @@ subroutine partmc_part(file) end if end do - ! Wenhan Tang: add for the freezing timing - !close(1997) if (run_part_opt%do_tchem) then #ifdef PMC_USE_TCHEM From c159539d54ddfb867deb6ad31c506edecc8a34f1 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:32:33 -0600 Subject: [PATCH 055/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 356c7c4ea..8deeb61e6 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -268,9 +268,6 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & i_output, progress_n_samp, progress_n_coag, progress_n_emit, & progress_n_dil_in, progress_n_dil_out, progress_n_nuc) - !print*, "Freeze module total run time:", freeze_module_run_time - !write(1997, *) freeze_module_run_time - if (run_part_opt%do_mosaic) then call mosaic_cleanup() end if From 5fe679f42a0d2407938cdc135ee49baef42ad4c3 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:33:00 -0600 Subject: [PATCH 056/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 8deeb61e6..7dbbac04c 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -742,14 +742,6 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & endif - !call spec_file_read_logical(file, 'do_coating', & - ! run_part_opt%do_coating) - !if (run_part_opt%do_coating) then - ! call spec_file_read_string(file, 'coating_spec', & - ! run_part_opt%coating_spec) - ! call spec_file_read_real(file, 'coating_ratio', & - ! run_part_opt%coating_ratio) - !endif endif From cab740d5c8896d02cd79e7ab8906b270c8b8779d Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:37:12 -0600 Subject: [PATCH 057/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 7dbbac04c..8cbc07334 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -916,9 +916,8 @@ subroutine run_part_timestep(scenario, env_state, aero_data, aero_state, & end if if (run_part_opt%do_immersion_freezing) then call immersion_freezing(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & - run_part_opt%freezing_rate)!, run_part_opt%do_coating, run_part_opt%coating_spec, & - !run_part_opt%coating_ratio) + env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & + run_part_opt%freezing_rate) call melting(aero_state, aero_data, old_env_state, env_state) end if if (run_part_opt%do_coagulation) then From 07a1e549fe17c5164fdb2b8c50c5d2a38de9e0a9 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:46:26 -0600 Subject: [PATCH 058/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 8cbc07334..e08a801a3 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -744,7 +744,6 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & endif endif - call spec_file_read_integer(file, 'rand_init', rand_init) call spec_file_read_logical(file, 'allow_doubling', & run_part_opt%allow_doubling) From 9eb5d13400db1dd2145cf01cefb72328ab1836e0 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:47:18 -0600 Subject: [PATCH 059/127] Update test/freezing/pressure.dat Co-authored-by: Jeffrey Curtis --- test/freezing/pressure.dat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/freezing/pressure.dat b/test/freezing/pressure.dat index 570ccfb30..20df8e87a 100644 --- a/test/freezing/pressure.dat +++ b/test/freezing/pressure.dat @@ -1,4 +1,4 @@ # time (s) # pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 +time 0 +pressure 50000.000 From f2b57c1913c19eba5bf2821f28a440e96db5f28c Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:47:54 -0600 Subject: [PATCH 060/127] Update src/run_part.F90 Co-authored-by: Jeffrey Curtis --- src/run_part.F90 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index e08a801a3..58513770d 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -78,10 +78,6 @@ module pmc_run_part integer :: immersion_freezing_scheme_type real(kind=dp) :: freezing_rate - !real(kind=dp) :: abifm_m, abifm_c - !logical :: do_coating - !character(len=300) :: coating_spec - !real(kind=dp) :: coating_ratio logical :: do_ice_shape = .False. logical :: do_ice_density = .False. From ed07c2d90583ec9d74941dc807fd04c7c4188c53 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:48:12 -0600 Subject: [PATCH 061/127] Update test/freezing/aero_init_dist.dat Co-authored-by: Jeffrey Curtis --- test/freezing/aero_init_dist.dat | 1 - 1 file changed, 1 deletion(-) diff --git a/test/freezing/aero_init_dist.dat b/test/freezing/aero_init_dist.dat index 03ecb9a2a..8b4c874dd 100644 --- a/test/freezing/aero_init_dist.dat +++ b/test/freezing/aero_init_dist.dat @@ -5,4 +5,3 @@ diam_type geometric # type of diameter specified mode_type mono # type of distribution num_conc 1e8 # particle number concentration (#/m^3) diam 2.154434690031885e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter From 8001a06af98fdf74b5d1ceb4497848a1aa0fc1ad Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:48:43 -0600 Subject: [PATCH 062/127] Update test/freezing/temp.dat Co-authored-by: Jeffrey Curtis --- test/freezing/temp.dat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/freezing/temp.dat b/test/freezing/temp.dat index c7af6c62c..87c2ea5d0 100644 --- a/test/freezing/temp.dat +++ b/test/freezing/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 +time 0.000 +temp 253.150 From 9c873028f523e1c1427b836693f030cb636a8b24 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:49:36 -0600 Subject: [PATCH 063/127] Update test/freezing/test_freezing_theoretical.F90 Co-authored-by: Jeffrey Curtis --- test/freezing/test_freezing_theoretical.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index b968fdea5..7ad790ad0 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -2,7 +2,6 @@ program theoretical_freezing use pmc_env_state implicit none - !integer, parameter :: dp = kind(0.d0) integer, parameter :: out_unit = 65 real(kind=dp), parameter :: temperature = 253.15 real(kind=dp), parameter :: total_time = 600 From 5aae4ae616c63ef9872d04e663e3654a3f270650 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:50:07 -0600 Subject: [PATCH 064/127] Update test/freezing/test_freezing_extract.F90 Co-authored-by: Jeffrey Curtis --- test/freezing/test_freezing_extract.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/freezing/test_freezing_extract.F90 b/test/freezing/test_freezing_extract.F90 index 28a59f091..781937ed5 100644 --- a/test/freezing/test_freezing_extract.F90 +++ b/test/freezing/test_freezing_extract.F90 @@ -15,7 +15,7 @@ program extract_freezing integer :: xtype, ndims, nAtts character(len=1000) :: tmp_str real(kind=dp), allocatable :: aero_num_conc(:) - integer(kind=dp), allocatable :: aero_frozen(:) + integer, allocatable :: aero_frozen(:) real(kind=dp) :: time real(kind=dp) :: frozen_fraction, frozen_fraction_total real(kind=dp) :: frozen_fraction_mean From dee21f7657aa7db97b21787bc8724861952ac0b7 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:51:24 -0600 Subject: [PATCH 065/127] Update scenarios/7_freezing/standard_setting/exp5/temp.dat Co-authored-by: Jeffrey Curtis --- scenarios/7_freezing/standard_setting/exp5/temp.dat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scenarios/7_freezing/standard_setting/exp5/temp.dat b/scenarios/7_freezing/standard_setting/exp5/temp.dat index 0617e7e69..6f00ced8b 100644 --- a/scenarios/7_freezing/standard_setting/exp5/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp5/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 +time 0.000 600.000 +temp 263.150 243.150 From fd421313a5d6c1f0ec2188c4d817d99637848686 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:53:08 -0600 Subject: [PATCH 066/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 1c5b5aea3..3f3a4274c 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -651,7 +651,6 @@ subroutine env_state_saturated_vapor_pressure_water(env_state, pvs) type(env_state_t), intent(in) :: env_state !> saturated vapor pressure with respective to water (Pa) real(kind=dp), intent(out) :: pvs - !> temperature (k) real(kind=dp) :: T, tmp T = env_state%temp From 7bd4ade43d6a2e42a306d1d95f2936bfe5ddc609 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:53:55 -0600 Subject: [PATCH 067/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 3f3a4274c..880cdb51a 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -676,7 +676,6 @@ subroutine env_state_saturated_vapor_pressure_ice(env_state, pis) type(env_state_t), intent(in) :: env_state !> saturated vapor pressure with respective to ice (Pa) real(kind=dp), intent(out) :: pis - !> temperature (k) real(kind=dp) :: T, tmp T = env_state%temp From 55ce6d05b2a6cb80d898295ef3472ffb1339d8ab Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:55:04 -0600 Subject: [PATCH 068/127] Update src/rand.F90 Co-authored-by: Jeffrey Curtis --- src/rand.F90 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rand.F90 b/src/rand.F90 index 6f1502ca7..40de563c4 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -695,7 +695,9 @@ subroutine uuid4_str(uuid) end subroutine uuid4_str - FUNCTION pmc_random_geometric(P) +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + integer function pmc_random_geometric(P) ! Generate a random number in geometric distribution with the probability P ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f implicit none From a62fdc230f506dc13a6851e438f24a9689f2b93a Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:56:22 -0600 Subject: [PATCH 069/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 2df621501..c2dccd6f3 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -23,10 +23,8 @@ module pmc_ice_nucleation !> Used to record the runtime of the ice nucleation module. integer :: freeze_module_run_time = 0 - !> True: using the binned-tau leaping algorithm for time-dependent scheme. - logical :: do_speedup = .True. - !> False: using the naive algorithm for time-dependent scheme. - !logical :: do_speedup = .False. + !> Whether to use the binned-tau leaping algorithm for time-dependent scheme. + logical :: do_speedup = .true. interface ABIFM module procedure ABIFM_particle From bcba8a4cacc613eb8da97f0f0ec275f8cf73d71b Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:57:19 -0600 Subject: [PATCH 070/127] Update src/rand.F90 Co-authored-by: Jeffrey Curtis --- src/rand.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/rand.F90 b/src/rand.F90 index 40de563c4..787a7ee35 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -702,7 +702,6 @@ integer function pmc_random_geometric(P) ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f implicit none real(kind=dp) :: P, U, TINY - INTEGER :: pmc_random_geometric TINY = 1.0D-12 pmc_random_geometric = 0 From 6d3dd9897643959b8658d567387e8e9d6ae66654 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:58:14 -0600 Subject: [PATCH 071/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index c2dccd6f3..fffc6be23 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -102,6 +102,7 @@ subroutine singular_initialize(aero_state, aero_data) type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data + integer :: i_part real(kind=dp) :: a_INAS, b_INAS, p, S, T0, temp real(kind=dp) :: aerosol_diameter From 62c297b06db6a9ba7ff7cd8c415f3d7168cf2d6a Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:58:56 -0600 Subject: [PATCH 072/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index fffc6be23..ce84a533a 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -117,7 +117,6 @@ subroutine singular_initialize(aero_state, aero_data) temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & - b_INAS) / a_INAS - !print*, aerosol_diameter, aero_state%apa%particle(i_part)%imf_temperature end do end subroutine singular_initialize From 34debee08348e1077b3dc23b307dde1aacb379b2 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 12:01:05 -0600 Subject: [PATCH 073/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index ce84a533a..573621e6a 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -133,6 +133,7 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, !> Environment state at the end of the timestep. The rel_humid !> value will be ignored and overwritten with a new value. type(env_state_t), intent(inout) :: env_state_final + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) integer :: i_part, i_bin, i_class, n_bins, n_class From 7403d2edfda34873eb6fcbca21a2c5fd26d5ff67 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 12:02:40 -0600 Subject: [PATCH 074/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 573621e6a..f0ce1c493 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -303,7 +303,7 @@ end subroutine immersion_freezing_time_dependent subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & env_state_initial, env_state_final, del_t, & immersion_freezing_scheme_type, & - freezing_rate)!, do_coating, coating_spec, coating_ratio) + freezing_rate) !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state From 3eaa069d7cc24de5f9f6a2140386dc4a34d189c7 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Tue, 3 Dec 2024 12:03:56 -0600 Subject: [PATCH 075/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index f0ce1c493..43dc4bace 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -400,6 +400,7 @@ subroutine melting(aero_state, aero_data, env_state_initial, & !> Environment state at the end of the timestep. The rel_humid !> value will be ignored and overwritten with a new value. type(env_state_t), intent(inout) :: env_state_final + integer :: i_part if (env_state_final%temp > const%water_freeze_temp) then From f6fd9490b726acdb80dc99fadd70de5830157b2e Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 11 Dec 2024 08:56:48 -0600 Subject: [PATCH 076/127] Modifications made based on Jeffrey Curtis's comments --- .../standard_setting/exp1/aero_init_comp3.dat | 5 ----- .../standard_setting/exp2/aero_init_comp3.dat | 5 ----- .../standard_setting/exp3/aero_init_comp3.dat | 5 ----- .../standard_setting/exp4/aero_init_comp3.dat | 5 ----- .../standard_setting/exp5/aero_init_comp3.dat | 5 ----- .../standard_setting/exp6/aero_init_comp3.dat | 5 ----- .../standard_setting/exp7/aero_init_comp3.dat | 5 ----- .../standard_setting/exp8/aero_init_comp3.dat | 5 ----- src/run_part.F90 | 21 ++----------------- 9 files changed, 2 insertions(+), 59 deletions(-) delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat deleted file mode 100644 index 1aa4a6276..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp3.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.00 -OIN 0.5 -ILT 0.5 -#Fe2O3 0.08 diff --git a/src/run_part.F90 b/src/run_part.F90 index 58513770d..931ebcba9 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -72,17 +72,10 @@ module pmc_run_part logical :: do_nucleation !> Whether to do freezing. logical :: do_immersion_freezing - !> Whether to do freezing using Classical Nucleation Theory - !logical :: do_freezing_CNT - !character(len=300) :: immersion_freezing_scheme + !> The immersion freezing scheme options. integer :: immersion_freezing_scheme_type - + !> The freezing rate parameter for "const" scheme. real(kind=dp) :: freezing_rate - - logical :: do_ice_shape = .False. - logical :: do_ice_density = .False. - logical :: do_ice_ventilation = .False. - !> Allow doubling if needed. logical :: allow_doubling !> Allow halving if needed. @@ -707,19 +700,9 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & if (run_part_opt%do_immersion_freezing) then - !call spec_file_read_string(file, 'immersion_freezing_scheme', & - ! run_part_opt%immersion_freezing_scheme) call spec_file_read_immersion_freezing_scheme_type(file, & run_part_opt%immersion_freezing_scheme_type) - !if (run_part_opt%do_freezing_CNT) then - - ! call spec_file_read_real(file, 'abifm_m', & - ! run_part_opt%abifm_m) - ! call spec_file_read_real(file, 'abifm_c', & - ! run_part_opt%abifm_c) - !else - if (run_part_opt%immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_CONST) then call spec_file_read_real(file, 'freezing_rate', & From 45fc9886ff3b70d613316f651423fdd4fe6b26af Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 11 Dec 2024 09:23:28 -0600 Subject: [PATCH 077/127] remove P_frozen variable --- scenarios/7_freezing/0_README.md | 2 +- scenarios/7_freezing/1_run.sh | 7 ------- src/aero_particle.F90 | 17 ----------------- src/aero_state.F90 | 9 --------- src/ice_nucleation.F90 | 3 --- 5 files changed, 1 insertion(+), 37 deletions(-) diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md index 6c001d3eb..ed6f10e8d 100644 --- a/scenarios/7_freezing/0_README.md +++ b/scenarios/7_freezing/0_README.md @@ -6,7 +6,7 @@ Tang, W. (2024). Particle-resolved simulations of immersion freezing with multi- This is a scenario demonstrating how to use PartMC to simulate the immersion freezing process of multiple species INPs. -There are a total of 4*2=8 simulation groups, consisting of four types of INP populations and two temperature curve scenarios. The four types of INPs are 100% illite, 100% Fe2O3, a 50% illite and 50% Fe2O3 external mixture, and an internal mixture. The two temperature curves are a constant -20 degrees Celsius and a steady cooling from -10 to -30 degrees Celsius. The simulation time for each is 10 minutes. +There are a total of 4*2=8 simulation groups, consisting of four types of INP populations and two temperature curve scenarios. The four types of INPs are 100% illite, 100% Fe2O3, a 50% illite and 50% Fe2O3 external mixture, and an internal mixture. The two temperature curves are a constant -20 degrees Celsius and a steady cooling from -10 to -30 degrees Celsius. The simulation time for each is 10 minutes. All immersion freezing simulations are using the ABIFM scheme. exp1: 100% illite, constant temperature exp2: 100% Fe2O3, constant temperature diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh index 9e21eb30d..03f6b7767 100755 --- a/scenarios/7_freezing/1_run.sh +++ b/scenarios/7_freezing/1_run.sh @@ -13,12 +13,6 @@ fi cp -rp $setDir $outDir/ - -#if [ -e "output" ]; then -# unlink output -#fi -#ln -sf $outDir output - for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 do caseName=${expName} @@ -32,6 +26,5 @@ do sleep 1 ../../build/partmc run_part.spec - #mv freezing_timing.txt output/$caseName done diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 2d6e216e9..e58892374 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -60,8 +60,6 @@ module pmc_aero_particle logical :: frozen !> Immersion freezing temperature (K). real(kind=dp) :: imf_temperature - !> Ice-phase probability (1). - real(kind=dp) :: P_frozen !> Ice density (kg m^{-3}). real(kind=dp) :: den_ice !> Ice shape. @@ -108,7 +106,6 @@ subroutine aero_particle_shift(aero_particle_from, aero_particle_to) aero_particle_from%greatest_create_time aero_particle_to%frozen = aero_particle_from%frozen aero_particle_to%imf_temperature = aero_particle_from%imf_temperature - aero_particle_to%P_frozen = aero_particle_from%P_frozen aero_particle_to%den_ice = aero_particle_from%den_ice aero_particle_to%ice_shape_phi = aero_particle_from%ice_shape_phi aero_particle_to%n_primary_parts = aero_particle_from%n_primary_parts @@ -148,7 +145,6 @@ subroutine aero_particle_zero(aero_particle, aero_data) aero_particle%greatest_create_time = 0d0 aero_particle%frozen = .FALSE. aero_particle%imf_temperature = 0d0 - aero_particle%P_frozen = 0d0 aero_particle%den_ice = -9999d0 aero_particle%ice_shape_phi = -9999d0 aero_particle%n_primary_parts = 0 @@ -1005,8 +1001,6 @@ subroutine aero_particle_coagulate(aero_particle_1, & !!! Not true, need further discussion aero_particle_new%imf_temperature = max(aero_particle_1%imf_temperature, & aero_particle_2%imf_temperature) - aero_particle_new%P_frozen = 1 - (1 - aero_particle_1%P_frozen) & - * (1 - aero_particle_2%P_frozen) if (aero_particle_new%frozen) then ice_vol_1 = aero_particle_1%vol(aero_data%i_water) @@ -1076,13 +1070,10 @@ integer function pmc_mpi_pack_size_aero_particle(val) + pmc_mpi_pack_size_integer(aero_particle_n_components(val)) & + pmc_mpi_pack_size_real(val%least_create_time) & + pmc_mpi_pack_size_real(val%greatest_create_time) & -!<<<<<<< HEAD + pmc_mpi_pack_size_logical(val%frozen) & + pmc_mpi_pack_size_real(val%imf_temperature) & - + pmc_mpi_pack_size_real(val%P_frozen) & + pmc_mpi_pack_size_real(val%den_ice) & + pmc_mpi_pack_size_real(val%ice_shape_phi) & -!======= + pmc_mpi_pack_size_integer(val%n_primary_parts) do i = 1,aero_particle_n_components(val) @@ -1127,15 +1118,11 @@ subroutine pmc_mpi_pack_aero_particle(buffer, position, val) end do call pmc_mpi_pack_real(buffer, position, val%least_create_time) call pmc_mpi_pack_real(buffer, position, val%greatest_create_time) -!<<<<<<< HEAD call pmc_mpi_pack_logical(buffer, position, val%frozen) call pmc_mpi_pack_real(buffer, position, val%imf_temperature) - call pmc_mpi_pack_real(buffer, position, val%P_frozen) call pmc_mpi_pack_real(buffer, position, val%den_ice) call pmc_mpi_pack_real(buffer, position, val%ice_shape_phi) -!======= call pmc_mpi_pack_integer(buffer, position, val%n_primary_parts) -!>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 call assert(810223998, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif @@ -1178,15 +1165,11 @@ subroutine pmc_mpi_unpack_aero_particle(buffer, position, val) end do call pmc_mpi_unpack_real(buffer, position, val%least_create_time) call pmc_mpi_unpack_real(buffer, position, val%greatest_create_time) -!<<<<<<< HEAD call pmc_mpi_unpack_logical(buffer, position, val%frozen) call pmc_mpi_unpack_real(buffer, position, val%imf_temperature) - call pmc_mpi_unpack_real(buffer, position, val%P_frozen) call pmc_mpi_unpack_real(buffer, position, val%den_ice) call pmc_mpi_unpack_real(buffer, position, val%ice_shape_phi) -!======= call pmc_mpi_unpack_integer(buffer, position, val%n_primary_parts) -!>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 call assert(287447241, position - prev_position & <= pmc_mpi_pack_size_aero_particle(val)) #endif diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 4206c3a95..5b9b1edd8 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2645,7 +2645,6 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & integer(kind=8) :: aero_id(aero_state_n_part(aero_state)) integer :: aero_frozen(aero_state_n_part(aero_state)) real(kind=dp) :: aero_imf_temperature(aero_state_n_part(aero_state)) - real(kind=dp) :: aero_frozen_probability(aero_state_n_part(aero_state)) real(kind=dp) :: aero_ice_density(aero_state_n_part(aero_state)) real(kind=dp) :: aero_ice_shape_phi(aero_state_n_part(aero_state)) real(kind=dp) :: aero_least_create_time(aero_state_n_part(aero_state)) @@ -2814,7 +2813,6 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & end if aero_imf_temperature(i_part) & = aero_state%apa%particle(i_part)%imf_temperature - aero_frozen_probability(i_part) = aero_state%apa%particle(i_part)%P_frozen aero_ice_density(i_part) = aero_state%apa%particle(i_part)%den_ice aero_ice_shape_phi(i_part) & = aero_state%apa%particle(i_part)%ice_shape_phi @@ -2885,9 +2883,6 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & call pmc_nc_write_real_1d(ncid, aero_imf_temperature, & "aero_imf_temperature", (/ dimid_aero_particle /), & long_name="immersion freezing temperature (Singular)") - call pmc_nc_write_real_1d(ncid, aero_frozen_probability, & - "aero_frozen_probability", (/ dimid_aero_particle /), & - long_name="probability of freezing describing the group of real aerosols represented by each computational particle") call pmc_nc_write_real_1d(ncid, aero_ice_density, & "aero_ice_density", (/ dimid_aero_particle /), & long_name="Ice density if the particle nucleates to ice, -9999 indicates the particle is not an ice.") @@ -3090,7 +3085,6 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) real(kind=dp), allocatable :: aero_num_conc(:) integer, allocatable :: aero_frozen(:) real(kind=dp), allocatable :: aero_imf_temperature(:) - real(kind=dp), allocatable :: aero_frozen_probability(:) real(kind=dp), allocatable :: aero_ice_density(:) real(kind=dp), allocatable :: aero_ice_shape_phi(:) integer(kind=8), allocatable :: aero_id(:) @@ -3163,8 +3157,6 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) "aero_frozen") call pmc_nc_read_real_1d(ncid, aero_imf_temperature, & "aero_imf_temperature") - call pmc_nc_read_real_1d(ncid, aero_frozen_probability, & - "aero_frozen_probability", must_be_present=.false.) call pmc_nc_read_real_1d(ncid, aero_ice_density, & "aero_ice_density", must_be_present=.false.) call pmc_nc_read_real_1d(ncid, aero_ice_shape_phi, & @@ -3226,7 +3218,6 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) aero_particle%frozen = .False. end if aero_particle%imf_temperature = aero_imf_temperature(i_part) - aero_particle%P_frozen = aero_frozen_probability(i_part) aero_particle%den_ice = aero_ice_density(i_part) aero_particle%ice_shape_phi = aero_ice_shape_phi(i_part) aero_particle%least_create_time = aero_least_create_time(i_part) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 43dc4bace..19550737b 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -364,9 +364,6 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze = 1 - exp(freezing_rate * del_t) end if - p_frozen = aero_state%apa%particle(i_part)%P_frozen - aero_state%apa%particle(i_part)%P_frozen = 1 - (1 - p_frozen) & - * (1 - p_freeze) if (rand < p_freeze) then aero_state%apa%particle(i_part)%frozen = .TRUE. From fcedcc63fe12896caab3319a58f89c42e58b38bc Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 12 Dec 2024 13:53:56 -0600 Subject: [PATCH 078/127] Modifications made based on Jeffrey Curtis's comments (2) --- CMakeLists.txt | 6 +- scenarios/7_freezing/1_run.sh | 5 +- scenarios/7_freezing/2_process.sh | 8 +- scenarios/7_freezing/3_draw.py | 44 +- scenarios/7_freezing/freezing_process.F90 | 262 ++-- .../standard_setting/exp1/aero_back.dat | 6 - .../standard_setting/exp1/aero_back_dist.dat | 1 - .../standard_setting/exp1/aero_data.dat | 30 - .../standard_setting/exp1/aero_emit.dat | 6 - .../standard_setting/exp1/aero_emit_dist.dat | 1 - .../standard_setting/exp1/gas_back.dat | 7 - .../standard_setting/exp1/gas_data.dat | 7 - .../standard_setting/exp1/gas_emit.dat | 7 - .../standard_setting/exp1/gas_init.dat | 3 - .../standard_setting/exp1/height.dat | 4 - .../standard_setting/exp1/pressure.dat | 4 - .../7_freezing/standard_setting/exp1/temp.dat | 4 +- .../standard_setting/exp2/aero_back.dat | 6 - .../standard_setting/exp2/aero_back_dist.dat | 1 - .../standard_setting/exp2/aero_data.dat | 30 - .../standard_setting/exp2/aero_emit.dat | 6 - .../standard_setting/exp2/aero_emit_dist.dat | 1 - .../standard_setting/exp2/gas_back.dat | 7 - .../standard_setting/exp2/gas_data.dat | 7 - .../standard_setting/exp2/gas_emit.dat | 7 - .../standard_setting/exp2/gas_init.dat | 3 - .../standard_setting/exp2/height.dat | 4 - .../standard_setting/exp2/pressure.dat | 4 - .../7_freezing/standard_setting/exp2/temp.dat | 4 +- .../standard_setting/exp3/aero_back.dat | 6 - .../standard_setting/exp3/aero_back_dist.dat | 1 - .../standard_setting/exp3/aero_data.dat | 30 - .../standard_setting/exp3/aero_emit.dat | 6 - .../standard_setting/exp3/aero_emit_dist.dat | 1 - .../standard_setting/exp3/gas_back.dat | 7 - .../standard_setting/exp3/gas_data.dat | 7 - .../standard_setting/exp3/gas_emit.dat | 7 - .../standard_setting/exp3/gas_init.dat | 3 - .../standard_setting/exp3/height.dat | 4 - .../standard_setting/exp3/pressure.dat | 4 - .../7_freezing/standard_setting/exp3/temp.dat | 4 +- .../standard_setting/exp4/aero_back.dat | 6 - .../standard_setting/exp4/aero_back_dist.dat | 1 - .../standard_setting/exp4/aero_data.dat | 30 - .../standard_setting/exp4/aero_emit.dat | 6 - .../standard_setting/exp4/aero_emit_dist.dat | 1 - .../standard_setting/exp4/gas_back.dat | 7 - .../standard_setting/exp4/gas_data.dat | 7 - .../standard_setting/exp4/gas_emit.dat | 7 - .../standard_setting/exp4/gas_init.dat | 3 - .../standard_setting/exp4/height.dat | 4 - .../standard_setting/exp4/pressure.dat | 4 - .../7_freezing/standard_setting/exp4/temp.dat | 4 +- .../standard_setting/exp5/aero_back.dat | 6 - .../standard_setting/exp5/aero_back_dist.dat | 1 - .../standard_setting/exp5/aero_data.dat | 30 - .../standard_setting/exp5/aero_emit.dat | 6 - .../standard_setting/exp5/aero_emit_dist.dat | 1 - .../standard_setting/exp5/gas_back.dat | 7 - .../standard_setting/exp5/gas_data.dat | 7 - .../standard_setting/exp5/gas_emit.dat | 7 - .../standard_setting/exp5/gas_init.dat | 3 - .../standard_setting/exp5/height.dat | 4 - .../standard_setting/exp5/pressure.dat | 4 - .../7_freezing/standard_setting/exp5/temp.dat | 2 +- .../standard_setting/exp6/aero_back.dat | 6 - .../standard_setting/exp6/aero_back_dist.dat | 1 - .../standard_setting/exp6/aero_data.dat | 30 - .../standard_setting/exp6/aero_emit.dat | 6 - .../standard_setting/exp6/aero_emit_dist.dat | 1 - .../standard_setting/exp6/gas_back.dat | 7 - .../standard_setting/exp6/gas_data.dat | 7 - .../standard_setting/exp6/gas_emit.dat | 7 - .../standard_setting/exp6/gas_init.dat | 3 - .../standard_setting/exp6/height.dat | 4 - .../standard_setting/exp6/pressure.dat | 4 - .../7_freezing/standard_setting/exp6/temp.dat | 4 +- .../standard_setting/exp7/aero_back.dat | 6 - .../standard_setting/exp7/aero_back_dist.dat | 1 - .../standard_setting/exp7/aero_data.dat | 30 - .../standard_setting/exp7/aero_emit.dat | 6 - .../standard_setting/exp7/aero_emit_dist.dat | 1 - .../standard_setting/exp7/gas_back.dat | 7 - .../standard_setting/exp7/gas_data.dat | 7 - .../standard_setting/exp7/gas_emit.dat | 7 - .../standard_setting/exp7/gas_init.dat | 3 - .../standard_setting/exp7/height.dat | 4 - .../standard_setting/exp7/pressure.dat | 4 - .../7_freezing/standard_setting/exp7/temp.dat | 4 +- .../standard_setting/exp8/aero_back.dat | 6 - .../standard_setting/exp8/aero_back_dist.dat | 1 - .../standard_setting/exp8/aero_data.dat | 30 - .../standard_setting/exp8/aero_emit.dat | 6 - .../standard_setting/exp8/aero_emit_dist.dat | 1 - .../standard_setting/exp8/gas_back.dat | 7 - .../standard_setting/exp8/gas_data.dat | 7 - .../standard_setting/exp8/gas_emit.dat | 7 - .../standard_setting/exp8/gas_init.dat | 3 - .../standard_setting/exp8/height.dat | 4 - .../standard_setting/exp8/pressure.dat | 4 - .../7_freezing/standard_setting/exp8/temp.dat | 4 +- src/aero_state.F90 | 33 + src/env_state.F90 | 117 +- src/ice_nucleation.F90 | 1083 ++++++++--------- src/rand.F90 | 18 +- test/freezing/test_freezing_1.sh | 14 +- test/freezing/test_freezing_extract.F90 | 237 ++-- test/freezing/test_freezing_theoretical.F90 | 31 +- 108 files changed, 987 insertions(+), 1509 deletions(-) delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/pressure.dat diff --git a/CMakeLists.txt b/CMakeLists.txt index 99907062c..30e13b04f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -293,9 +293,9 @@ target_link_libraries(test_bidisperse_extract ${NETCDF_LIBS}) # test_freezing_extract add_executable(test_freezing_extract - test/freezing/test_freezing_extract.F90) + test/freezing/test_freezing_extract.F90 src/getopt.F90) -target_link_libraries(test_freezing_extract ${NETCDF_LIBS}) +target_link_libraries(test_freezing_extract ${NETCDF_LIBS} partmclib) ###################################################################### # test_freezing_theoretical @@ -428,7 +428,7 @@ target_link_libraries(urban_plume_process partmclib) # scenarios/7_freezing/freezing_process add_executable(freezing_process - scenarios/7_freezing/freezing_process.F90) + scenarios/7_freezing/freezing_process.F90 src/getopt.F90) target_link_libraries(freezing_process partmclib) ###################################################################### diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh index 03f6b7767..7297521fd 100755 --- a/scenarios/7_freezing/1_run.sh +++ b/scenarios/7_freezing/1_run.sh @@ -13,12 +13,15 @@ fi cp -rp $setDir $outDir/ +# Copy the constant settings among experiments +cp -p $setDir/*.dat . +cp -p $setDir/run_part.spec . for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 do caseName=${expName} echo "Running $caseName ..." +# Copy the special settings for that experiment cp -p $setDir/$expName/*.dat . - cp -p $setDir/run_part.spec . sed -i "/output_prefix /coutput_prefix ${outDir}/${caseName}/freezing_part # prefix of output files" run_part.spec mkdir -p $outDir/$caseName cp -p run_part.spec $outDir/$caseName diff --git a/scenarios/7_freezing/2_process.sh b/scenarios/7_freezing/2_process.sh index b58a8f9e6..1c6f48a3c 100755 --- a/scenarios/7_freezing/2_process.sh +++ b/scenarios/7_freezing/2_process.sh @@ -1,9 +1,13 @@ #!/bin/bash +N_ensemble=10 for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 do echo "Processing $expName ..." - ../../build/freezing_process $expName - + + for i_ensemble in $(seq 1 $N_ensemble); do + prefix=$(printf "freezing_part_%04d " $i_ensemble) + ../../build/freezing_process out/$expName/$prefix + done done diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py index 638ded297..4dedd1d59 100755 --- a/scenarios/7_freezing/3_draw.py +++ b/scenarios/7_freezing/3_draw.py @@ -1,9 +1,11 @@ #!/usr/bin/env python import numpy as np +import glob import matplotlib.pyplot as plt import matplotlib.colors as mcolors import matplotlib.ticker as ticker +from pdb import set_trace cmap = plt.cm.Blues colors = cmap(np.linspace(0.4, 1, 10)) @@ -14,7 +16,7 @@ xlabel_fontsize = 15 ylabel_fontsize = 15 -def read_expFile(caseName): +def bck_read_expFile(caseName): fileName = "out/freezing_part_data_" + caseName + ".txt" timeList = [] tempList = [] @@ -36,6 +38,35 @@ def read_expFile(caseName): ice_ratio_min = np.array(ice_ratio_min) return timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min +def read_expFile(caseName): + fileNameList = glob.glob("out/" + caseName + "/freezing_part_*_aero_time.txt") + timeList = [] + tempList = [] + ice_ratio_mean = [] + ice_ratio_max = [] + ice_ratio_min = [] + ice_ratio = [] + + for i_file, fileName in enumerate(fileNameList): + ice_ratio_i_file = [] + with open(fileName, "r") as fr: + for iline in fr: + time, temp, ff = iline.strip().split() + if i_file == 0: + timeList.append(float(time)) + tempList.append(float(temp)) + ice_ratio_i_file.append(float(ff)) + ice_ratio.append(ice_ratio_i_file) + + timeList = np.array(timeList) + tempList = np.array(tempList) + ice_ratio = np.array(ice_ratio) + + ice_ratio_mean = ice_ratio.mean(axis = 0) + ice_ratio_max = ice_ratio.max(axis = 0) + ice_ratio_min = ice_ratio.min(axis = 0) + return timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min + @@ -49,6 +80,17 @@ def draw(fig, ax, casesName, ax_label): for caseName in casesName: timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min = read_expFile(caseName) + #timeList_, tempList_, ice_ratio_mean_, ice_ratio_max_, ice_ratio_min_ = bck_read_expFile(caseName) + + #assert np.max(np.abs(ice_ratio_mean - ice_ratio_mean_)) < 1e-10 + #assert np.max(np.abs(ice_ratio_max - ice_ratio_max_)) < 1e-10 + #assert np.max(np.abs(ice_ratio_min - ice_ratio_min_)) < 1e-10 + #assert np.max(np.abs(timeList - timeList_)) < 1e-15 + #try: + # assert np.max(np.abs(tempList - tempList_)) < 1e-5 + #except: + # set_trace() + CaseDict = {"timeList": timeList, "tempList": tempList, "ice_ratio_mean": ice_ratio_mean, "ice_ratio_max": ice_ratio_max, "ice_ratio_min": ice_ratio_min} casesDict[caseName] = CaseDict diff --git a/scenarios/7_freezing/freezing_process.F90 b/scenarios/7_freezing/freezing_process.F90 index 08ac8957d..636b11855 100644 --- a/scenarios/7_freezing/freezing_process.F90 +++ b/scenarios/7_freezing/freezing_process.F90 @@ -1,138 +1,136 @@ -! --- - -program extract_freezing - use netcdf - implicit none - integer, parameter :: dp = kind(0.d0) - integer, parameter :: out_unit = 65 - character(len=*), parameter :: in_dir = "out" - character(len=*), parameter :: in_prefix = "freezing_part_" - character(len=*), parameter :: out_prefix = "out/freezing_part_data_" - character(len=1000) :: in_filename - character(len=1000) :: out_filename - integer :: ncid - integer :: varid_time, varid_temperature, dimid_aero_particle - integer :: varid_aero_num_conc, varid_aero_frozen - integer :: n_aero_particle - integer :: xtype, ndims, nAtts - character(len=1000) :: tmp_str - real(kind=dp), allocatable :: aero_num_conc(:) - integer(kind=dp), allocatable :: aero_frozen(:) - real(kind=dp) :: time, temperature - real(kind=dp) :: frozen_fraction - real(kind=dp) :: frozen_fraction_total, frozen_fraction_mean - real(kind=dp) :: frozen_fraction_max, frozen_fraction_min - integer, dimension(nf90_max_var_dims) :: dimids - integer :: i_time, i_ens, status, ios - character(len=1000) :: caseName - - call get_command_argument(1, caseName) - write(out_filename, '(a,a,a)') trim(out_prefix), trim(caseName), ".txt" - ! open output - open(unit=out_unit, file=out_filename, iostat=ios) - if (ios /= 0) then - write(0,'(a,a,a,i4)') 'ERROR: unable to open file ', & - trim(out_filename), ' for writing: ', ios - stop 1 - end if - - i_time = 0 - do while(.true.) - i_time = i_time + 1 - !do i_ens = 1, 10 - i_ens = 0 - frozen_fraction_total = 0d0 - frozen_fraction_max = -9999d0 - frozen_fraction_min = 9999d0 - do while(.true.) - i_ens = i_ens + 1 - write(in_filename,'(a,a,a,a,a,i4.4, a, i8.8,a)') & - trim(in_dir), "/", trim(caseName), "/", trim(in_prefix), i_ens, "_", i_time, ".nc" - !print*, in_filename - status = nf90_open(trim(in_filename), NF90_NOWRITE, ncid) - if (status /= NF90_NOERR) then - exit - end if - !print*, trim(in_filename) - - call nc_check(nf90_inq_varid(ncid, "time", varid_time)) - !call nc_check(nf90_inq_varid(ncid, "time", varid_time)) - call nc_check(nf90_get_var(ncid, varid_time, time)) - call nc_check(nf90_inq_varid(ncid, "temperature", varid_temperature)) - !call nc_check(nf90_inq_varid(ncid, "temperature", varid_temperature)) - call nc_check(nf90_get_var(ncid, varid_temperature, temperature)) - - call nc_check(nf90_inq_dimid(ncid, "aero_particle", & - dimid_aero_particle)) - call nc_check(nf90_Inquire_Dimension(ncid, dimid_aero_particle, & - tmp_str, n_aero_particle)) - call nc_check(nf90_inq_varid(ncid, "aero_num_conc", & - varid_aero_num_conc)) - call nc_check(nf90_Inquire_Variable(ncid, varid_aero_num_conc, & - tmp_str, xtype, ndims, dimids, nAtts)) - if ((ndims /= 1) & - .or. (dimids(1) /= dimid_aero_particle)) then - write(*,*) "ERROR: unexpected aero_num_conc dimids" - stop 1 - end if - allocate(aero_num_conc(n_aero_particle)) - call nc_check(nf90_get_var(ncid, varid_aero_num_conc, & - aero_num_conc)) - - call nc_check(nf90_inq_varid(ncid, "aero_frozen", & - varid_aero_frozen)) - call nc_check(nf90_Inquire_Variable(ncid, varid_aero_frozen, & - tmp_str, xtype, ndims, dimids, nAtts)) - if ((ndims /= 1) & - .or. (dimids(1) /= dimid_aero_particle)) then - write(*,*) "ERROR: unexpected aero_frozen dimids" - stop 1 - end if - allocate(aero_frozen(n_aero_particle)) - call nc_check(nf90_get_var(ncid, varid_aero_frozen, & - aero_frozen)) - - call nc_check(nf90_close(ncid)) - frozen_fraction = sum(aero_frozen * aero_num_conc) / & - sum(aero_num_conc) - frozen_fraction_total = frozen_fraction_total + & - frozen_fraction - if (frozen_fraction .gt. frozen_fraction_max) then - frozen_fraction_max = frozen_fraction - end if - if (frozen_fraction .lt. frozen_fraction_min) then - frozen_fraction_min = frozen_fraction - end if - - !print*, time, frozen_fraction, frozen_fraction_max, & - ! frozen_fraction_min - deallocate(aero_num_conc) - deallocate(aero_frozen) - end do - if (i_ens .eq. 1) then - exit - end if - frozen_fraction_mean = frozen_fraction_total / (i_ens - 1) - write(out_unit,'(f12.6,f12.6,e20.10,e20.10,e20.10)') time, temperature,& - frozen_fraction_mean, frozen_fraction_max, frozen_fraction_min - - end do - - close(out_unit) +!! Copyright (C) 2009-2012 Matthew West +! Licensed under the GNU General Public License version 2 or (at your +! option) any later version. See the file COPYING for details. + +!> \file +!> The freezing_process program. + +!> Read NetCDF output files and write out the time evolution of +!> temperature and frozen fraction in text format. +program freezing_process + + use pmc_aero_state + use pmc_aero_particle + use pmc_output + use pmc_mpi + use getopt_m + + character(len=PMC_MAX_FILENAME_LEN) :: in_prefix, out_filename + character(len=PMC_MAX_FILENAME_LEN), allocatable :: filename_list(:) + character(len=1000) :: tmp_str + type(aero_data_t) :: aero_data + type(aero_state_t) :: aero_state + type(env_state_t) :: env_state + integer :: index, i_repeat, i_spec, out_unit + integer :: i_file, n_file + real(kind=dp) :: time, del_t + character(len=PMC_UUID_LEN) :: uuid, run_uuid + real(kind=dp), allocatable :: times(:), temperatures(:), frozen_fractions(:) + type(option_s) :: opts(2) + + call pmc_mpi_init() + + opts(1) = option_s("help", .false., 'h') + opts(2) = option_s("output", .true., 'o') + + out_filename = "" + + do + select case(getopt("ho:", opts)) + case(char(0)) + exit + case('h') + call print_help() + stop + case('o') + out_filename = optarg + case( '?' ) + call print_help() + call die_msg(514364550, 'unknown option: ' // trim(optopt)) + case default + call print_help() + call die_msg(603100341, 'unhandled option: ' // trim(optopt)) + end select + end do + + if (optind /= command_argument_count()) then + call print_help() + call die_msg(967032896, 'expected exactly one non-option prefix argument') + end if + + call get_command_argument(optind, in_prefix) + + if (out_filename == "") then + out_filename = trim(in_prefix) // "_aero_time.txt" + end if + + allocate(filename_list(0)) + call input_filename_list(in_prefix, filename_list) + n_file = size(filename_list) + call assert_msg(323514871, n_file > 0, & + "no NetCDF files found with prefix: " // trim(in_prefix)) + + call input_state(filename_list(1), index, time, del_t, i_repeat, uuid, & + aero_data=aero_data, aero_state=aero_state, env_state=env_state) + run_uuid = uuid + + allocate(times(n_file)) + allocate(temperatures(n_file)) + allocate(frozen_fractions(n_file)) + + do i_file = 1,n_file + call input_state(filename_list(i_file), index, time, del_t, i_repeat, & + uuid, aero_data=aero_data, aero_state=aero_state, env_state=env_state) + + call assert_msg(397906326, uuid == run_uuid, & + "UUID mismatch between " // trim(filename_list(1)) // " and " & + // trim(filename_list(i_file))) + + times(i_file) = time + temperatures(i_file) = env_state%temp + frozen_fractions(i_file) = aero_state_frozen_fraction(aero_state, aero_data) + + end do + + write(*,'(a,a)') "Output file: ", trim(out_filename) + write(*,'(a)') " Each row of output is one time." + write(*,'(a)') " The columns of output are:" + write(*,'(a)') " column 1: time (s)" + write(*,'(a)') " column 2: temperature (K)" + write(*,'(a)') " column 3: frozen fraction (unitless)" + + call open_file_write(out_filename, out_unit) + do i_file = 1,n_file + write(out_unit, '(e30.15e3)', advance='no') times(i_file) + write(out_unit, '(e30.15e3)', advance='no') temperatures(i_file) + write(out_unit, '(e30.15e3)', advance='no') frozen_fractions(i_file) + write(out_unit, '(a)') '' + end do + call close_file(out_unit) + + deallocate(times) + deallocate(temperatures) + deallocate(frozen_fractions) + deallocate(filename_list) + + call pmc_mpi_finalize() + contains - !> Check return status of NetCDF function calls. - subroutine nc_check(status) - !> Status return value. - integer, intent(in) :: status + subroutine print_help() + + write(*,'(a)') 'Usage: freezing_process [options] ' + write(*,'(a)') '' + write(*,'(a)') 'options are:' + write(*,'(a)') ' -h, --help Print this help message.' + write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') '' + write(*,'(a)') 'Examples:' + write(*,'(a)') ' freezing_process freezing_part_0001' + write(*,'(a)') '' - if (status /= NF90_NOERR) then - write(0,*) nf90_strerror(status) - stop 1 - end if + end subroutine print_help - end subroutine nc_check -end program extract_freezing +end program freezing_process - diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_back.dat b/scenarios/7_freezing/standard_setting/exp1/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_data.dat b/scenarios/7_freezing/standard_setting/exp1/aero_data.dat deleted file mode 100644 index fd36a3dff..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -#Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_back.dat b/scenarios/7_freezing/standard_setting/exp1/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_data.dat b/scenarios/7_freezing/standard_setting/exp1/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/gas_init.dat b/scenarios/7_freezing/standard_setting/exp1/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp1/height.dat b/scenarios/7_freezing/standard_setting/exp1/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp1/pressure.dat b/scenarios/7_freezing/standard_setting/exp1/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp1/temp.dat b/scenarios/7_freezing/standard_setting/exp1/temp.dat index c7af6c62c..f23f98d65 100644 --- a/scenarios/7_freezing/standard_setting/exp1/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp1/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 +time 0.000 600.000 +temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_back.dat b/scenarios/7_freezing/standard_setting/exp2/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_data.dat b/scenarios/7_freezing/standard_setting/exp2/aero_data.dat deleted file mode 100644 index aed4caf6a..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -#ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_back.dat b/scenarios/7_freezing/standard_setting/exp2/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_data.dat b/scenarios/7_freezing/standard_setting/exp2/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/gas_init.dat b/scenarios/7_freezing/standard_setting/exp2/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp2/height.dat b/scenarios/7_freezing/standard_setting/exp2/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp2/pressure.dat b/scenarios/7_freezing/standard_setting/exp2/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp2/temp.dat b/scenarios/7_freezing/standard_setting/exp2/temp.dat index c7af6c62c..f23f98d65 100644 --- a/scenarios/7_freezing/standard_setting/exp2/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp2/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 +time 0.000 600.000 +temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_back.dat b/scenarios/7_freezing/standard_setting/exp3/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_data.dat b/scenarios/7_freezing/standard_setting/exp3/aero_data.dat deleted file mode 100644 index 3735cb147..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_back.dat b/scenarios/7_freezing/standard_setting/exp3/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_data.dat b/scenarios/7_freezing/standard_setting/exp3/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/gas_init.dat b/scenarios/7_freezing/standard_setting/exp3/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp3/height.dat b/scenarios/7_freezing/standard_setting/exp3/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp3/pressure.dat b/scenarios/7_freezing/standard_setting/exp3/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp3/temp.dat b/scenarios/7_freezing/standard_setting/exp3/temp.dat index c7af6c62c..f23f98d65 100644 --- a/scenarios/7_freezing/standard_setting/exp3/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp3/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 +time 0.000 600.000 +temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_back.dat b/scenarios/7_freezing/standard_setting/exp4/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_data.dat b/scenarios/7_freezing/standard_setting/exp4/aero_data.dat deleted file mode 100644 index 3735cb147..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_back.dat b/scenarios/7_freezing/standard_setting/exp4/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_data.dat b/scenarios/7_freezing/standard_setting/exp4/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/gas_init.dat b/scenarios/7_freezing/standard_setting/exp4/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp4/height.dat b/scenarios/7_freezing/standard_setting/exp4/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp4/pressure.dat b/scenarios/7_freezing/standard_setting/exp4/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp4/temp.dat b/scenarios/7_freezing/standard_setting/exp4/temp.dat index c7af6c62c..f23f98d65 100644 --- a/scenarios/7_freezing/standard_setting/exp4/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp4/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 253.150 +time 0.000 600.000 +temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_back.dat b/scenarios/7_freezing/standard_setting/exp5/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_data.dat b/scenarios/7_freezing/standard_setting/exp5/aero_data.dat deleted file mode 100644 index fd36a3dff..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -#Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_back.dat b/scenarios/7_freezing/standard_setting/exp5/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_data.dat b/scenarios/7_freezing/standard_setting/exp5/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/gas_init.dat b/scenarios/7_freezing/standard_setting/exp5/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp5/height.dat b/scenarios/7_freezing/standard_setting/exp5/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp5/pressure.dat b/scenarios/7_freezing/standard_setting/exp5/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp5/temp.dat b/scenarios/7_freezing/standard_setting/exp5/temp.dat index 6f00ced8b..fcc259a39 100644 --- a/scenarios/7_freezing/standard_setting/exp5/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp5/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) time 0.000 600.000 -temp 263.150 243.150 +temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_back.dat b/scenarios/7_freezing/standard_setting/exp6/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_data.dat b/scenarios/7_freezing/standard_setting/exp6/aero_data.dat deleted file mode 100644 index aed4caf6a..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -#ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_back.dat b/scenarios/7_freezing/standard_setting/exp6/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_data.dat b/scenarios/7_freezing/standard_setting/exp6/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/gas_init.dat b/scenarios/7_freezing/standard_setting/exp6/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp6/height.dat b/scenarios/7_freezing/standard_setting/exp6/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp6/pressure.dat b/scenarios/7_freezing/standard_setting/exp6/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp6/temp.dat b/scenarios/7_freezing/standard_setting/exp6/temp.dat index 0617e7e69..fcc259a39 100644 --- a/scenarios/7_freezing/standard_setting/exp6/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp6/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 +time 0.000 600.000 +temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_back.dat b/scenarios/7_freezing/standard_setting/exp7/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_data.dat b/scenarios/7_freezing/standard_setting/exp7/aero_data.dat deleted file mode 100644 index 3735cb147..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_back.dat b/scenarios/7_freezing/standard_setting/exp7/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_data.dat b/scenarios/7_freezing/standard_setting/exp7/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/gas_init.dat b/scenarios/7_freezing/standard_setting/exp7/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp7/height.dat b/scenarios/7_freezing/standard_setting/exp7/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp7/pressure.dat b/scenarios/7_freezing/standard_setting/exp7/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp7/temp.dat b/scenarios/7_freezing/standard_setting/exp7/temp.dat index 0617e7e69..fcc259a39 100644 --- a/scenarios/7_freezing/standard_setting/exp7/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp7/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 +time 0.000 600.000 +temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_back.dat b/scenarios/7_freezing/standard_setting/exp8/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_data.dat b/scenarios/7_freezing/standard_setting/exp8/aero_data.dat deleted file mode 100644 index 3735cb147..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat b/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_back.dat b/scenarios/7_freezing/standard_setting/exp8/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_data.dat b/scenarios/7_freezing/standard_setting/exp8/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat b/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/gas_init.dat b/scenarios/7_freezing/standard_setting/exp8/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/exp8/height.dat b/scenarios/7_freezing/standard_setting/exp8/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/exp8/pressure.dat b/scenarios/7_freezing/standard_setting/exp8/pressure.dat deleted file mode 100644 index 570ccfb30..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 60 120 180 240 300 360 420 480 540 600 660 720 780 840 900 960 1020 1080 1140 1200 1260 1320 1380 1440 1500 1560 1620 1680 1740 1800 1860 1920 1980 2040 2100 2160 2220 2280 2340 2400 2460 2520 2580 2640 2700 2760 2820 2880 2940 3000 3060 3120 3180 3240 3300 3360 3420 3480 3540 3600 -pressure 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/exp8/temp.dat b/scenarios/7_freezing/standard_setting/exp8/temp.dat index 0617e7e69..fcc259a39 100644 --- a/scenarios/7_freezing/standard_setting/exp8/temp.dat +++ b/scenarios/7_freezing/standard_setting/exp8/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) -time 0.000 1.000 2.000 3.000 4.000 5.000 6.000 7.000 8.000 9.000 10.000 11.000 12.000 13.000 14.000 15.000 16.000 17.000 18.000 19.000 20.000 21.000 22.000 23.000 24.000 25.000 26.000 27.000 28.000 29.000 30.000 31.000 32.000 33.000 34.000 35.000 36.000 37.000 38.000 39.000 40.000 41.000 42.000 43.000 44.000 45.000 46.000 47.000 48.000 49.000 50.000 51.000 52.000 53.000 54.000 55.000 56.000 57.000 58.000 59.000 60.000 61.000 62.000 63.000 64.000 65.000 66.000 67.000 68.000 69.000 70.000 71.000 72.000 73.000 74.000 75.000 76.000 77.000 78.000 79.000 80.000 81.000 82.000 83.000 84.000 85.000 86.000 87.000 88.000 89.000 90.000 91.000 92.000 93.000 94.000 95.000 96.000 97.000 98.000 99.000 100.000 101.000 102.000 103.000 104.000 105.000 106.000 107.000 108.000 109.000 110.000 111.000 112.000 113.000 114.000 115.000 116.000 117.000 118.000 119.000 120.000 121.000 122.000 123.000 124.000 125.000 126.000 127.000 128.000 129.000 130.000 131.000 132.000 133.000 134.000 135.000 136.000 137.000 138.000 139.000 140.000 141.000 142.000 143.000 144.000 145.000 146.000 147.000 148.000 149.000 150.000 151.000 152.000 153.000 154.000 155.000 156.000 157.000 158.000 159.000 160.000 161.000 162.000 163.000 164.000 165.000 166.000 167.000 168.000 169.000 170.000 171.000 172.000 173.000 174.000 175.000 176.000 177.000 178.000 179.000 180.000 181.000 182.000 183.000 184.000 185.000 186.000 187.000 188.000 189.000 190.000 191.000 192.000 193.000 194.000 195.000 196.000 197.000 198.000 199.000 200.000 201.000 202.000 203.000 204.000 205.000 206.000 207.000 208.000 209.000 210.000 211.000 212.000 213.000 214.000 215.000 216.000 217.000 218.000 219.000 220.000 221.000 222.000 223.000 224.000 225.000 226.000 227.000 228.000 229.000 230.000 231.000 232.000 233.000 234.000 235.000 236.000 237.000 238.000 239.000 240.000 241.000 242.000 243.000 244.000 245.000 246.000 247.000 248.000 249.000 250.000 251.000 252.000 253.000 254.000 255.000 256.000 257.000 258.000 259.000 260.000 261.000 262.000 263.000 264.000 265.000 266.000 267.000 268.000 269.000 270.000 271.000 272.000 273.000 274.000 275.000 276.000 277.000 278.000 279.000 280.000 281.000 282.000 283.000 284.000 285.000 286.000 287.000 288.000 289.000 290.000 291.000 292.000 293.000 294.000 295.000 296.000 297.000 298.000 299.000 300.000 301.000 302.000 303.000 304.000 305.000 306.000 307.000 308.000 309.000 310.000 311.000 312.000 313.000 314.000 315.000 316.000 317.000 318.000 319.000 320.000 321.000 322.000 323.000 324.000 325.000 326.000 327.000 328.000 329.000 330.000 331.000 332.000 333.000 334.000 335.000 336.000 337.000 338.000 339.000 340.000 341.000 342.000 343.000 344.000 345.000 346.000 347.000 348.000 349.000 350.000 351.000 352.000 353.000 354.000 355.000 356.000 357.000 358.000 359.000 360.000 361.000 362.000 363.000 364.000 365.000 366.000 367.000 368.000 369.000 370.000 371.000 372.000 373.000 374.000 375.000 376.000 377.000 378.000 379.000 380.000 381.000 382.000 383.000 384.000 385.000 386.000 387.000 388.000 389.000 390.000 391.000 392.000 393.000 394.000 395.000 396.000 397.000 398.000 399.000 400.000 401.000 402.000 403.000 404.000 405.000 406.000 407.000 408.000 409.000 410.000 411.000 412.000 413.000 414.000 415.000 416.000 417.000 418.000 419.000 420.000 421.000 422.000 423.000 424.000 425.000 426.000 427.000 428.000 429.000 430.000 431.000 432.000 433.000 434.000 435.000 436.000 437.000 438.000 439.000 440.000 441.000 442.000 443.000 444.000 445.000 446.000 447.000 448.000 449.000 450.000 451.000 452.000 453.000 454.000 455.000 456.000 457.000 458.000 459.000 460.000 461.000 462.000 463.000 464.000 465.000 466.000 467.000 468.000 469.000 470.000 471.000 472.000 473.000 474.000 475.000 476.000 477.000 478.000 479.000 480.000 481.000 482.000 483.000 484.000 485.000 486.000 487.000 488.000 489.000 490.000 491.000 492.000 493.000 494.000 495.000 496.000 497.000 498.000 499.000 500.000 501.000 502.000 503.000 504.000 505.000 506.000 507.000 508.000 509.000 510.000 511.000 512.000 513.000 514.000 515.000 516.000 517.000 518.000 519.000 520.000 521.000 522.000 523.000 524.000 525.000 526.000 527.000 528.000 529.000 530.000 531.000 532.000 533.000 534.000 535.000 536.000 537.000 538.000 539.000 540.000 541.000 542.000 543.000 544.000 545.000 546.000 547.000 548.000 549.000 550.000 551.000 552.000 553.000 554.000 555.000 556.000 557.000 558.000 559.000 560.000 561.000 562.000 563.000 564.000 565.000 566.000 567.000 568.000 569.000 570.000 571.000 572.000 573.000 574.000 575.000 576.000 577.000 578.000 579.000 580.000 581.000 582.000 583.000 584.000 585.000 586.000 587.000 588.000 589.000 590.000 591.000 592.000 593.000 594.000 595.000 596.000 597.000 598.000 599.000 600.000 -temp 263.150 263.117 263.083 263.050 263.017 262.983 262.950 262.917 262.883 262.850 262.817 262.783 262.750 262.717 262.683 262.650 262.617 262.583 262.550 262.517 262.483 262.450 262.417 262.383 262.350 262.317 262.283 262.250 262.217 262.183 262.150 262.117 262.083 262.050 262.017 261.983 261.950 261.917 261.883 261.850 261.817 261.783 261.750 261.717 261.683 261.650 261.617 261.583 261.550 261.517 261.483 261.450 261.417 261.383 261.350 261.317 261.283 261.250 261.217 261.183 261.150 261.117 261.083 261.050 261.017 260.983 260.950 260.917 260.883 260.850 260.817 260.783 260.750 260.717 260.683 260.650 260.617 260.583 260.550 260.517 260.483 260.450 260.417 260.383 260.350 260.317 260.283 260.250 260.217 260.183 260.150 260.117 260.083 260.050 260.017 259.983 259.950 259.917 259.883 259.850 259.817 259.783 259.750 259.717 259.683 259.650 259.617 259.583 259.550 259.517 259.483 259.450 259.417 259.383 259.350 259.317 259.283 259.250 259.217 259.183 259.150 259.117 259.083 259.050 259.017 258.983 258.950 258.917 258.883 258.850 258.817 258.783 258.750 258.717 258.683 258.650 258.617 258.583 258.550 258.517 258.483 258.450 258.417 258.383 258.350 258.317 258.283 258.250 258.217 258.183 258.150 258.117 258.083 258.050 258.017 257.983 257.950 257.917 257.883 257.850 257.817 257.783 257.750 257.717 257.683 257.650 257.617 257.583 257.550 257.517 257.483 257.450 257.417 257.383 257.350 257.317 257.283 257.250 257.217 257.183 257.150 257.117 257.083 257.050 257.017 256.983 256.950 256.917 256.883 256.850 256.817 256.783 256.750 256.717 256.683 256.650 256.617 256.583 256.550 256.517 256.483 256.450 256.417 256.383 256.350 256.317 256.283 256.250 256.217 256.183 256.150 256.117 256.083 256.050 256.017 255.983 255.950 255.917 255.883 255.850 255.817 255.783 255.750 255.717 255.683 255.650 255.617 255.583 255.550 255.517 255.483 255.450 255.417 255.383 255.350 255.317 255.283 255.250 255.217 255.183 255.150 255.117 255.083 255.050 255.017 254.983 254.950 254.917 254.883 254.850 254.817 254.783 254.750 254.717 254.683 254.650 254.617 254.583 254.550 254.517 254.483 254.450 254.417 254.383 254.350 254.317 254.283 254.250 254.217 254.183 254.150 254.117 254.083 254.050 254.017 253.983 253.950 253.917 253.883 253.850 253.817 253.783 253.750 253.717 253.683 253.650 253.617 253.583 253.550 253.517 253.483 253.450 253.417 253.383 253.350 253.317 253.283 253.250 253.217 253.183 253.150 253.117 253.083 253.050 253.017 252.983 252.950 252.917 252.883 252.850 252.817 252.783 252.750 252.717 252.683 252.650 252.617 252.583 252.550 252.517 252.483 252.450 252.417 252.383 252.350 252.317 252.283 252.250 252.217 252.183 252.150 252.117 252.083 252.050 252.017 251.983 251.950 251.917 251.883 251.850 251.817 251.783 251.750 251.717 251.683 251.650 251.617 251.583 251.550 251.517 251.483 251.450 251.417 251.383 251.350 251.317 251.283 251.250 251.217 251.183 251.150 251.117 251.083 251.050 251.017 250.983 250.950 250.917 250.883 250.850 250.817 250.783 250.750 250.717 250.683 250.650 250.617 250.583 250.550 250.517 250.483 250.450 250.417 250.383 250.350 250.317 250.283 250.250 250.217 250.183 250.150 250.117 250.083 250.050 250.017 249.983 249.950 249.917 249.883 249.850 249.817 249.783 249.750 249.717 249.683 249.650 249.617 249.583 249.550 249.517 249.483 249.450 249.417 249.383 249.350 249.317 249.283 249.250 249.217 249.183 249.150 249.117 249.083 249.050 249.017 248.983 248.950 248.917 248.883 248.850 248.817 248.783 248.750 248.717 248.683 248.650 248.617 248.583 248.550 248.517 248.483 248.450 248.417 248.383 248.350 248.317 248.283 248.250 248.217 248.183 248.150 248.117 248.083 248.050 248.017 247.983 247.950 247.917 247.883 247.850 247.817 247.783 247.750 247.717 247.683 247.650 247.617 247.583 247.550 247.517 247.483 247.450 247.417 247.383 247.350 247.317 247.283 247.250 247.217 247.183 247.150 247.117 247.083 247.050 247.017 246.983 246.950 246.917 246.883 246.850 246.817 246.783 246.750 246.717 246.683 246.650 246.617 246.583 246.550 246.517 246.483 246.450 246.417 246.383 246.350 246.317 246.283 246.250 246.217 246.183 246.150 246.117 246.083 246.050 246.017 245.983 245.950 245.917 245.883 245.850 245.817 245.783 245.750 245.717 245.683 245.650 245.617 245.583 245.550 245.517 245.483 245.450 245.417 245.383 245.350 245.317 245.283 245.250 245.217 245.183 245.150 245.117 245.083 245.050 245.017 244.983 244.950 244.917 244.883 244.850 244.817 244.783 244.750 244.717 244.683 244.650 244.617 244.583 244.550 244.517 244.483 244.450 244.417 244.383 244.350 244.317 244.283 244.250 244.217 244.183 244.150 244.117 244.083 244.050 244.017 243.983 243.950 243.917 243.883 243.850 243.817 243.783 243.750 243.717 243.683 243.650 243.617 243.583 243.550 243.517 243.483 243.450 243.417 243.383 243.350 243.317 243.283 243.250 243.217 243.183 243.150 +time 0.000 600.000 +temp 263.150 243.150 diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 5b9b1edd8..82b6e9a6d 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -1345,6 +1345,39 @@ function aero_state_num_concs_by_source(aero_state, aero_data) end function aero_state_num_concs_by_source +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Returns the frozen fraction (unitless) for whole aerosol population.. + !> frozen fraction = number concentration of frozen particles / + !> total number concentration. + real(kind=dp) function aero_state_frozen_fraction(aero_state, aero_data) + !> Aerosol state. + type(aero_state_t), intent(in) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + + !> Number concentration array (m^{-3}). + real(kind=dp) :: particle_num_concs(aero_state_n_part(aero_state)) + !> Freezing state of each particle (1: frozen, 2: unfrozen). + integer :: particle_frozen(aero_state_n_part(aero_state)) + + integer :: i_part + + particle_num_concs = aero_state_num_concs(aero_state, aero_data) + + do i_part = 1,aero_state_n_part(aero_state) + if (aero_state%apa%particle(i_part)%frozen) then + particle_frozen(i_part) = 1 + else + particle_frozen(i_part) = 0 + end if + end do + aero_state_frozen_fraction = sum(particle_num_concs * particle_frozen) /& + sum(particle_num_concs) + + end function aero_state_frozen_fraction + + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Returns the number concentration of a given weight group and class. diff --git a/src/env_state.F90 b/src/env_state.F90 index 880cdb51a..a72ab4731 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -643,67 +643,24 @@ subroutine env_state_input_netcdf(env_state, ncid) end subroutine env_state_input_netcdf - subroutine env_state_saturated_vapor_pressure_water(env_state, pvs) - ! compute saturated vapor pressure (units : Pa) with respective to water - ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) - !> Environment state to read. - type(env_state_t), intent(in) :: env_state - !> saturated vapor pressure with respective to water (Pa) - real(kind=dp), intent(out) :: pvs - real(kind=dp) :: T, tmp - - T = env_state%temp - if ((T <= 123) .OR. (T >= 332)) then - write(*, *) "Warning! the environment temperature is less then 123K or"& - ," larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" - end if - - tmp = 54.842763 & - - 6763.22 / T & - - 4.210 * log(T) & - + 0.000367 * T & - + tanh( 0.0415 * (T - 218.8)) & - * (53.878 - 1331.22 / T - 9.44523 * log(T) + 0.014025 * T) - pvs = exp(tmp) - end subroutine env_state_saturated_vapor_pressure_water - - subroutine env_state_saturated_vapor_pressure_ice(env_state, pis) - ! compute saturated vapor pressure (units : Pa) with respective to ice - ! Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Environment state to read. - type(env_state_t), intent(in) :: env_state - !> saturated vapor pressure with respective to ice (Pa) - real(kind=dp), intent(out) :: pis - real(kind=dp) :: T, tmp - - T = env_state%temp - if (T <= 110) then - write(*, *) "Warning! the environment temperature is less then 110K, the"& - , "subroutine env_state_saturated_vapor_pressure_ice isn't applicable" - end if - tmp = 9.550426 & - - 5723.265 / T & - + 3.53068 * log(T) & - - 0.00728332 * T - pis = exp(tmp) - end subroutine env_state_saturated_vapor_pressure_ice + !> compute saturated vapor pressure (units : Pa) with respective to water + !> Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + real(kind=dp) function env_state_saturated_vapor_pressure_water(T) - subroutine env_state_saturated_vapor_pressure_water_2(T, pvs) - ! compute saturated vapor pressure (units : Pa) with respective to water - ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) - real(kind=dp), intent(in) :: T - !> saturated vapor pressure with respective to water (Pa) - real(kind=dp), intent(out) :: pvs !> temperature (k) + real(kind=dp), intent(in) :: T + real(kind=dp) :: tmp - if ((T <= 123) .OR. (T >= 332)) then - write(*, *) "Warning! the environment temperature is less then 123K or" & - ," larger than 332K, the subroutine env_state_saturated_vapor_pressure_water isn't applicable" - end if + + call warn_assert_msg(500123156, (T > 123) .and. (T < 332), & + "The environment temperature is less then 123K or larger than "& + "332K, the subroutine env_state_saturated_vapor_pressure_water"& + " isn't applicable") tmp = 54.842763 & - 6763.22 / T & @@ -711,49 +668,51 @@ subroutine env_state_saturated_vapor_pressure_water_2(T, pvs) + 0.000367 * T & + tanh( 0.0415 * (T - 218.8)) & * (53.878 - 1331.22 / T - 9.44523 * log(T) + 0.014025 * T) - pvs = exp(tmp) - end subroutine env_state_saturated_vapor_pressure_water_2 + env_state_saturated_vapor_pressure_water = exp(tmp) - subroutine env_state_saturated_vapor_pressure_ice_2(T, pis) - ! compute saturated vapor pressure (units : Pa) with respective to ice - ! Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + end function env_state_saturated_vapor_pressure_water + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Compute saturated vapor pressure (units : Pa) with respective to ice + !> Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) + - !> Environment state to read. - real(kind=dp), intent(in) :: T - !> saturated vapor pressure with respective to ice (Pa) - real(kind=dp), intent(out) :: pis !> temperature (k) + real(kind=dp), intent(in) :: T + real(kind=dp) :: tmp - if (T <= 110) then - write(*, *) "Warning! the environment temperature is less then 110K, the "& - "subroutine env_state_saturated_vapor_pressure_ice isn't applicable" - end if + call warn_assert_msg(500123157, T > 110, & + "The environment temperature is less then 110K, "& + "the subroutine env_state_saturated_vapor_pressure_water"& + " isn't applicable") + tmp = 9.550426 & - 5723.265 / T & + 3.53068 * log(T) & - 0.00728332 * T - pis = exp(tmp) - end subroutine env_state_saturated_vapor_pressure_ice_2 + env_state_saturated_vapor_pressure_ice = exp(tmp) - subroutine env_state_saturated_vapor_pressure_water_3(T, pvs) - ! compute saturated vapor pressure (units : Pa) with respective to water - ! Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) + end function env_state_saturated_vapor_pressure_ice + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> compute saturated vapor pressure (units : Pa) with respective to water + real(kind=dp) function env_state_saturated_vapor_pressure_water_2(T) - real(kind=dp), intent(in) :: T - !> saturated vapor pressure with respective to water (Pa) - real(kind=dp), intent(out) :: pvs !> temperature (k) + real(kind=dp), intent(in) :: T + real(kind=dp) :: tmp - pvs = const%water_eq_vap_press & + env_state_saturated_vapor_pressure_water_2 = const%water_eq_vap_press & * 10d0**(7.45d0 * (T - const%water_freeze_temp) & / (T - 38d0)) - end subroutine env_state_saturated_vapor_pressure_water_3 - - + end function env_state_saturated_vapor_pressure_water_2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 19550737b..9c12efb1e 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -3,564 +3,561 @@ ! option) any later version. See the file COPYING for details. !> \file -!tate_saturated_vapor_pressure_ice The pmc_ice_nucleation module. +! The pmc_ice_nucleation module. module pmc_ice_nucleation - use pmc_aero_state - use pmc_env_state - use pmc_aero_data - use pmc_util - use pmc_aero_particle - use pmc_constants - use pmc_rand + use pmc_aero_state + use pmc_env_state + use pmc_aero_data + use pmc_util + use pmc_aero_particle + use pmc_constants + use pmc_rand + + implicit none + + !> Type code for an undefined or invalid immersion freezing scheme. + integer, parameter :: IMMERSION_FREEZING_SCHEME_INVALID = 0 + !> Type code for constant ice nucleation rate (J_het) immersion freezing scheme. + integer, parameter :: IMMERSION_FREEZING_SCHEME_CONST = 1 + !> Type code for the singular (INAS) immersion freezing scheme. + integer, parameter :: IMMERSION_FREEZING_SCHEME_SINGULAR = 2 + !> Type code for the ABIFM immersion freezing scheme. + integer, parameter :: IMMERSION_FREEZING_SCHEME_ABIFM = 3 + + !> Whether to use the binned-tau leaping algorithm for time-dependent scheme. + logical :: do_speedup = .true. + + interface ABIFM + module procedure ABIFM_particle + module procedure ABIFM_max + end interface - implicit none - - integer, parameter :: IMMERSION_FREEZING_SCHEME_INVALID = 0 - integer, parameter :: IMMERSION_FREEZING_SCHEME_CONST = 1 - integer, parameter :: IMMERSION_FREEZING_SCHEME_SINGULAR = 2 - integer, parameter :: IMMERSION_FREEZING_SCHEME_ABIFM = 3 - - !> Used to record the runtime of the ice nucleation module. - integer :: freeze_module_run_time = 0 - !> Whether to use the binned-tau leaping algorithm for time-dependent scheme. - logical :: do_speedup = .true. +contains - interface ABIFM - module procedure ABIFM_particle - module procedure ABIFM_max - end interface +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -contains + !> Main subroutine for immersion freezing simulation. + subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + !do_coating, coating_spec, coating_ratio) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + !> Immersion freezing scheme type (e.g., 1:constant rate, 2:sigular, 3:ABIFM). + integer, intent(in) :: immersion_freezing_scheme_type + !> Freezing rate (only used for the constant rate scheme). + real(kind=dp) :: freezing_rate + + + !> Call the immersion freezing subroutine according to the immersion + !> freezing scheme. + if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & + .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then + if (do_speedup) then + call immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + else + call immersion_freezing_time_dependent_naive(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + end if + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_SINGULAR) then + call immersion_freezing_singular(aero_state, aero_data, env_state_initial, & + env_state_final) + else + call assert_msg(121370299, .false., & + 'Error type of immersion freezing scheme') + endif + + end subroutine immersion_freezing + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Initialization for the sigular scheme, sampling the freezing temperature + !> for each particles. + subroutine singular_initialize(aero_state, aero_data) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + + integer :: i_part + real(kind=dp) :: a_INAS, b_INAS, p, S, T0, temp + real(kind=dp) :: aerosol_diameter + + T0 = const%water_freeze_temp + do i_part = 1, aero_state_n_part(aero_state) + a_INAS = -0.517 + b_INAS = 8.934 + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + S = const%pi * aerosol_diameter **2 + p = pmc_random() + temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) + aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & + - b_INAS) / a_INAS + end do + end subroutine singular_initialize + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Simulation for singular scheme, deciding whether to freeze for each + !> particle. Run in each time step. + subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, env_state_final) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + integer :: i_part, i_bin, i_class, n_bins, n_class + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + do i_part = 1, aero_state_n_part(aero_state) + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + if (env_state_final%temp .le. & + aero_state%apa%particle(i_part)%imf_temperature) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + end if + end do + + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) + + end subroutine immersion_freezing_singular + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), + !> deciding whether to freeze for each particle. Run in each time step. + !> This subroutine applys the binned-tau leaping algorithm for speeding up. + subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & + env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) - !> Main subroutine for immersion freezing simulation. - subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) - !do_coating, coating_spec, coating_ratio) - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - !> Total time to integrate. - real(kind=dp), intent(in) :: del_t - !> Flag for coating effect. - !logical :: do_coating - !> Immersion freezing scheme (e.g., ABIFM, sigular, constant rate ...). - !character(len=*), intent(in) :: immersion_freezing_scheme - integer, intent(in) :: immersion_freezing_scheme_type - !> Freezing rate (only used for the constant rate scheme). - real(kind=dp) :: freezing_rate - !> Coating species (only used for the coating effect). - !character(len=*), intent(in) :: coating_spec - !> Surface ratio coated (only used for the coating effect). - !real(kind=dp) :: coating_ratio - !> Start and end time (used for timing). - integer :: clock_start, clock_end - - !> Record the start time. - call system_clock(clock_start) - - !> Call the immersion freezing subroutine according to the immersion - !> freezing scheme. - if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & - .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then - if (do_speedup) then - call immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & - !do_coating, coating_spec, coating_ratio) - else - call immersion_freezing_time_dependent_naive(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & - !do_coating, coating_spec, coating_ratio) - end if - else if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_SINGULAR) then - call immersion_freezing_singular(aero_state, aero_data, env_state_initial, & - env_state_final) - else - call assert_msg(121370299, .false., & - 'Error type of immersion freezing scheme') - endif - !> Record the end time. - call system_clock(clock_end) - !> Add to the total time. - freeze_module_run_time = freeze_module_run_time + clock_end - clock_start - - end subroutine immersion_freezing - - !> Initialization for the sigular scheme, sampling the freezing temperature - !> for each particles. - subroutine singular_initialize(aero_state, aero_data) - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - - integer :: i_part - real(kind=dp) :: a_INAS, b_INAS, p, S, T0, temp - real(kind=dp) :: aerosol_diameter - - T0 = const%water_freeze_temp - do i_part = 1, aero_state_n_part(aero_state) - a_INAS = -0.517 - b_INAS = 8.934 - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) - S = const%pi * aerosol_diameter **2 - p = pmc_random() - temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) - aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & - - b_INAS) / a_INAS - end do - end subroutine singular_initialize - - !> Simulation for singular scheme, deciding whether to freeze for each - !> particle. Run in each time step. - subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, env_state_final) - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - - real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & - H2O_frac(:) - integer :: i_part, i_bin, i_class, n_bins, n_class - - allocate(total_masses(aero_state_n_part(aero_state))) - allocate(H2O_masses(aero_state_n_part(aero_state))) - allocate(H2O_frac(aero_state_n_part(aero_state))) - - total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) - H2O_frac = H2O_masses / total_masses - do i_part = 1, aero_state_n_part(aero_state) - if (aero_state%apa%particle(i_part)%frozen) then + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + + integer :: i_part, i_bin, i_class, n_bins, n_class + real(kind=dp) :: tmp + integer, intent(in) :: immersion_freezing_scheme_type + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: p_freeze, p_frozen + + real(kind=dp) :: p_freeze_max, radius_max, diameter_max + logical :: freeze_thisTime + + integer :: n_entry, ind, spec_bin = 13 + integer :: k_th, n_parts_in_bin + real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + integer :: i_spec_max + real(kind=dp) :: j_het_max + integer :: rand_geometric + + integer :: loop_count = 0 + + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + + call aero_state_sort(aero_state, aero_data) + + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + pvs = env_state_saturated_vapor_pressure_water(env_state_final%temp) + pis = env_state_saturated_vapor_pressure_ice(env_state_final%temp) + a_w_ice = pis / pvs + if (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) then + call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + endif + + n_bins = aero_sorted_n_bin(aero_state%aero_sorted) + n_class = aero_sorted_n_class(aero_state%aero_sorted) + loop_count = 0 + + loop_bins: do i_bin = 1, n_bins + loop_classes: do i_class = 1, n_class + n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) + radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) + diameter_max = radius_max * 2 + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then + call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then + p_freeze_max = 1 - exp(freezing_rate * del_t) + endif + + k_th = n_parts_in_bin + 1 + loop_choosed_particles: do while(.TRUE.) + rand_geometric = pmc_random_geometric(p_freeze_max) + k_th = k_th - rand_geometric + if (k_th <= 0) then + EXIT loop_choosed_particles + endif + loop_count = loop_count + 1 + i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) + if (aero_state%apa%particle(i_part)%frozen) then cycle - end if - if (H2O_frac(i_part) < 1e-2) then + end if + if (H2O_frac(i_part) < 1e-2) then cycle - end if - if (env_state_final%temp .le. & - aero_state%apa%particle(i_part)%imf_temperature) then - aero_state%apa%particle(i_part)%frozen = .TRUE. - aero_state%apa%particle(i_part)%den_ice = & + end if + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then + call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + call warn_assert_msg(123456789, p_freeze .le. p_freeze_max,& + "p_freeze > p_freeze_max.") + rand = pmc_random() + if (rand < p_freeze / p_freeze_max) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & const%reference_ice_density - aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 - end if - end do - - deallocate(total_masses) - deallocate(H2O_masses) - deallocate(H2O_frac) - - end subroutine immersion_freezing_singular - - !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), - !> deciding whether to freeze for each particle. Run in each time step. - !> This subroutine applys the binned-tau leaping algorithm for speeding up. - subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate)!, & - !do_coating, coating_spec, coating_ratio) - - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - !> Total time to integrate. - real(kind=dp), intent(in) :: del_t - - integer :: i_part, i_bin, i_class, n_bins, n_class - real(kind=dp) :: tmp - !logical :: do_freezing_CNT, do_coating - !logical :: do_coating - !character(len=*), intent(in) :: immersion_freezing_scheme - integer, intent(in) :: immersion_freezing_scheme_type - real(kind=dp) :: freezing_rate - real(kind=dp) :: a_w_ice, pis, pvs - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: p_freeze, p_frozen - - real(kind=dp) :: p_freeze_max, radius_max, diameter_max - logical :: freeze_thisTime - - integer :: n_entry, ind, spec_bin = 13 - integer :: k_th, n_parts_in_bin - real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand - real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & - H2O_frac(:) - !character(len=*), intent(in) :: coating_spec - !real(kind=dp) :: coating_ratio - integer :: i_spec_max - real(kind=dp) :: j_het_max - integer :: rand_geometric - - integer :: loop_count = 0 - - - allocate(total_masses(aero_state_n_part(aero_state))) - allocate(H2O_masses(aero_state_n_part(aero_state))) - allocate(H2O_frac(aero_state_n_part(aero_state))) - - call aero_state_sort(aero_state, aero_data) - - total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) - H2O_frac = H2O_masses / total_masses - call env_state_saturated_vapor_pressure_water(env_state_final, pvs) - call env_state_saturated_vapor_pressure_ice(env_state_final, pis) - a_w_ice = pis / pvs - if (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) - endif - - n_bins = aero_sorted_n_bin(aero_state%aero_sorted) - n_class = aero_sorted_n_class(aero_state%aero_sorted) - loop_count = 0 - - loop_bins: do i_bin = 1, n_bins - loop_classes: do i_class = 1, n_class - n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) - radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) - diameter_max = radius_max * 2 - if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) - else if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_CONST) then - p_freeze_max = 1 - exp(freezing_rate * del_t) - endif - - k_th = n_parts_in_bin + 1 - loop_choosed_particles: do while(.TRUE.) - rand_geometric = pmc_random_geometric(p_freeze_max) - k_th = k_th - rand_geometric - if (k_th <= 0) then - EXIT loop_choosed_particles - endif - loop_count = loop_count + 1 - i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) - if (aero_state%apa%particle(i_part)%frozen) then - cycle - end if - if (H2O_frac(i_part) < 1e-2) then - cycle - end if - if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) - if (p_freeze > p_freeze_max) then - print*, "Warning! p_freeze > p_freeze_max. "& - ,"p_freeze = ", p_freeze, "; p_freeze_max = "& - , p_freeze_max - endif - rand = pmc_random() - if (rand < p_freeze / p_freeze_max) then - !print*, i_part - aero_state%apa%particle(i_part)%frozen = .TRUE. - aero_state%apa%particle(i_part)%den_ice = & - const%reference_ice_density - aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 - - endif - else - aero_state%apa%particle(i_part)%frozen = .TRUE. - aero_state%apa%particle(i_part)%den_ice = & - const%reference_ice_density - aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 - - endif - enddo loop_choosed_particles - enddo loop_classes - enddo loop_bins - - deallocate(total_masses) - deallocate(H2O_masses) - deallocate(H2O_frac) - - end subroutine immersion_freezing_time_dependent - - !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), - !> deciding whether to freeze for each particle. Run in each time step. - !> This subroutine applys the naive algorithm for reference. - subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state_initial, env_state_final, del_t, & - immersion_freezing_scheme_type, & - freezing_rate) - - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - !> Total time to integrate. - real(kind=dp), intent(in) :: del_t - - integer :: i_part - real(kind=dp) :: tmp - !logical :: do_coating - !character(len=*), intent(in) :: immersion_freezing_scheme - integer, intent(in) :: immersion_freezing_scheme_type - real(kind=dp) :: freezing_rate - real(kind=dp) :: a_w_ice, pis, pvs - !real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: p_freeze, p_frozen - real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & - H2O_frac(:) - !character(len=*), intent(in) :: coating_spec - !real(kind=dp) :: coating_ratio - real(kind=dp) :: rand - integer :: clock_start, clock_end - - call system_clock(clock_start) - - allocate(total_masses(aero_state_n_part(aero_state))) - allocate(H2O_masses(aero_state_n_part(aero_state))) - allocate(H2O_frac(aero_state_n_part(aero_state))) - - total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) - H2O_frac = H2O_masses / total_masses - - call env_state_saturated_vapor_pressure_water(env_state_final, pvs) - call env_state_saturated_vapor_pressure_ice(env_state_final, pis) - a_w_ice = pis / pvs - - do i_part = 1, aero_state_n_part(aero_state) - !print*, i_part, H2O_frac(i_part) - if (aero_state%apa%particle(i_part)%frozen) then - cycle - end if - if (H2O_frac(i_part) < 1e-2) then - cycle - end if - rand = pmc_random() - - if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) !do_coating, coating_spec, coating_ratio) - else if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_CONST) then - p_freeze = 1 - exp(freezing_rate * del_t) - end if - - if (rand < p_freeze) then + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + + endif + else aero_state%apa%particle(i_part)%frozen = .TRUE. aero_state%apa%particle(i_part)%den_ice = & - const%reference_ice_density + const%reference_ice_density aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 - end if - end do - - deallocate(total_masses) - deallocate(H2O_masses) - deallocate(H2O_frac) - - call system_clock(clock_end) - freeze_module_run_time = freeze_module_run_time + clock_end - clock_start - - end subroutine immersion_freezing_time_dependent_naive - - !> This subroutine simulates the melting process.(Set frozen = .False. - !> for each particle once the temperature is higher than water freezing - !> tempearture) - subroutine melting(aero_state, aero_data, env_state_initial, & - env_state_final) - implicit none - !> Aerosol state. - type(aero_state_t), intent(inout) :: aero_state - !> Aerosol data. - type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final - - integer :: i_part - - if (env_state_final%temp > const%water_freeze_temp) then - do i_part = 1, aero_state_n_part(aero_state) - aero_state%apa%particle(i_part)%frozen = .FALSE. - aero_state%apa%particle(i_part)%den_ice = -9999d0 - aero_state%apa%particle(i_part)%ice_shape_phi = -9999d0 - end do - end if - - end subroutine melting - - !> Calculating the freezing probability for one particle using ABIFM - !> method (Knopf et al.,2013) - - subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & - a_w_ice, del_t) - - implicit none - integer :: i_part, i_spec - type(aero_data_t), intent(in) :: aero_data - real(kind=dp), intent(out) :: P_freezing - type(aero_state_t), intent(inout) :: aero_state - - real(kind=dp) :: aerosol_diameter - real(kind=dp) :: immersed_surface_area - real(kind=dp) :: total_vol - real(kind=dp) :: surface_ratio - real(kind=dp) :: a_w_ice - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: del_t - real(kind=dp) :: j_het, j_het_x_aera - real(kind=dp) :: pvs, pis - - + endif + + enddo loop_choosed_particles + enddo loop_classes + enddo loop_bins + + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) + + end subroutine immersion_freezing_time_dependent + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), + !> deciding whether to freeze for each particle. Run in each time step. + !> This subroutine applys the naive algorithm for reference. + subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & + env_state_initial, env_state_final, del_t, & + immersion_freezing_scheme_type, & + freezing_rate) + + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + !> Total time to integrate. + real(kind=dp), intent(in) :: del_t + !> Type of the immersion freezing scheme + integer, intent(in) :: immersion_freezing_scheme_type + + integer :: i_part + real(kind=dp) :: tmp + real(kind=dp) :: freezing_rate + real(kind=dp) :: a_w_ice, pis, pvs + real(kind=dp) :: p_freeze, p_frozen + real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & + H2O_frac(:) + real(kind=dp) :: rand + integer :: clock_start, clock_end + + + allocate(total_masses(aero_state_n_part(aero_state))) + allocate(H2O_masses(aero_state_n_part(aero_state))) + allocate(H2O_frac(aero_state_n_part(aero_state))) + + total_masses = aero_state_masses(aero_state, aero_data) + H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_frac = H2O_masses / total_masses + + pvs = env_state_saturated_vapor_pressure_water(env_state_final%temp) + pis = env_state_saturated_vapor_pressure_ice(env_state_final%temp) + a_w_ice = pis / pvs + + do i_part = 1, aero_state_n_part(aero_state) + if (aero_state%apa%particle(i_part)%frozen) then + cycle + end if + if (H2O_frac(i_part) < 1e-2) then + cycle + end if + rand = pmc_random() - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) then + call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then + p_freeze = 1 - exp(freezing_rate * del_t) + end if + + if (rand < p_freeze) then + aero_state%apa%particle(i_part)%frozen = .TRUE. + aero_state%apa%particle(i_part)%den_ice = & + const%reference_ice_density + aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 + end if + end do + + deallocate(total_masses) + deallocate(H2O_masses) + deallocate(H2O_frac) + + + end subroutine immersion_freezing_time_dependent_naive + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> This subroutine simulates the melting process.(Set frozen = .False. + !> for each particle once the temperature is higher than water freezing + !> tempearture) + subroutine melting(aero_state, aero_data, env_state_initial, & + env_state_final) + implicit none + !> Aerosol state. + type(aero_state_t), intent(inout) :: aero_state + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Environment state at the start of the timestep. + type(env_state_t), intent(in) :: env_state_initial + !> Environment state at the end of the timestep. The rel_humid + !> value will be ignored and overwritten with a new value. + type(env_state_t), intent(inout) :: env_state_final + + integer :: i_part + + if (env_state_final%temp > const%water_freeze_temp) then + do i_part = 1, aero_state_n_part(aero_state) + aero_state%apa%particle(i_part)%frozen = .FALSE. + aero_state%apa%particle(i_part)%den_ice = -9999d0 + aero_state%apa%particle(i_part)%ice_shape_phi = -9999d0 + end do + end if + + end subroutine melting + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Calculating the freezing probability for one particle using ABIFM + !> method (Knopf et al.,2013) + subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & + a_w_ice, del_t) + + implicit none + !> The index of particle to be calculated. + integer, intent(in) :: i_part + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Aerosol state. + type(aero_state_t), intent(in) :: aero_state + !> The water activity w.r.t. ice. + real(kind=dp), intent(in) :: a_w_ice + !> Time interval. + real(kind=dp), intent(in) :: del_t + !> Freezing probability of the particle with index i_part + real(kind=dp), intent(out) :: P_freezing + + real(kind=dp) :: aerosol_diameter + real(kind=dp) :: immersed_surface_area + real(kind=dp) :: total_vol + real(kind=dp) :: surface_ratio + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: j_het, j_het_x_aera + real(kind=dp) :: pvs, pis + integer :: i_spec + + aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + + immersed_surface_area = const%pi * aerosol_diameter **2 + + + total_vol = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + end do + + j_het_x_aera = 0d0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + - immersed_surface_area = const%pi * aerosol_diameter **2 - - total_vol = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) - end do + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol + j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & + surface_ratio + - j_het_x_aera = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - - abifm_m = aero_data%abifm_m(i_spec) - abifm_c = aero_data%abifm_c(i_spec) - - - - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol - j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & - surface_ratio - - - end do - - P_freezing = 1 - exp(-j_het_x_aera * del_t) - - end subroutine ABIFM_particle - - !> Calculating the heterogeneous ice nucleation rate coefficient - !> for each species, and fining the species having the largest rate. - subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) - implicit none - !type(env_state_t), intent(in) :: env_state - type(aero_data_t), intent(in) :: aero_data - type(aero_state_t), intent(in) :: aero_state - real(kind=dp) :: a_w_ice - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: j_het, j_het_max - !real(kind=dp) :: pvs, pis - integer :: i_spec - integer, intent(out) :: i_spec_max - - j_het_max = -9999.0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - abifm_m = aero_data%abifm_m(i_spec) - abifm_c = aero_data%abifm_c(i_spec) - !print*, "pis =", pis, "pvs =", pvs, "a_w_ice = ", a_w_ice - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - if (j_het > j_het_max) then - j_het_max = j_het - i_spec_max = i_spec - end if - end do - - end subroutine ABIFM_max_spec - - !> Calculating the maximum freezing probability for particles in - !> one bin using ABIFM method (Knopf et al.,2013). Only used by - !> the binned-tau leaping algorithm. - subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) - implicit none - !type(env_state_t), intent(in) :: env_state - real(kind=dp), intent(out) :: P_freezing - type(aero_data_t), intent(in) :: aero_data - real(kind=dp) :: diameter_max - real(kind=dp) :: immersed_surface_area - !real(kind=dp) :: a_w_ice - !real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: del_t - real(kind=dp) :: j_het_max - !real(kind=dp) :: pvs, pis - integer :: i_spec - - immersed_surface_area = const%pi * diameter_max **2 - P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) - - end subroutine ABIFM_max - - !> Read the specification for a kernel type from a spec file and - !> generate it. - subroutine spec_file_read_immersion_freezing_scheme_type(file, immersion_freezing_scheme_type) - - !> Spec file. - type(spec_file_t), intent(inout) :: file - !> Kernel type. - integer, intent(out) :: immersion_freezing_scheme_type - - character(len=SPEC_LINE_MAX_VAR_LEN) :: imf_scheme - - !> \page input_format_immersion_freezing_scheme Input File Format: Immersion freezing scheme - !! - !! The immersion freezing scheme is specified by the parameter: - !! - \b immersion_freezing_scheme (string): the type of immersion freezing scheme - !! must be one of: \c sedi for the gravitational sedimentation - !! kernel; \c additive for the additive kernel; \c constant - !! for the constant kernel; \c brown for the Brownian kernel, - !! or \c zero for no immersion freezing - !! - !! If \c immersion_freezing_scheme is \c additive, the kernel coefficient needs to be - !! provided using the \c additive_kernel_coeff parameter - !! - !! See also: - !! - \ref spec_file_format --- the input file text format - - call spec_file_read_string(file, 'immersion_freezing_scheme', imf_scheme) - if (trim(imf_scheme) == 'const') then - immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_CONST - elseif (trim(imf_scheme) == 'singular') then - immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_SINGULAR - elseif (trim(imf_scheme) == 'ABIFM') then - immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_ABIFM - else - call spec_file_die_msg(920761229, file, & - "Unknown immersion freezing scheme: " // trim(imf_scheme)) - end if - - end subroutine spec_file_read_immersion_freezing_scheme_type + end do + + P_freezing = 1 - exp(-j_het_x_aera * del_t) + + end subroutine ABIFM_particle + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Calculating the heterogeneous ice nucleation rate coefficient + !> for each species, and fining the species having the largest rate. + subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + implicit none + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Aerosol state. + type(aero_state_t), intent(in) :: aero_state + !> The water activity w.r.t. ice. + real(kind=dp), intent(in) :: a_w_ice + !> The index of the maximum J_het species. + integer, intent(out) :: i_spec_max + !> The maximum value of J_het among all species. + real(kind=dp), intent(out) :: j_het_max + + real(kind=dp) :: abifm_m, abifm_c + real(kind=dp) :: j_het + integer :: i_spec + + j_het_max = -9999.0 + do i_spec = 1,aero_data_n_spec(aero_data) + if (i_spec == aero_data%i_water) then + cycle + end if + abifm_m = aero_data%abifm_m(i_spec) + abifm_c = aero_data%abifm_c(i_spec) + j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 + if (j_het > j_het_max) then + j_het_max = j_het + i_spec_max = i_spec + end if + end do + + end subroutine ABIFM_max_spec + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Calculating the maximum freezing probability for particles in + !> one bin using ABIFM method (Knopf et al.,2013). Only used by + !> the binned-tau leaping algorithm. + subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) + implicit none + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data + !> Maximum diameter. + real(kind=dp), intent(in) :: diameter_max + !> Time interval. + real(kind=dp), intent(in) :: del_t + !> Maximum J_het among all species. + real(kind=dp), intent(in) :: j_het_max + !> Maximum freezing probability. + real(kind=dp), intent(out) :: P_freezing + + real(kind=dp) :: immersed_surface_area + integer :: i_spec + + immersed_surface_area = const%pi * diameter_max **2 + P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) + + end subroutine ABIFM_max + +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + + !> Read the specification for a kernel type from a spec file and + !> generate it. + subroutine spec_file_read_immersion_freezing_scheme_type(file, immersion_freezing_scheme_type) + + !> Spec file. + type(spec_file_t), intent(inout) :: file + !> Kernel type. + integer, intent(out) :: immersion_freezing_scheme_type + + character(len=SPEC_LINE_MAX_VAR_LEN) :: imf_scheme + + !> \page input_format_immersion_freezing_scheme Input File Format: Immersion freezing scheme + !! + !! The immersion freezing scheme is specified by the parameter: + !! - \b immersion_freezing_scheme (string): the type of immersion freezing scheme + !! must be one of: \c sedi for the gravitational sedimentation + !! kernel; \c additive for the additive kernel; \c constant + !! for the constant kernel; \c brown for the Brownian kernel, + !! or \c zero for no immersion freezing + !! + !! If \c immersion_freezing_scheme is \c additive, the kernel coefficient needs to be + !! provided using the \c additive_kernel_coeff parameter + !! + !! See also: + !! - \ref spec_file_format --- the input file text format + + call spec_file_read_string(file, 'immersion_freezing_scheme', imf_scheme) + if (trim(imf_scheme) == 'const') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_CONST + elseif (trim(imf_scheme) == 'singular') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_SINGULAR + elseif (trim(imf_scheme) == 'ABIFM') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_ABIFM + else + call spec_file_die_msg(920761229, file, & + "Unknown immersion freezing scheme: " // trim(imf_scheme)) + end if + + end subroutine spec_file_read_immersion_freezing_scheme_type end module pmc_ice_nucleation diff --git a/src/rand.F90 b/src/rand.F90 index 787a7ee35..986c86773 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -696,30 +696,26 @@ subroutine uuid4_str(uuid) end subroutine uuid4_str !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - - integer function pmc_random_geometric(P) - ! Generate a random number in geometric distribution with the probability P - ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f - implicit none + ! Generate a random number in geometric distribution with the probability P + ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f + integer function pmc_random_geometric(P) + + implicit none real(kind=dp) :: P, U, TINY TINY = 1.0D-12 pmc_random_geometric = 0 - IF (.NOT.( (P.GE.0.0D0).AND.(P.LE.1.0D0))) THEN - WRITE(*,*) "Range error" - RETURN - ENDIF + call assert_msg(927129543, (P.GE.0.0D0).AND.(P.LE.1.0D0),& + "Range error") IF (P.GT.0.9D0) THEN pmc_random_geometric = pmc_random_geometric + 1 U = pmc_random() do while( U.GT.P ) - !U = ZBQLU01(0.0D0) pmc_random_geometric = pmc_random_geometric + 1 U = pmc_random() enddo - !IF (U.GT.P) GOTO 10 ELSE U = pmc_random() diff --git a/test/freezing/test_freezing_1.sh b/test/freezing/test_freezing_1.sh index 67b1fb8bb..4a8adab54 100755 --- a/test/freezing/test_freezing_1.sh +++ b/test/freezing/test_freezing_1.sh @@ -9,13 +9,15 @@ cd ${0%/*} # make the output directory if it doesn't exist mkdir -p out + +# run PartMC freezing test ../../partmc run_part.spec -#./extract_data.py -../../test_freezing_extract -#mkdir -p theoretical -#./theoretical_freezing.py -../../test_freezing_theoretical +# extract frozen fraction results to a txt file +../../test_freezing_extract out/freezing_part +# calculate the freezing theoretical results +../../test_freezing_theoretical -../../numeric_diff --rel-tol 0.02 out/freezing_part_data.txt out/freezing_theoretical_data.txt +# compare the PartMC versus theoretical results +../../numeric_diff --rel-tol 0.02 out/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_data.txt diff --git a/test/freezing/test_freezing_extract.F90 b/test/freezing/test_freezing_extract.F90 index 781937ed5..d8a48f9f2 100644 --- a/test/freezing/test_freezing_extract.F90 +++ b/test/freezing/test_freezing_extract.F90 @@ -1,116 +1,143 @@ -! --- +!! Copyright (C) 2009-2012 Matthew West +! Licensed under the GNU General Public License version 2 or (at your +! option) any later version. See the file COPYING for details. +!> \file +!> The extract_freezing program. + +!> Read NetCDF output files and write out the time evolution of +!> frozen fraction average among ensembles in text format. program extract_freezing - use netcdf - implicit none - integer, parameter :: dp = kind(0.d0) - integer, parameter :: out_unit = 65 - character(len=*), parameter :: in_prefix = "out/freezing_part_" - character(len=*), parameter :: out_filename = "out/freezing_part_data.txt" - character(len=1000) :: in_filename - integer :: ncid - integer :: varid_time, dimid_aero_particle - integer :: varid_aero_num_conc, varid_aero_frozen - integer :: n_aero_particle - integer :: xtype, ndims, nAtts - character(len=1000) :: tmp_str - real(kind=dp), allocatable :: aero_num_conc(:) - integer, allocatable :: aero_frozen(:) - real(kind=dp) :: time - real(kind=dp) :: frozen_fraction, frozen_fraction_total - real(kind=dp) :: frozen_fraction_mean - integer, dimension(nf90_max_var_dims) :: dimids - integer :: i_time, i_ens, status, ios - - ! open output - open(unit=out_unit, file=out_filename, iostat=ios) - if (ios /= 0) then - write(0,'(a,a,a,i4)') 'ERROR: unable to open file ', & - trim(out_filename), ' for writing: ', ios - stop 1 - end if - - i_time = 0 - do while(.true.) - i_time = i_time + 1 - !do i_ens = 1, 10 - i_ens = 0 - frozen_fraction_total = 0d0 - do while(.true.) - i_ens = i_ens + 1 - write(in_filename,'(a,i4.4, a, i8.8,a)') trim(in_prefix), i_ens, "_", i_time, ".nc" - status = nf90_open(trim(in_filename), NF90_NOWRITE, ncid) - if (status /= NF90_NOERR) then - exit - end if - !print*, trim(in_filename) - - call nc_check(nf90_inq_varid(ncid, "time", varid_time)) - call nc_check(nf90_inq_varid(ncid, "time", varid_time)) - call nc_check(nf90_get_var(ncid, varid_time, time)) - call nc_check(nf90_inq_dimid(ncid, "aero_particle", & - dimid_aero_particle)) - call nc_check(nf90_Inquire_Dimension(ncid, dimid_aero_particle, & - tmp_str, n_aero_particle)) - call nc_check(nf90_inq_varid(ncid, "aero_num_conc", & - varid_aero_num_conc)) - call nc_check(nf90_Inquire_Variable(ncid, varid_aero_num_conc, & - tmp_str, xtype, ndims, dimids, nAtts)) - if ((ndims /= 1) & - .or. (dimids(1) /= dimid_aero_particle)) then - write(*,*) "ERROR: unexpected aero_num_conc dimids" - stop 1 - end if - allocate(aero_num_conc(n_aero_particle)) - call nc_check(nf90_get_var(ncid, varid_aero_num_conc, & - aero_num_conc)) - - call nc_check(nf90_inq_varid(ncid, "aero_frozen", & - varid_aero_frozen)) - call nc_check(nf90_Inquire_Variable(ncid, varid_aero_frozen, & - tmp_str, xtype, ndims, dimids, nAtts)) - if ((ndims /= 1) & - .or. (dimids(1) /= dimid_aero_particle)) then - write(*,*) "ERROR: unexpected aero_frozen dimids" - stop 1 - end if - allocate(aero_frozen(n_aero_particle)) - call nc_check(nf90_get_var(ncid, varid_aero_frozen, & - aero_frozen)) - - call nc_check(nf90_close(ncid)) - frozen_fraction = sum(aero_frozen * aero_num_conc) / & - sum(aero_num_conc) - frozen_fraction_total = frozen_fraction_total + & - frozen_fraction - - !print*, aero_frozen - deallocate(aero_num_conc) - deallocate(aero_frozen) - end do - if (i_ens .eq. 1) then - exit - end if - frozen_fraction_mean = frozen_fraction_total / (i_ens - 1) - write(out_unit,'(e20.10)') frozen_fraction_mean - + + use pmc_aero_state + use pmc_aero_particle + use pmc_output + use pmc_mpi + use getopt_m + + integer, parameter :: N_ensemble = 10 + character(len=PMC_MAX_FILENAME_LEN) :: in_prefix, in_prefix_ensemble, out_filename + character(len=PMC_MAX_FILENAME_LEN), allocatable :: filename_list(:) + character(len=1000) :: tmp_str + type(aero_data_t) :: aero_data + type(aero_state_t) :: aero_state + type(env_state_t) :: env_state + integer :: index, i_repeat, i_spec, out_unit + integer :: i_file, n_file, i_ensemble + real(kind=dp) :: time, del_t + character(len=PMC_UUID_LEN) :: uuid, run_uuid + real(kind=dp), allocatable :: frozen_fractions(:),& + frozen_fractions_mean(:) + type(option_s) :: opts(2) + + call pmc_mpi_init() + + opts(1) = option_s("help", .false., 'h') + opts(2) = option_s("output", .true., 'o') + + out_filename = "" + + do + select case(getopt("ho:", opts)) + case(char(0)) + exit + case('h') + call print_help() + stop + case('o') + out_filename = optarg + case( '?' ) + call print_help() + call die_msg(514364550, 'unknown option: ' // trim(optopt)) + case default + call print_help() + call die_msg(603100341, 'unhandled option: ' // trim(optopt)) + end select + end do + + if (optind /= command_argument_count()) then + call print_help() + call die_msg(967032896, 'expected exactly one non-option prefix argument') + end if + + call get_command_argument(optind, in_prefix) + + if (out_filename == "") then + out_filename = trim(in_prefix) // "_frozen_fraction_ensemble_mean.txt" + end if + + + allocate(filename_list(0)) + + write(in_prefix_ensemble, "(a,a,i4.4)") trim(in_prefix), "_", 1 + call input_filename_list(in_prefix_ensemble, filename_list) + n_file = size(filename_list) + + allocate(frozen_fractions(n_file)) + allocate(frozen_fractions_mean(n_file)) + frozen_fractions_mean = 0d0 + + do i_ensemble = 1,N_ensemble + write(in_prefix_ensemble, "(a,a,i4.4)") trim(in_prefix), '_', i_ensemble + call input_filename_list(in_prefix_ensemble, filename_list) + n_file = size(filename_list) + call assert_msg(323514871, n_file > 0, & + "no NetCDF files found with prefix: " // trim(in_prefix_ensemble)) + + call input_state(filename_list(1), index, time, del_t, i_repeat, uuid, & + aero_data=aero_data, aero_state=aero_state, env_state=env_state) + run_uuid = uuid + + + + do i_file = 1,n_file + call input_state(filename_list(i_file), index, time, del_t, i_repeat, & + uuid, aero_data=aero_data, aero_state=aero_state, env_state=env_state) + + call assert_msg(397906326, uuid == run_uuid, & + "UUID mismatch between " // trim(filename_list(1)) // " and " & + // trim(filename_list(i_file))) + + frozen_fractions(i_file) = aero_state_frozen_fraction(aero_state, aero_data) end do + frozen_fractions_mean = frozen_fractions_mean + frozen_fractions + + end do + frozen_fractions_mean = frozen_fractions_mean / N_ensemble + + write(*,'(a,a)') "Output file: ", trim(out_filename) + write(*,'(a)') " Each row of output is one time." + write(*,'(a)') " The columns of output are:" + write(*,'(a)') " column 1: frozen fraction ensemble mean (unitless)" + call open_file_write(out_filename, out_unit) + do i_file = 1,n_file + write(out_unit, '(e30.15e3)', advance='no') frozen_fractions_mean(i_file) + write(out_unit, '(a)') '' + end do + call close_file(out_unit) + + deallocate(frozen_fractions) + deallocate(frozen_fractions_mean) + deallocate(filename_list) + + call pmc_mpi_finalize() - close(out_unit) contains - !> Check return status of NetCDF function calls. - subroutine nc_check(status) - !> Status return value. - integer, intent(in) :: status + subroutine print_help() + + write(*,'(a)') 'Usage: extract_freezing [options] ' + write(*,'(a)') '' + write(*,'(a)') 'options are:' + write(*,'(a)') ' -h, --help Print this help message.' + write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') '' + write(*,'(a)') 'Examples:' + write(*,'(a)') ' extract_freezing freezing_part' + write(*,'(a)') '' - if (status /= NF90_NOERR) then - write(0,*) nf90_strerror(status) - stop 1 - end if + end subroutine print_help - end subroutine nc_check end program extract_freezing - diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index 7ad790ad0..a72eebd7c 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -1,16 +1,39 @@ ! --- +! This program is used to calculate the theoretical frozen fraction of +! mono-disperse INPs composed of two species in internal mixing at a +! constant temperature during the immersion freezing proces. +! All INPs are assumed to be immersed in supercooled water. +! Calculation of J_het is based on the ABIFM method. + +! References: +! Tang, W. (2024). Particle-resolved simulations of immersion freezing with multi-species ice nucleating particles +! (Master’s thesis, University of Illinois at Urbana-Champaign). https://hdl.handle.net/2142/124611 + +! Knopf, D. A., & Alpert, P. A. (2013). A water activity based model of +! heterogeneous ice nucleation kinetics for freezing of water and aqueous +! solution droplets. Faraday discussions, 165, 513-534. Doi:10.1039/C3FD00035D. + + program theoretical_freezing use pmc_env_state implicit none - integer, parameter :: out_unit = 65 + !> Temperature (unit: Kelvin) real(kind=dp), parameter :: temperature = 253.15 + !> Time duration (unit: s) real(kind=dp), parameter :: total_time = 600 + !> Output time interval (unit: s) real(kind=dp), parameter :: out_dt = 10 + !> ABIFM parameters (m and c) for species 1. real(kind=dp), parameter :: abifm_m_1 = 17.62106, abifm_c_1 = 1.42411 + !> ABIFM parameters (m and c) for species 2. real(kind=dp), parameter :: abifm_m_2 = 54.48075, abifm_c_2 = -10.66873 + !> The ratio of total surface for species 1 and 2. real(kind=dp), parameter :: s_ratio_1 = 0.5, s_ratio_2 = 0.5 + !> Dry diameter of INPs (unit: m) real(kind=dp), parameter :: Dp_dry = 1d-6 + !> The name of output file character(len=*), parameter :: out_filename = "out/freezing_theoretical_data.txt" + integer, parameter :: out_unit = 65 real(kind=dp) :: time, Jhet_1, Jhet_2, Jhet_mean, Phi_mean, frozen_fraction integer :: ios ! open output @@ -36,15 +59,17 @@ program theoretical_freezing contains +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) + ! Calculate J_het value using ABIFM method (Knopf et al., 2013) use pmc_env_state use pmc_constants implicit none real(kind=dp), intent(in) :: T, abifm_m, abifm_c real(kind=dp), intent(out) :: Jhet real(kind=dp) :: es, ei, a_w_ice - call env_state_saturated_vapor_pressure_water_2(T, es) - call env_state_saturated_vapor_pressure_ice_2(T, ei) + es = env_state_saturated_vapor_pressure_water(T) + ei = env_state_saturated_vapor_pressure_ice(T) a_w_ice = ei / es Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 From e9f9a3e3a28be0639f7953503c932fca7150773a Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 12 Dec 2024 14:01:43 -0600 Subject: [PATCH 079/127] Set random code for warning message --- src/env_state.F90 | 4 ++-- src/ice_nucleation.F90 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index a72ab4731..ecabb1e29 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -657,7 +657,7 @@ real(kind=dp) function env_state_saturated_vapor_pressure_water(T) real(kind=dp) :: tmp - call warn_assert_msg(500123156, (T > 123) .and. (T < 332), & + call warn_assert_msg(571128376, (T > 123) .and. (T < 332), & "The environment temperature is less then 123K or larger than "& "332K, the subroutine env_state_saturated_vapor_pressure_water"& " isn't applicable") @@ -684,7 +684,7 @@ real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) real(kind=dp) :: tmp - call warn_assert_msg(500123157, T > 110, & + call warn_assert_msg(482130832, T > 110, & "The environment temperature is less then 110K, "& "the subroutine env_state_saturated_vapor_pressure_water"& " isn't applicable") diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 9c12efb1e..35294a70f 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -253,7 +253,7 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) - call warn_assert_msg(123456789, p_freeze .le. p_freeze_max,& + call warn_assert_msg(301184565, p_freeze .le. p_freeze_max,& "p_freeze > p_freeze_max.") rand = pmc_random() if (rand < p_freeze / p_freeze_max) then From c4708bc8e8386b9445ffbffc1426aca4679f57f8 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sat, 14 Dec 2024 17:55:51 -0600 Subject: [PATCH 080/127] modify the settings issue (delete unused file, delete unused comments, add dat files) --- .../7_freezing/standard_setting/aero_back.dat | 6 ++++ .../standard_setting/aero_back_dist.dat | 1 + .../7_freezing/standard_setting/aero_data.dat | 30 +++++++++++++++++++ .../7_freezing/standard_setting/aero_emit.dat | 6 ++++ .../standard_setting/aero_emit_dist.dat | 1 + .../standard_setting/exp1/aero_init_comp.dat | 11 ------- .../standard_setting/exp1/aero_init_comp1.dat | 8 ----- .../standard_setting/exp1/aero_init_comp2.dat | 7 ----- .../standard_setting/exp1/aero_init_dist.dat | 19 ------------ .../standard_setting/exp2/aero_init_comp.dat | 10 ------- .../standard_setting/exp2/aero_init_comp1.dat | 8 ----- .../standard_setting/exp2/aero_init_comp2.dat | 7 ----- .../standard_setting/exp2/aero_init_dist.dat | 19 ------------ .../standard_setting/exp3/aero_init_comp.dat | 15 ---------- .../standard_setting/exp3/aero_init_comp1.dat | 5 ---- .../standard_setting/exp3/aero_init_comp2.dat | 4 --- .../standard_setting/exp3/aero_init_dist.dat | 9 ------ .../standard_setting/exp4/aero_init_comp.dat | 10 ------- .../standard_setting/exp4/aero_init_comp1.dat | 8 ----- .../standard_setting/exp4/aero_init_comp2.dat | 7 ----- .../standard_setting/exp4/aero_init_dist.dat | 20 ------------- .../standard_setting/exp5/aero_init_comp.dat | 11 ------- .../standard_setting/exp5/aero_init_comp1.dat | 8 ----- .../standard_setting/exp5/aero_init_comp2.dat | 7 ----- .../standard_setting/exp5/aero_init_dist.dat | 20 ------------- .../standard_setting/exp6/aero_init_comp.dat | 11 ------- .../standard_setting/exp6/aero_init_comp1.dat | 8 ----- .../standard_setting/exp6/aero_init_comp2.dat | 7 ----- .../standard_setting/exp6/aero_init_dist.dat | 20 ------------- .../standard_setting/exp7/aero_init_comp.dat | 15 ---------- .../standard_setting/exp7/aero_init_comp1.dat | 5 ---- .../standard_setting/exp7/aero_init_comp2.dat | 4 --- .../standard_setting/exp7/aero_init_dist.dat | 9 ------ .../standard_setting/exp8/aero_init_comp.dat | 11 ------- .../standard_setting/exp8/aero_init_comp1.dat | 8 ----- .../standard_setting/exp8/aero_init_comp2.dat | 7 ----- .../standard_setting/exp8/aero_init_dist.dat | 20 ------------- .../7_freezing/standard_setting/gas_back.dat | 7 +++++ .../7_freezing/standard_setting/gas_data.dat | 7 +++++ .../7_freezing/standard_setting/gas_emit.dat | 7 +++++ .../7_freezing/standard_setting/gas_init.dat | 3 ++ .../7_freezing/standard_setting/height.dat | 4 +++ .../7_freezing/standard_setting/pressure.dat | 4 +++ 43 files changed, 76 insertions(+), 338 deletions(-) create mode 100644 scenarios/7_freezing/standard_setting/aero_back.dat create mode 100644 scenarios/7_freezing/standard_setting/aero_back_dist.dat create mode 100644 scenarios/7_freezing/standard_setting/aero_data.dat create mode 100644 scenarios/7_freezing/standard_setting/aero_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat create mode 100644 scenarios/7_freezing/standard_setting/gas_back.dat create mode 100644 scenarios/7_freezing/standard_setting/gas_data.dat create mode 100644 scenarios/7_freezing/standard_setting/gas_emit.dat create mode 100644 scenarios/7_freezing/standard_setting/gas_init.dat create mode 100644 scenarios/7_freezing/standard_setting/height.dat create mode 100644 scenarios/7_freezing/standard_setting/pressure.dat diff --git a/scenarios/7_freezing/standard_setting/aero_back.dat b/scenarios/7_freezing/standard_setting/aero_back.dat new file mode 100644 index 000000000..3879b8f6b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/aero_back.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/aero_back_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/aero_back_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/aero_data.dat b/scenarios/7_freezing/standard_setting/aero_data.dat new file mode 100644 index 000000000..3735cb147 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/aero_data.dat @@ -0,0 +1,30 @@ +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 + +ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 +# Illite: +# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q +# kappa: 0.1039/b901585j + +#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 +# Aluminium oxide: +# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide +# kappa: [unknown] + +Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 +# Iron(III) oxide: +# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide +# kappa: [unknown] + +#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 +# Kaolinite +# den: https://cameochemicals.noaa.gov/chemical/25036 +# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q +# kappa: 10.1039/b901585j +# + +#NVF 5240 0 1d-3 0.01 0.0 0.0 +# NeVer Freeze (other parameters are same as OIN) +#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 +# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/aero_emit.dat b/scenarios/7_freezing/standard_setting/aero_emit.dat new file mode 100644 index 000000000..34fb5fb66 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/aero_emit.dat @@ -0,0 +1,6 @@ +# time (s) +# rate (s^{-1}) +# aerosol distribution filename +time 0 +rate 0 +dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/aero_emit_dist.dat new file mode 100644 index 000000000..c56ed75ed --- /dev/null +++ b/scenarios/7_freezing/standard_setting/aero_emit_dist.dat @@ -0,0 +1 @@ +# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat index 22f127315..3a120b47e 100644 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat @@ -1,15 +1,4 @@ # mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 H2O 0.76595745 -#H2O 0.97923588 ILT 0.23404255 -#Fe2O3 0.02076412 diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat index da5d654db..e78b0236e 100644 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat @@ -7,22 +7,3 @@ num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat index f42462e1d..c25aed79c 100644 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat @@ -1,15 +1,5 @@ # mass fractions -#H2O 0.9999580814218781 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 H2O 0.63202247 -#ILT 0.03883495 Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat index da5d654db..e78b0236e 100644 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat @@ -7,22 +7,3 @@ num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat deleted file mode 100644 index 664bfffad..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp.dat +++ /dev/null @@ -1,15 +0,0 @@ -# mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 -H2O 0.97011632 -Fe2O3 0.02076412 -ILT 0.01959831 - diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat index 8c732d5fb..834c53180 100644 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat @@ -1,8 +1,3 @@ # mass fractions H2O 0.76595745 -#OIN 1.0 ILT 0.23404255 -#KLN 0.0 -#NVF 0.0 -#Fe2O3 0.02076412 - diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat index ca2343830..209b23301 100644 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat @@ -1,7 +1,3 @@ # mass fractions H2O 0.63202247 -#OIN 0.0 -#ILT 0.03883495 -#KLN 0.0 -#NVF 1.0 Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat index 078a5d729..80f6d1601 100644 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat @@ -7,10 +7,6 @@ num_conc 0.5e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - mode_name init2 # name of mode source mass_frac aero_init_comp2.dat # species mass fractions @@ -19,8 +15,3 @@ mode_type log_normal # type of distribution num_conc 0.5e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat index 7ebf4a58d..014decb58 100644 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat @@ -1,14 +1,4 @@ # mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 H2O 0.69257407 Fe2O3 0.20161601 ILT 0.10580993 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat index bb4b16f87..4d433b9e4 100644 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat @@ -6,23 +6,3 @@ mode_type log_normal # type of distribution num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat index 22f127315..3a120b47e 100644 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat @@ -1,15 +1,4 @@ # mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 H2O 0.76595745 -#H2O 0.97923588 ILT 0.23404255 -#Fe2O3 0.02076412 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat index da5d654db..09b335200 100644 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat @@ -6,23 +6,3 @@ mode_type log_normal # type of distribution num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat index f42462e1d..36d7180b5 100644 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat @@ -1,15 +1,4 @@ # mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 H2O 0.63202247 -#ILT 0.03883495 Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat index da5d654db..09b335200 100644 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat @@ -6,23 +6,3 @@ mode_type log_normal # type of distribution num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat deleted file mode 100644 index 664bfffad..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp.dat +++ /dev/null @@ -1,15 +0,0 @@ -# mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 -H2O 0.97011632 -Fe2O3 0.02076412 -ILT 0.01959831 - diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat index 8c732d5fb..834c53180 100644 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat @@ -1,8 +1,3 @@ # mass fractions H2O 0.76595745 -#OIN 1.0 ILT 0.23404255 -#KLN 0.0 -#NVF 0.0 -#Fe2O3 0.02076412 - diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat index ca2343830..209b23301 100644 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat @@ -1,7 +1,3 @@ # mass fractions H2O 0.63202247 -#OIN 0.0 -#ILT 0.03883495 -#KLN 0.0 -#NVF 1.0 Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat index 078a5d729..80f6d1601 100644 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat @@ -7,10 +7,6 @@ num_conc 0.5e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - mode_name init2 # name of mode source mass_frac aero_init_comp2.dat # species mass fractions @@ -19,8 +15,3 @@ mode_type log_normal # type of distribution num_conc 0.5e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat index 7ebf4a58d..a54d3469d 100644 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat @@ -1,15 +1,4 @@ # mass fractions -#H2O 0.9999580814218781 - -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 - -#Fe2O3 4.191857812185784e-05 -#Al2O3 0.0 -#H2O 0.96116505 H2O 0.69257407 Fe2O3 0.20161601 ILT 0.10580993 - diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat deleted file mode 100644 index 19bbc3ad7..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp1.dat +++ /dev/null @@ -1,8 +0,0 @@ -# mass fractions -H2O 0.00 -#OIN 1.0 -#ILT 1.0 -#KLN 0.0 -#NVF 0.0 -Fe2O3 1.0 - diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat deleted file mode 100644 index ac1c43cf3..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp2.dat +++ /dev/null @@ -1,7 +0,0 @@ -# mass fractions -#H2O 0.00 -#OIN 0.0 -#ILT 0.0 -#KLN 0.0 -NVF 1.0 -#Fe2O3 1.0 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat index bb4b16f87..4d433b9e4 100644 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat +++ b/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat @@ -6,23 +6,3 @@ mode_type log_normal # type of distribution num_conc 1e8 # particle number concentration (#/m^3) geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 1e9 -#diam 1.0e-6 # geometric mean diameter (m) - - -#mode_name init2 # name of mode source -#mass_frac aero_init_comp2.dat # species mass fractions -#diam_type geometric # type of diameter specified - - -#mode_type log_normal # type of distribution -#num_conc 0.5e9 # particle number concentration (#/m^3) -#eom_mean_diam 1e-06 # geometric mean diameter (m) -#log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - -#mode_type mono # type of distribution -#num_conc 0.5e9 -#diam 1.0e-6 # geometric mean diameter (m) - diff --git a/scenarios/7_freezing/standard_setting/gas_back.dat b/scenarios/7_freezing/standard_setting/gas_back.dat new file mode 100644 index 000000000..38737461f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/gas_back.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# mixing ratios (ppb) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/gas_data.dat b/scenarios/7_freezing/standard_setting/gas_data.dat new file mode 100644 index 000000000..5bf86180b --- /dev/null +++ b/scenarios/7_freezing/standard_setting/gas_data.dat @@ -0,0 +1,7 @@ +# list of gas species +H2SO4 +HNO3 +HCl +NH3 +NO +NO2 diff --git a/scenarios/7_freezing/standard_setting/gas_emit.dat b/scenarios/7_freezing/standard_setting/gas_emit.dat new file mode 100644 index 000000000..80db9bcf2 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/gas_emit.dat @@ -0,0 +1,7 @@ +# time (s) +# rate (s^{-1}) +# emissions (mol m^{-2} s^{-1}) +time 0 +rate 1 +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/gas_init.dat b/scenarios/7_freezing/standard_setting/gas_init.dat new file mode 100644 index 000000000..5a02fb933 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/gas_init.dat @@ -0,0 +1,3 @@ +# species init mixing ratio (ppb) +# these lines intentionally left empty +# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/height.dat b/scenarios/7_freezing/standard_setting/height.dat new file mode 100644 index 000000000..d4927c431 --- /dev/null +++ b/scenarios/7_freezing/standard_setting/height.dat @@ -0,0 +1,4 @@ +# time (s) +# height (m) +time 0 +height 1000 diff --git a/scenarios/7_freezing/standard_setting/pressure.dat b/scenarios/7_freezing/standard_setting/pressure.dat new file mode 100644 index 000000000..40b74628f --- /dev/null +++ b/scenarios/7_freezing/standard_setting/pressure.dat @@ -0,0 +1,4 @@ +# time (s) +# pressure (Pa) +time 0 600 +pressure 50000.000 50000.000 From 144b720db1789cff4b8b5ba62f283c90a9aa0eea Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sat, 14 Dec 2024 18:17:12 -0600 Subject: [PATCH 081/127] Add label for ABIFM parameters in aero_data.dat --- scenarios/1_urban_plume/aero_data.dat | 42 ++++++++++++------------- scenarios/2_urban_plume2/aero_data.dat | 42 ++++++++++++------------- scenarios/3_condense/aero_data.dat | 42 ++++++++++++------------- scenarios/4_chamber/aero_data.dat | 42 ++++++++++++------------- scenarios/5_coag_brownian/aero_data.dat | 42 ++++++++++++------------- test/additive/aero_data.dat | 4 +-- test/average/aero_data.dat | 42 ++++++++++++------------- test/bidisperse/aero_data.dat | 4 +-- test/brownian/aero_data.dat | 4 +-- test/condense/aero_data.dat | 42 ++++++++++++------------- test/fractal/aero_data.dat | 4 +-- test/loss/aero_data.dat | 4 +-- test/mixing_state/aero_data.dat | 10 +++--- test/mosaic/aero_data.dat | 42 ++++++++++++------------- test/nucleate/aero_data.dat | 6 ++-- test/parallel/aero_data.dat | 4 +-- test/sedi/aero_data.dat | 4 +-- test/tchem/aero_data.dat | 8 ++--- test/weighting/aero_data.dat | 8 ++--- 19 files changed, 198 insertions(+), 198 deletions(-) diff --git a/scenarios/1_urban_plume/aero_data.dat b/scenarios/1_urban_plume/aero_data.dat index d519d553e..26fcd7e32 100644 --- a/scenarios/1_urban_plume/aero_data.dat +++ b/scenarios/1_urban_plume/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 0 0 -NO3 1800 0 62d-3 0.65 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.65 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 0 60d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1000 0 1d-3 0.001 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/2_urban_plume2/aero_data.dat b/scenarios/2_urban_plume2/aero_data.dat index a93726739..26fcd7e32 100644 --- a/scenarios/2_urban_plume2/aero_data.dat +++ b/scenarios/2_urban_plume2/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 0 0 -NO3 1800 0 62d-3 0.65 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.65 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 0 60d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1000 0 1d-3 0.001 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/3_condense/aero_data.dat b/scenarios/3_condense/aero_data.dat index e2be311a5..d0cd57cfa 100644 --- a/scenarios/3_condense/aero_data.dat +++ b/scenarios/3_condense/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 1 96d-3 0 0 0 -NO3 1800 1 62d-3 0 0 0 -Cl 2200 1 35.5d-3 0 0 0 -NH4 1800 1 18d-3 0 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 1 60d-3 0 0 0 -Na 2200 1 23d-3 0 0 0 -Ca 2600 1 40d-3 0 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1000 0 1d-3 0.1 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 1 96d-3 0 0 0 +NO3 1800 1 62d-3 0 0 0 +Cl 2200 1 35.5d-3 0 0 0 +NH4 1800 1 18d-3 0 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 1 60d-3 0 0 0 +Na 2200 1 23d-3 0 0 0 +Ca 2600 1 40d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/4_chamber/aero_data.dat b/scenarios/4_chamber/aero_data.dat index 147f0345a..26fcd7e32 100644 --- a/scenarios/4_chamber/aero_data.dat +++ b/scenarios/4_chamber/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 0 0 -NO3 1800 0 62d-3 0.65 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.65 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 0 60d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1000 0 1d-3 0.001 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/scenarios/5_coag_brownian/aero_data.dat b/scenarios/5_coag_brownian/aero_data.dat index f3351b3f1..26fcd7e32 100644 --- a/scenarios/5_coag_brownian/aero_data.dat +++ b/scenarios/5_coag_brownian/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 0 0 -NO3 1800 0 62d-3 0.65 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.65 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 0 60d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1000 0 1d-3 0.001 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.65 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 0 60d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1000 0 1d-3 0.001 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/additive/aero_data.dat b/test/additive/aero_data.dat index dd551dfa9..b38ac540e 100644 --- a/test/additive/aero_data.dat +++ b/test/additive/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/average/aero_data.dat b/test/average/aero_data.dat index ef4fe0e19..65d773f46 100644 --- a/test/average/aero_data.dat +++ b/test/average/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa -H2O 1000 0 18d-3 0 0 0 -SO4 1800 0 96d-3 0.53 0 0 -NO3 1800 0 62d-3 0.53 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.53 0 0 -CO3 2600 0 60d-3 0.53 0 0 -MSA 1800 0 95d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OC 1000 0 1d-3 0.1 0 0 -BC 1800 0 1d-3 0 0 0 -OIN 2600 0 1d-3 0.1 0 0 -ARO1 1000 0 150d-3 0.1 0 0 -ARO2 1000 0 150d-3 0.1 0 0 -ALK1 1000 0 140d-3 0.1 0 0 -OLE1 1000 0 140d-3 0.1 0 0 -API1 1000 0 184d-3 0.1 0 0 -API2 1000 0 184d-3 0.1 0 0 -LIM1 1000 0 200d-3 0.1 0 0 -LIM2 1000 0 200d-3 0.1 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +SO4 1800 0 96d-3 0.53 0 0 +NO3 1800 0 62d-3 0.53 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.53 0 0 +CO3 2600 0 60d-3 0.53 0 0 +MSA 1800 0 95d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +ARO1 1000 0 150d-3 0.1 0 0 +ARO2 1000 0 150d-3 0.1 0 0 +ALK1 1000 0 140d-3 0.1 0 0 +OLE1 1000 0 140d-3 0.1 0 0 +API1 1000 0 184d-3 0.1 0 0 +API2 1000 0 184d-3 0.1 0 0 +LIM1 1000 0 200d-3 0.1 0 0 +LIM2 1000 0 200d-3 0.1 0 0 diff --git a/test/bidisperse/aero_data.dat b/test/bidisperse/aero_data.dat index c00133a94..cc430aaee 100644 --- a/test/bidisperse/aero_data.dat +++ b/test/bidisperse/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/brownian/aero_data.dat b/test/brownian/aero_data.dat index 533f85a76..cc430aaee 100644 --- a/test/brownian/aero_data.dat +++ b/test/brownian/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/condense/aero_data.dat b/test/condense/aero_data.dat index a0dce82c2..9d466783c 100644 --- a/test/condense/aero_data.dat +++ b/test/condense/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 1 96d-3 0 0 0 -NO3 1800 1 62d-3 0 0 0 -Cl 2200 1 35.5d-3 0 0 0 -NH4 1800 1 18d-3 0 0 0 -MSA 1800 0 95d-3 0.53 0 0 -ARO1 1400 0 150d-3 0.1 0 0 -ARO2 1400 0 150d-3 0.1 0 0 -ALK1 1400 0 140d-3 0.1 0 0 -OLE1 1400 0 140d-3 0.1 0 0 -API1 1400 0 184d-3 0.1 0 0 -API2 1400 0 184d-3 0.1 0 0 -LIM1 1400 0 200d-3 0.1 0 0 -LIM2 1400 0 200d-3 0.1 0 0 -CO3 2600 1 60d-3 0 0 0 -Na 2200 1 23d-3 0 0 0 -Ca 2600 1 40d-3 0 0 0 -OIN 2600 0 1d-3 0.1 0 0 -OC 1400 0 1d-3 0.1 0 0 -BC 1800 0 1d-3 0 0 0 -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 1 96d-3 0 0 0 +NO3 1800 1 62d-3 0 0 0 +Cl 2200 1 35.5d-3 0 0 0 +NH4 1800 1 18d-3 0 0 0 +MSA 1800 0 95d-3 0.53 0 0 +ARO1 1400 0 150d-3 0.1 0 0 +ARO2 1400 0 150d-3 0.1 0 0 +ALK1 1400 0 140d-3 0.1 0 0 +OLE1 1400 0 140d-3 0.1 0 0 +API1 1400 0 184d-3 0.1 0 0 +API2 1400 0 184d-3 0.1 0 0 +LIM1 1400 0 200d-3 0.1 0 0 +LIM2 1400 0 200d-3 0.1 0 0 +CO3 2600 1 60d-3 0 0 0 +Na 2200 1 23d-3 0 0 0 +Ca 2600 1 40d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +OC 1400 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +H2O 1000 0 18d-3 0 0 0 diff --git a/test/fractal/aero_data.dat b/test/fractal/aero_data.dat index 22df47dec..9d5459403 100644 --- a/test/fractal/aero_data.dat +++ b/test/fractal/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -BC 4200 0 1d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +BC 4200 0 1d-3 0 0 0 diff --git a/test/loss/aero_data.dat b/test/loss/aero_data.dat index c00133a94..cc430aaee 100644 --- a/test/loss/aero_data.dat +++ b/test/loss/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/mixing_state/aero_data.dat b/test/mixing_state/aero_data.dat index e6a526c89..9ee382e85 100644 --- a/test/mixing_state/aero_data.dat +++ b/test/mixing_state/aero_data.dat @@ -1,5 +1,5 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -A 1000 0 100d-3 0.1 0 0 -B 1500 0 100d-3 0.1 0 0 -C 2000 0 100d-3 0.1 0 0 -D 2500 0 100d-3 0.1 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +A 1000 0 100d-3 0.1 0 0 +B 1500 0 100d-3 0.1 0 0 +C 2000 0 100d-3 0.1 0 0 +D 2500 0 100d-3 0.1 0 0 diff --git a/test/mosaic/aero_data.dat b/test/mosaic/aero_data.dat index b1a64b8a7..65d773f46 100644 --- a/test/mosaic/aero_data.dat +++ b/test/mosaic/aero_data.dat @@ -1,21 +1,21 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa -H2O 1000 0 18d-3 0 0 0 -SO4 1800 0 96d-3 0.53 0 0 -NO3 1800 0 62d-3 0.53 0 0 -Cl 2200 0 35.5d-3 1.28 0 0 -NH4 1800 0 18d-3 0.53 0 0 -CO3 2600 0 60d-3 0.53 0 0 -MSA 1800 0 95d-3 0.53 0 0 -Na 2200 0 23d-3 1.28 0 0 -Ca 2600 0 40d-3 0.53 0 0 -OC 1000 0 1d-3 0.1 0 0 -BC 1800 0 1d-3 0 0 0 -OIN 2600 0 1d-3 0.1 0 0 -ARO1 1000 0 150d-3 0.1 0 0 -ARO2 1000 0 150d-3 0.1 0 0 -ALK1 1000 0 140d-3 0.1 0 0 -OLE1 1000 0 140d-3 0.1 0 0 -API1 1000 0 184d-3 0.1 0 0 -API2 1000 0 184d-3 0.1 0 0 -LIM1 1000 0 200d-3 0.1 0 0 -LIM2 1000 0 200d-3 0.1 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 +SO4 1800 0 96d-3 0.53 0 0 +NO3 1800 0 62d-3 0.53 0 0 +Cl 2200 0 35.5d-3 1.28 0 0 +NH4 1800 0 18d-3 0.53 0 0 +CO3 2600 0 60d-3 0.53 0 0 +MSA 1800 0 95d-3 0.53 0 0 +Na 2200 0 23d-3 1.28 0 0 +Ca 2600 0 40d-3 0.53 0 0 +OC 1000 0 1d-3 0.1 0 0 +BC 1800 0 1d-3 0 0 0 +OIN 2600 0 1d-3 0.1 0 0 +ARO1 1000 0 150d-3 0.1 0 0 +ARO2 1000 0 150d-3 0.1 0 0 +ALK1 1000 0 140d-3 0.1 0 0 +OLE1 1000 0 140d-3 0.1 0 0 +API1 1000 0 184d-3 0.1 0 0 +API2 1000 0 184d-3 0.1 0 0 +LIM1 1000 0 200d-3 0.1 0 0 +LIM2 1000 0 200d-3 0.1 0 0 diff --git a/test/nucleate/aero_data.dat b/test/nucleate/aero_data.dat index 2b2b506f6..3b62e55ae 100644 --- a/test/nucleate/aero_data.dat +++ b/test/nucleate/aero_data.dat @@ -1,3 +1,3 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SO4 1800 0 96d-3 0.65 0 0 -NO3 1800 0 62d-3 0.65 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SO4 1800 0 96d-3 0.65 0 0 +NO3 1800 0 62d-3 0.65 0 0 diff --git a/test/parallel/aero_data.dat b/test/parallel/aero_data.dat index c00133a94..cc430aaee 100644 --- a/test/parallel/aero_data.dat +++ b/test/parallel/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/sedi/aero_data.dat b/test/sedi/aero_data.dat index 659064443..5a703b6c9 100644 --- a/test/sedi/aero_data.dat +++ b/test/sedi/aero_data.dat @@ -1,2 +1,2 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -H2O 1000 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +H2O 1000 0 18d-3 0 0 0 diff --git a/test/tchem/aero_data.dat b/test/tchem/aero_data.dat index d52f270c3..892067a0d 100644 --- a/test/tchem/aero_data.dat +++ b/test/tchem/aero_data.dat @@ -1,4 +1,4 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SI 10000 0 18d-3 0 0 0 -SB 100 0 18d-3 0 0 0 -SE 1500 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SI 10000 0 18d-3 0 0 0 +SB 100 0 18d-3 0 0 0 +SE 1500 0 18d-3 0 0 0 diff --git a/test/weighting/aero_data.dat b/test/weighting/aero_data.dat index f2fd5f131..892067a0d 100644 --- a/test/weighting/aero_data.dat +++ b/test/weighting/aero_data.dat @@ -1,4 +1,4 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) -SI 10000 0 18d-3 0 0 0 -SB 100 0 18d-3 0 0 0 -SE 1500 0 18d-3 0 0 0 +# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) +SI 10000 0 18d-3 0 0 0 +SB 100 0 18d-3 0 0 0 +SE 1500 0 18d-3 0 0 0 From 49d142dbe9c8e2510bb964faca978e12a37acf09 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:57:38 -0600 Subject: [PATCH 082/127] Update src/aero_particle.F90 Co-authored-by: Jeffrey Curtis --- src/aero_particle.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index e58892374..1ee3b78c3 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -143,7 +143,7 @@ subroutine aero_particle_zero(aero_particle, aero_data) allocate(aero_particle%component(0)) aero_particle%least_create_time = 0d0 aero_particle%greatest_create_time = 0d0 - aero_particle%frozen = .FALSE. + aero_particle%frozen = .false. aero_particle%imf_temperature = 0d0 aero_particle%den_ice = -9999d0 aero_particle%ice_shape_phi = -9999d0 From 7c2e7d3a3af2d0b5a6b01929f501ceb07a2ac6c2 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:57:51 -0600 Subject: [PATCH 083/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 35294a70f..0e6da9f26 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -199,9 +199,6 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in real(kind=dp) :: j_het_max integer :: rand_geometric - integer :: loop_count = 0 - - allocate(total_masses(aero_state_n_part(aero_state))) allocate(H2O_masses(aero_state_n_part(aero_state))) allocate(H2O_frac(aero_state_n_part(aero_state))) From 5cf57ee31700117b40271959462799f7ba394be2 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:57:59 -0600 Subject: [PATCH 084/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 0e6da9f26..b0ceb7d8e 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -281,7 +281,7 @@ end subroutine immersion_freezing_time_dependent !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. - !> This subroutine applys the naive algorithm for reference. + !> This subroutine applies the naive algorithm that checks each particle. subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & env_state_initial, env_state_final, del_t, & immersion_freezing_scheme_type, & From d49ab5b513d53e0ef47b77be72a3646c20a73e62 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:58:19 -0600 Subject: [PATCH 085/127] Update src/aero_particle.F90 Co-authored-by: Jeffrey Curtis --- src/aero_particle.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 1ee3b78c3..0c2cbb2c0 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -1080,7 +1080,6 @@ integer function pmc_mpi_pack_size_aero_particle(val) pmc_mpi_pack_size_aero_particle = pmc_mpi_pack_size_aero_particle & + pmc_mpi_pack_size_aero_component(val%component(i)) end do -!>>>>>>> 2341ef410d6f49f3169b8461b5fa8c89dbd3c7a2 end function pmc_mpi_pack_size_aero_particle From 1719342d919093cd8c7ae64cf1942837c400873d Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:58:35 -0600 Subject: [PATCH 086/127] Update src/aero_state.F90 Co-authored-by: Jeffrey Curtis --- src/aero_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 82b6e9a6d..6f8dbac66 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -1377,7 +1377,6 @@ real(kind=dp) function aero_state_frozen_fraction(aero_state, aero_data) end function aero_state_frozen_fraction - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Returns the number concentration of a given weight group and class. From ff434ed1d9e988b2eb6cb3d15b8f7e3137438210 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:58:58 -0600 Subject: [PATCH 087/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index ecabb1e29..80ee4edea 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -707,7 +707,6 @@ real(kind=dp) function env_state_saturated_vapor_pressure_water_2(T) real(kind=dp) :: tmp - env_state_saturated_vapor_pressure_water_2 = const%water_eq_vap_press & * 10d0**(7.45d0 * (T - const%water_freeze_temp) & / (T - 38d0)) From 95d8f8d8f0a38266ea1ff786d23f2bf75d2aee16 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:59:16 -0600 Subject: [PATCH 088/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 80ee4edea..f49891f97 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -650,7 +650,6 @@ end subroutine env_state_input_netcdf !> Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) real(kind=dp) function env_state_saturated_vapor_pressure_water(T) - !> temperature (k) real(kind=dp), intent(in) :: T From e3f8abd35a544a29cbd7b3c279c13154a8b35656 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:59:32 -0600 Subject: [PATCH 089/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index f49891f97..3d6c430c0 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -701,7 +701,7 @@ end function env_state_saturated_vapor_pressure_ice !> compute saturated vapor pressure (units : Pa) with respective to water real(kind=dp) function env_state_saturated_vapor_pressure_water_2(T) - !> temperature (k) + !> Temperature (K) real(kind=dp), intent(in) :: T real(kind=dp) :: tmp From 2b86ee0446f64f448002eaf13fb6740b793b6330 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:59:49 -0600 Subject: [PATCH 090/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 3d6c430c0..85aba51e2 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -678,7 +678,7 @@ end function env_state_saturated_vapor_pressure_water real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) - !> temperature (k) + !> Temperature (K) real(kind=dp), intent(in) :: T real(kind=dp) :: tmp From d49d723f1a4a1f6b70988c40e22f618f16f6e735 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:00:11 -0600 Subject: [PATCH 091/127] Update src/aero_state.F90 Co-authored-by: Jeffrey Curtis --- src/aero_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 6f8dbac66..dd28ca199 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -1356,7 +1356,6 @@ real(kind=dp) function aero_state_frozen_fraction(aero_state, aero_data) !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Number concentration array (m^{-3}). real(kind=dp) :: particle_num_concs(aero_state_n_part(aero_state)) !> Freezing state of each particle (1: frozen, 2: unfrozen). integer :: particle_frozen(aero_state_n_part(aero_state)) From f4f321bbd30febad055b507eb20e132eebdb6f9f Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:00:34 -0600 Subject: [PATCH 092/127] Update src/aero_state.F90 Co-authored-by: Jeffrey Curtis --- src/aero_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index dd28ca199..02e3a9afc 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -1357,7 +1357,6 @@ real(kind=dp) function aero_state_frozen_fraction(aero_state, aero_data) type(aero_data_t), intent(in) :: aero_data real(kind=dp) :: particle_num_concs(aero_state_n_part(aero_state)) - !> Freezing state of each particle (1: frozen, 2: unfrozen). integer :: particle_frozen(aero_state_n_part(aero_state)) integer :: i_part From c939a676fa9eb4e7c823843146d0adce36ec594d Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:01:06 -0600 Subject: [PATCH 093/127] Update src/aero_state.F90 Co-authored-by: Jeffrey Curtis --- src/aero_state.F90 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 02e3a9afc..7f05c601d 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -3242,10 +3242,10 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) end if aero_particle%water_hyst_leg = aero_water_hyst_leg(i_part) aero_particle%id = aero_id(i_part) - if (aero_frozen(i_part) .eq. 1) then - aero_particle%frozen = .True. + if (aero_frozen(i_part) == 1) then + aero_particle%frozen = .true. else - aero_particle%frozen = .False. + aero_particle%frozen = .false. end if aero_particle%imf_temperature = aero_imf_temperature(i_part) aero_particle%den_ice = aero_ice_density(i_part) From c79803c86db00167d2d0b6fbdae0be934d18fbc3 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:01:19 -0600 Subject: [PATCH 094/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 85aba51e2..4f1de3bb6 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -650,7 +650,7 @@ end subroutine env_state_input_netcdf !> Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) real(kind=dp) function env_state_saturated_vapor_pressure_water(T) - !> temperature (k) + !> Temperature (K) real(kind=dp), intent(in) :: T real(kind=dp) :: tmp From 69ebd443cfd4d14a5050309db74ee8c8bcc57d92 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:01:41 -0600 Subject: [PATCH 095/127] Update src/env_state.F90 Co-authored-by: Jeffrey Curtis --- src/env_state.F90 | 1 - 1 file changed, 1 deletion(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index 4f1de3bb6..5f1009b19 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -677,7 +677,6 @@ end function env_state_saturated_vapor_pressure_water !> Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) - !> Temperature (K) real(kind=dp), intent(in) :: T From 87777009dd8fc215fc8732cfbac69e4f4ac653b8 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:08:38 -0600 Subject: [PATCH 096/127] Update src/aero_state.F90 Co-authored-by: Jeffrey Curtis --- src/aero_state.F90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 7f05c601d..857faea3e 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -2837,9 +2837,9 @@ subroutine aero_state_output_netcdf(aero_state, ncid, aero_data, & aero_state%apa%particle(i_part), aero_data) aero_id(i_part) = aero_state%apa%particle(i_part)%id if (aero_state%apa%particle(i_part)%frozen) then - aero_frozen(i_part) = 1 + aero_frozen(i_part) = 1 else - aero_frozen(i_part) = 0 + aero_frozen(i_part) = 0 end if aero_imf_temperature(i_part) & = aero_state%apa%particle(i_part)%imf_temperature From a32972b09950dbf4cab9786e07d04714545d7889 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:13:26 -0600 Subject: [PATCH 097/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index b0ceb7d8e..184737378 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -325,12 +325,8 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & a_w_ice = pis / pvs do i_part = 1, aero_state_n_part(aero_state) - if (aero_state%apa%particle(i_part)%frozen) then - cycle - end if - if (H2O_frac(i_part) < 1e-2) then - cycle - end if + if (aero_state%apa%particle(i_part)%frozen) cycle + if (H2O_frac(i_part) < 1e-2) cycle rand = pmc_random() if (immersion_freezing_scheme_type .eq. & From efe5438520c1b4aaf31f18f8c2b752b89a6ea575 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:13:59 -0600 Subject: [PATCH 098/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 184737378..6b2fe9c86 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -374,7 +374,7 @@ subroutine melting(aero_state, aero_data, env_state_initial, & if (env_state_final%temp > const%water_freeze_temp) then do i_part = 1, aero_state_n_part(aero_state) - aero_state%apa%particle(i_part)%frozen = .FALSE. + aero_state%apa%particle(i_part)%frozen = .false. aero_state%apa%particle(i_part)%den_ice = -9999d0 aero_state%apa%particle(i_part)%ice_shape_phi = -9999d0 end do From 1212fcfa8c1d2a1dc5d817b7e644d59455ef6f81 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:14:36 -0600 Subject: [PATCH 099/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 6b2fe9c86..2e1e9ac74 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -471,9 +471,7 @@ subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) j_het_max = -9999.0 do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if + if (i_spec == aero_data%i_water) cycle abifm_m = aero_data%abifm_m(i_spec) abifm_c = aero_data%abifm_c(i_spec) j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 From c7afeee2c89628f5a5fd843a73305874f1063e1b Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:15:15 -0600 Subject: [PATCH 100/127] Update src/rand.F90 Co-authored-by: Jeffrey Curtis --- src/rand.F90 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rand.F90 b/src/rand.F90 index 986c86773..74bb41678 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -696,7 +696,8 @@ subroutine uuid4_str(uuid) end subroutine uuid4_str !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - ! Generate a random number in geometric distribution with the probability P + + !> Generate a random number in geometric distribution with the probability P ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f integer function pmc_random_geometric(P) From fe21d2fea72f0451e0f21115c29253d4fa33ae0c Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:15:49 -0600 Subject: [PATCH 101/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 2e1e9ac74..bfa0197c3 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -427,14 +427,11 @@ subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & j_het_x_aera = 0d0 do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if + if (i_spec == aero_data%i_water) cycle abifm_m = aero_data%abifm_m(i_spec) abifm_c = aero_data%abifm_c(i_spec) - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol From 7fe2745e32d946458f2b471de98048a72dbde740 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 23 Jan 2025 09:19:52 -0600 Subject: [PATCH 102/127] modifications following Jeff's comments --- src/aero_particle.F90 | 41 ++++++----- src/aero_state.F90 | 8 +- src/constants.F90 | 4 + src/ice_nucleation.F90 | 163 ++++++++++++++++------------------------- src/run_part.F90 | 48 ++++++------ 5 files changed, 117 insertions(+), 147 deletions(-) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 0c2cbb2c0..8a4b9d77f 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -145,8 +145,8 @@ subroutine aero_particle_zero(aero_particle, aero_data) aero_particle%greatest_create_time = 0d0 aero_particle%frozen = .false. aero_particle%imf_temperature = 0d0 - aero_particle%den_ice = -9999d0 - aero_particle%ice_shape_phi = -9999d0 + aero_particle%den_ice = const%nan + aero_particle%ice_shape_phi = const%nan aero_particle%n_primary_parts = 0 end subroutine aero_particle_zero @@ -921,10 +921,11 @@ subroutine aero_particle_coagulate(aero_particle_1, & type(aero_particle_t), intent(in) :: aero_particle_1 !> Second particle. type(aero_particle_t), intent(in) :: aero_particle_2 + !> Aerosol data. + type(aero_data_t), intent(in) :: aero_data !> Result particle. type(aero_particle_t), intent(inout) :: aero_particle_new - type(aero_data_t), intent(in) :: aero_data real(kind=dp) :: ice_vol_1, ice_vol_2 integer :: n_comp_1, n_comp_2, n_comp_1_new, n_comp_2_new, i @@ -1003,24 +1004,24 @@ subroutine aero_particle_coagulate(aero_particle_1, & aero_particle_2%imf_temperature) if (aero_particle_new%frozen) then - ice_vol_1 = aero_particle_1%vol(aero_data%i_water) - ice_vol_2 = aero_particle_2%vol(aero_data%i_water) - - if (aero_particle_1%frozen .and. aero_particle_2%frozen) then - ice_vol_1 = aero_particle_1%vol(aero_data%i_water) * & - const%water_density / aero_particle_1%den_ice - ice_vol_2 = aero_particle_2%vol(aero_data%i_water) * & - const%water_density / aero_particle_2%den_ice - aero_particle_new%den_ice = (aero_particle_1%den_ice * ice_vol_1 + & - aero_particle_2%den_ice * ice_vol_2) / (ice_vol_1 + ice_vol_2) - else if(aero_particle_1%frozen) then - aero_particle_new%den_ice = aero_particle_1%den_ice - else - aero_particle_new%den_ice = aero_particle_2%den_ice - end if - aero_particle_new%ice_shape_phi = 1d0 + ice_vol_1 = aero_particle_1%vol(aero_data%i_water) + ice_vol_2 = aero_particle_2%vol(aero_data%i_water) + + if (aero_particle_1%frozen .and. aero_particle_2%frozen) then + ice_vol_1 = aero_particle_1%vol(aero_data%i_water) * & + const%water_density / aero_particle_1%den_ice + ice_vol_2 = aero_particle_2%vol(aero_data%i_water) * & + const%water_density / aero_particle_2%den_ice + aero_particle_new%den_ice = (aero_particle_1%den_ice * ice_vol_1 + & + aero_particle_2%den_ice * ice_vol_2) / (ice_vol_1 + ice_vol_2) + else if(aero_particle_1%frozen) then + aero_particle_new%den_ice = aero_particle_1%den_ice + else + aero_particle_new%den_ice = aero_particle_2%den_ice + end if + aero_particle_new%ice_shape_phi = 1d0 else - aero_particle_new%den_ice = -9999d0 + aero_particle_new%den_ice = const%nan end if diff --git a/src/aero_state.F90 b/src/aero_state.F90 index 857faea3e..b3c590f16 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -3184,13 +3184,13 @@ subroutine aero_state_input_netcdf(aero_state, ncid, aero_data) call pmc_nc_read_integer64_1d(ncid, aero_id, & "aero_id") call pmc_nc_read_integer_1d(ncid, aero_frozen, & - "aero_frozen") + "aero_frozen") call pmc_nc_read_real_1d(ncid, aero_imf_temperature, & - "aero_imf_temperature") + "aero_imf_temperature") call pmc_nc_read_real_1d(ncid, aero_ice_density, & - "aero_ice_density", must_be_present=.false.) + "aero_ice_density", must_be_present=.true.) call pmc_nc_read_real_1d(ncid, aero_ice_shape_phi, & - "aero_ice_shape_phi", must_be_present=.false.) + "aero_ice_shape_phi", must_be_present=.true.) call pmc_nc_read_real_1d(ncid, aero_least_create_time, & "aero_least_create_time") call pmc_nc_read_real_1d(ncid, aero_greatest_create_time, & diff --git a/src/constants.F90 b/src/constants.F90 index 46c2c6355..95c11fa60 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -65,6 +65,10 @@ module pmc_constants real(kind=dp) :: air_dyn_visc = 1.78d-5 !> Reference ice density (Kg m^{-3}). real(kind=dp) :: reference_ice_density = 920d0 + !> Immersion freezing water mass ratio threshold. + real(kind=dp) :: imf_water_threshold = 1d-2 + !> NaN value. + real(kind=dp) :: nan = -9999d0 end type const_t !> Fixed variable for accessing the constant's values. diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index bfa0197c3..3d55b9573 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -28,32 +28,24 @@ module pmc_ice_nucleation !> Whether to use the binned-tau leaping algorithm for time-dependent scheme. logical :: do_speedup = .true. - interface ABIFM - module procedure ABIFM_particle - module procedure ABIFM_max - end interface - contains !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Main subroutine for immersion freezing simulation. - subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) !do_coating, coating_spec, coating_ratio) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final + !> Environment state. + type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t - !> Immersion freezing scheme type (e.g., 1:constant rate, 2:sigular, 3:ABIFM). + !> Immersion freezing scheme type. integer, intent(in) :: immersion_freezing_scheme_type !> Freezing rate (only used for the constant rate scheme). real(kind=dp) :: freezing_rate @@ -64,28 +56,28 @@ subroutine immersion_freezing(aero_state, aero_data, env_state_initial, & if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then if (do_speedup) then - call immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + call ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data, & + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) else - call immersion_freezing_time_dependent_naive(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + call ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) end if else if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_SINGULAR) then - call immersion_freezing_singular(aero_state, aero_data, env_state_initial, & - env_state_final) + call ice_nucleation_immersion_freezing_singular(aero_state, aero_data, & + env_state) else call assert_msg(121370299, .false., & 'Error type of immersion freezing scheme') endif - end subroutine immersion_freezing + end subroutine ice_nucleation_immersion_freezing !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Initialization for the sigular scheme, sampling the freezing temperature !> for each particles. - subroutine singular_initialize(aero_state, aero_data) + subroutine ice_nucleation_singular_initialize(aero_state, aero_data) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -107,28 +99,27 @@ subroutine singular_initialize(aero_state, aero_data) aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & - b_INAS) / a_INAS end do - end subroutine singular_initialize + end subroutine ice_nucleation_singular_initialize !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Simulation for singular scheme, deciding whether to freeze for each !> particle. Run in each time step. - subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, env_state_final) + subroutine ice_nucleation_immersion_freezing_singular(aero_state, aero_data,& + env_state) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final + !> Environment state. + type(env_state_t), intent(inout) :: env_state real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) - integer :: i_part, i_bin, i_class, n_bins, n_class + integer :: i_part + ! FIXME: Do this to avoid compiler warning/error, fix it in the future. allocate(total_masses(aero_state_n_part(aero_state))) allocate(H2O_masses(aero_state_n_part(aero_state))) allocate(H2O_frac(aero_state_n_part(aero_state))) @@ -140,10 +131,10 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, if (aero_state%apa%particle(i_part)%frozen) then cycle end if - if (H2O_frac(i_part) < 1e-2) then + if (H2O_frac(i_part) < const%imf_water_threshold) then cycle end if - if (env_state_final%temp .le. & + if (env_state%temp .le. & aero_state%apa%particle(i_part)%imf_temperature) then aero_state%apa%particle(i_part)%frozen = .TRUE. aero_state%apa%particle(i_part)%den_ice = & @@ -156,43 +147,36 @@ subroutine immersion_freezing_singular(aero_state, aero_data, env_state_initial, deallocate(H2O_masses) deallocate(H2O_frac) - end subroutine immersion_freezing_singular + end subroutine ice_nucleation_immersion_freezing_singular !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applys the binned-tau leaping algorithm for speeding up. - subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_initial, & - env_state_final, del_t, immersion_freezing_scheme_type, freezing_rate) + subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data,& + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final + !> Environment state. + type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t integer :: i_part, i_bin, i_class, n_bins, n_class - real(kind=dp) :: tmp integer, intent(in) :: immersion_freezing_scheme_type real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs - real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: p_freeze, p_frozen + real(kind=dp) :: p_freeze real(kind=dp) :: p_freeze_max, radius_max, diameter_max - logical :: freeze_thisTime - integer :: n_entry, ind, spec_bin = 13 integer :: k_th, n_parts_in_bin - real(kind=dp) :: aerosol_dry_radius, aerosol_radius, rand + real(kind=dp) :: rand real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) integer :: i_spec_max @@ -208,25 +192,25 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in total_masses = aero_state_masses(aero_state, aero_data) H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) H2O_frac = H2O_masses / total_masses - pvs = env_state_saturated_vapor_pressure_water(env_state_final%temp) - pis = env_state_saturated_vapor_pressure_ice(env_state_final%temp) + pvs = env_state_saturated_vapor_pressure_water(env_state%temp) + pis = env_state_saturated_vapor_pressure_ice(env_state%temp) a_w_ice = pis / pvs if (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + call ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) endif n_bins = aero_sorted_n_bin(aero_state%aero_sorted) n_class = aero_sorted_n_class(aero_state%aero_sorted) - loop_count = 0 loop_bins: do i_bin = 1, n_bins loop_classes: do i_class = 1, n_class - n_parts_in_bin = integer_varray_n_entry(aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) + n_parts_in_bin = integer_varray_n_entry(& + aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) diameter_max = radius_max * 2 if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_max(diameter_max, p_freeze_max, aero_data, j_het_max, del_t) + p_freeze_max = ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) else if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze_max = 1 - exp(freezing_rate * del_t) @@ -239,17 +223,16 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in if (k_th <= 0) then EXIT loop_choosed_particles endif - loop_count = loop_count + 1 i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) if (aero_state%apa%particle(i_part)%frozen) then cycle end if - if (H2O_frac(i_part) < 1e-2) then + if (H2O_frac(i_part) < const%imf_water_threshold) then cycle end if if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + p_freeze = ABIFM_Pfrz_particle(i_part, aero_state, aero_data, a_w_ice, del_t) call warn_assert_msg(301184565, p_freeze .le. p_freeze_max,& "p_freeze > p_freeze_max.") rand = pmc_random() @@ -275,15 +258,15 @@ subroutine immersion_freezing_time_dependent(aero_state, aero_data, env_state_in deallocate(H2O_masses) deallocate(H2O_frac) - end subroutine immersion_freezing_time_dependent + end subroutine ice_nucleation_immersion_freezing_time_dependent !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applies the naive algorithm that checks each particle. - subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state_initial, env_state_final, del_t, & + subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & + env_state, del_t, & immersion_freezing_scheme_type, & freezing_rate) @@ -291,27 +274,23 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final + !> Environment state. + type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t !> Type of the immersion freezing scheme integer, intent(in) :: immersion_freezing_scheme_type integer :: i_part - real(kind=dp) :: tmp real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs - real(kind=dp) :: p_freeze, p_frozen + real(kind=dp) :: p_freeze = 0 real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) real(kind=dp) :: rand - integer :: clock_start, clock_end + ! FIXME: Do this to avoid compiler warning/error, fix it in the future. allocate(total_masses(aero_state_n_part(aero_state))) allocate(H2O_masses(aero_state_n_part(aero_state))) allocate(H2O_frac(aero_state_n_part(aero_state))) @@ -320,18 +299,18 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) H2O_frac = H2O_masses / total_masses - pvs = env_state_saturated_vapor_pressure_water(env_state_final%temp) - pis = env_state_saturated_vapor_pressure_ice(env_state_final%temp) + pvs = env_state_saturated_vapor_pressure_water(env_state%temp) + pis = env_state_saturated_vapor_pressure_ice(env_state%temp) a_w_ice = pis / pvs do i_part = 1, aero_state_n_part(aero_state) if (aero_state%apa%particle(i_part)%frozen) cycle - if (H2O_frac(i_part) < 1e-2) cycle + if (H2O_frac(i_part) < const%imf_water_threshold) cycle rand = pmc_random() if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then - call ABIFM_particle(i_part, p_freeze, aero_state, aero_data, a_w_ice, del_t) + p_freeze = ABIFM_Pfrz_particle(i_part, aero_state, aero_data, a_w_ice, del_t) else if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze = 1 - exp(freezing_rate * del_t) @@ -350,43 +329,39 @@ subroutine immersion_freezing_time_dependent_naive(aero_state, aero_data, & deallocate(H2O_frac) - end subroutine immersion_freezing_time_dependent_naive + end subroutine ice_nucleation_immersion_freezing_time_dependent_naive !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> This subroutine simulates the melting process.(Set frozen = .False. !> for each particle once the temperature is higher than water freezing !> tempearture) - subroutine melting(aero_state, aero_data, env_state_initial, & - env_state_final) + subroutine ice_nucleation_melting(aero_state, aero_data, env_state) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state at the start of the timestep. - type(env_state_t), intent(in) :: env_state_initial - !> Environment state at the end of the timestep. The rel_humid - !> value will be ignored and overwritten with a new value. - type(env_state_t), intent(inout) :: env_state_final + !> Environment state. + type(env_state_t), intent(inout) :: env_state integer :: i_part - if (env_state_final%temp > const%water_freeze_temp) then + if (env_state%temp > const%water_freeze_temp) then do i_part = 1, aero_state_n_part(aero_state) aero_state%apa%particle(i_part)%frozen = .false. - aero_state%apa%particle(i_part)%den_ice = -9999d0 - aero_state%apa%particle(i_part)%ice_shape_phi = -9999d0 + aero_state%apa%particle(i_part)%den_ice = const%nan + aero_state%apa%particle(i_part)%ice_shape_phi = const%nan end do end if - end subroutine melting + end subroutine ice_nucleation_melting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Calculating the freezing probability for one particle using ABIFM + !> Calculating the freezing probability for the particle (i_part) using ABIFM !> method (Knopf et al.,2013) - subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & + real(kind=dp) function ABIFM_Pfrz_particle(i_part, aero_state, aero_data, & a_w_ice, del_t) implicit none @@ -400,8 +375,6 @@ subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & real(kind=dp), intent(in) :: a_w_ice !> Time interval. real(kind=dp), intent(in) :: del_t - !> Freezing probability of the particle with index i_part - real(kind=dp), intent(out) :: P_freezing real(kind=dp) :: aerosol_diameter real(kind=dp) :: immersed_surface_area @@ -409,7 +382,6 @@ subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & real(kind=dp) :: surface_ratio real(kind=dp) :: abifm_m, abifm_c real(kind=dp) :: j_het, j_het_x_aera - real(kind=dp) :: pvs, pis integer :: i_spec aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) @@ -441,20 +413,18 @@ subroutine ABIFM_particle(i_part, P_freezing, aero_state, aero_data, & end do - P_freezing = 1 - exp(-j_het_x_aera * del_t) + ABIFM_Pfrz_particle = 1 - exp(-j_het_x_aera * del_t) - end subroutine ABIFM_particle + end function ABIFM_Pfrz_particle !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Calculating the heterogeneous ice nucleation rate coefficient !> for each species, and fining the species having the largest rate. - subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) + subroutine ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) implicit none !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Aerosol state. - type(aero_state_t), intent(in) :: aero_state !> The water activity w.r.t. ice. real(kind=dp), intent(in) :: a_w_ice !> The index of the maximum J_het species. @@ -466,7 +436,7 @@ subroutine ABIFM_max_spec(aero_data, aero_state, a_w_ice, i_spec_max, j_het_max) real(kind=dp) :: j_het integer :: i_spec - j_het_max = -9999.0 + j_het_max = const%nan do i_spec = 1,aero_data_n_spec(aero_data) if (i_spec == aero_data%i_water) cycle abifm_m = aero_data%abifm_m(i_spec) @@ -485,7 +455,7 @@ end subroutine ABIFM_max_spec !> Calculating the maximum freezing probability for particles in !> one bin using ABIFM method (Knopf et al.,2013). Only used by !> the binned-tau leaping algorithm. - subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) + real(kind=dp) function ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) implicit none !> Aerosol data. type(aero_data_t), intent(in) :: aero_data @@ -495,16 +465,13 @@ subroutine ABIFM_max(diameter_max, P_freezing, aero_data, j_het_max, del_t) real(kind=dp), intent(in) :: del_t !> Maximum J_het among all species. real(kind=dp), intent(in) :: j_het_max - !> Maximum freezing probability. - real(kind=dp), intent(out) :: P_freezing real(kind=dp) :: immersed_surface_area - integer :: i_spec immersed_surface_area = const%pi * diameter_max **2 - P_freezing = 1 - exp(-j_het_max * immersed_surface_area * del_t) + ABIFM_Pfrz_max = 1 - exp(-j_het_max * immersed_surface_area * del_t) - end subroutine ABIFM_max + end function ABIFM_Pfrz_max !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/src/run_part.F90 b/src/run_part.F90 index 931ebcba9..1b25e382b 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -241,9 +241,9 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & end if ! initialize the immersion freezing temperature for Singular scheme if (run_part_opt%do_immersion_freezing .and. & - (run_part_opt%immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_SINGULAR)) then - call singular_initialize(aero_state, aero_data) + (run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_SINGULAR)) then + call ice_nucleation_singular_initialize(aero_state, aero_data) end if i_cur = 1 @@ -698,30 +698,28 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & call spec_file_read_logical(file, 'do_immersion_freezing', & run_part_opt%do_immersion_freezing) - if (run_part_opt%do_immersion_freezing) then + if (run_part_opt%do_immersion_freezing) then call spec_file_read_immersion_freezing_scheme_type(file, & - run_part_opt%immersion_freezing_scheme_type) - - if (run_part_opt%immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_CONST) then - call spec_file_read_real(file, 'freezing_rate', & - run_part_opt%freezing_rate) + run_part_opt%immersion_freezing_scheme_type) - else if (run_part_opt%immersion_freezing_scheme_type .eq.& - IMMERSION_FREEZING_SCHEME_ABIFM) then - continue + if (run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST) then + call spec_file_read_real(file, 'freezing_rate', & + run_part_opt%freezing_rate) - else if (run_part_opt%immersion_freezing_scheme_type .eq.& - IMMERSION_FREEZING_SCHEME_SINGULAR) then - continue - else - call assert_msg(121370299, .false., & - "Error type of immersion freezing scheme") - + else if (run_part_opt%immersion_freezing_scheme_type .eq.& + IMMERSION_FREEZING_SCHEME_ABIFM) then + continue - endif - endif + else if (run_part_opt%immersion_freezing_scheme_type .eq.& + IMMERSION_FREEZING_SCHEME_SINGULAR) then + continue + else + call assert_msg(121370299, .false., & + "Error type of immersion freezing scheme") + endif + endif call spec_file_read_integer(file, 'rand_init', rand_init) call spec_file_read_logical(file, 'allow_doubling', & @@ -893,10 +891,10 @@ subroutine run_part_timestep(scenario, env_state, aero_data, aero_state, & progress_n_nuc = progress_n_nuc + n_nuc end if if (run_part_opt%do_immersion_freezing) then - call immersion_freezing(aero_state, aero_data, old_env_state, & - env_state, run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & + call ice_nucleation_immersion_freezing(aero_state, aero_data, env_state, & + run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & run_part_opt%freezing_rate) - call melting(aero_state, aero_data, old_env_state, env_state) + call ice_nucleation_melting(aero_state, aero_data, env_state) end if if (run_part_opt%do_coagulation) then if (run_part_opt%parallel_coag_type & From d2177976ecb34a203f126c237a236987fe67e9b7 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sat, 1 Feb 2025 21:45:55 -0600 Subject: [PATCH 103/127] modifications following Jeff's comments --- src/aero_state.F90 | 13 +++++-------- src/extract_aero_particles.F90 | 2 +- src/ice_nucleation.F90 | 20 ++++++++++---------- test/freezing/test_freezing_theoretical.F90 | 16 ++++++++-------- 4 files changed, 24 insertions(+), 27 deletions(-) diff --git a/src/aero_state.F90 b/src/aero_state.F90 index b3c590f16..e86f741f1 100644 --- a/src/aero_state.F90 +++ b/src/aero_state.F90 @@ -1357,21 +1357,18 @@ real(kind=dp) function aero_state_frozen_fraction(aero_state, aero_data) type(aero_data_t), intent(in) :: aero_data real(kind=dp) :: particle_num_concs(aero_state_n_part(aero_state)) - integer :: particle_frozen(aero_state_n_part(aero_state)) + logical :: particle_frozen(aero_state_n_part(aero_state)) integer :: i_part particle_num_concs = aero_state_num_concs(aero_state, aero_data) do i_part = 1,aero_state_n_part(aero_state) - if (aero_state%apa%particle(i_part)%frozen) then - particle_frozen(i_part) = 1 - else - particle_frozen(i_part) = 0 - end if + particle_frozen(i_part) = aero_state%apa%particle(i_part)%frozen end do - aero_state_frozen_fraction = sum(particle_num_concs * particle_frozen) /& - sum(particle_num_concs) + + aero_state_frozen_fraction = sum(pack(particle_num_concs, particle_frozen)) & + / sum(particle_num_concs) end function aero_state_frozen_fraction diff --git a/src/extract_aero_particles.F90 b/src/extract_aero_particles.F90 index d960d00cb..936dc3689 100644 --- a/src/extract_aero_particles.F90 +++ b/src/extract_aero_particles.F90 @@ -103,7 +103,7 @@ program extract_aero_particles else write(out_unit, '(a,i1)', advance='no') ' ', 0 end if - write(out_unit, *) '' + write(out_unit, '(a)') '' end do call close_file(out_unit) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 3d55b9573..aa409882c 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -232,7 +232,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat end if if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then - p_freeze = ABIFM_Pfrz_particle(i_part, aero_state, aero_data, a_w_ice, del_t) + p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) call warn_assert_msg(301184565, p_freeze .le. p_freeze_max,& "p_freeze > p_freeze_max.") rand = pmc_random() @@ -310,7 +310,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, ae if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then - p_freeze = ABIFM_Pfrz_particle(i_part, aero_state, aero_data, a_w_ice, del_t) + p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) else if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze = 1 - exp(freezing_rate * del_t) @@ -361,16 +361,14 @@ end subroutine ice_nucleation_melting !> Calculating the freezing probability for the particle (i_part) using ABIFM !> method (Knopf et al.,2013) - real(kind=dp) function ABIFM_Pfrz_particle(i_part, aero_state, aero_data, & + real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & a_w_ice, del_t) implicit none - !> The index of particle to be calculated. - integer, intent(in) :: i_part + !> Aerosol particle. + type(aero_particle_t), intent(in) :: aero_particle !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Aerosol state. - type(aero_state_t), intent(in) :: aero_state !> The water activity w.r.t. ice. real(kind=dp), intent(in) :: a_w_ice !> Time interval. @@ -384,7 +382,8 @@ real(kind=dp) function ABIFM_Pfrz_particle(i_part, aero_state, aero_data, & real(kind=dp) :: j_het, j_het_x_aera integer :: i_spec - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + !aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + aerosol_diameter = aero_particle_dry_diameter(aero_particle, aero_data) immersed_surface_area = const%pi * aerosol_diameter **2 @@ -394,7 +393,8 @@ real(kind=dp) function ABIFM_Pfrz_particle(i_part, aero_state, aero_data, & if (i_spec == aero_data%i_water) then cycle end if - total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + !total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) + total_vol = total_vol + aero_particle%vol(i_spec) end do j_het_x_aera = 0d0 @@ -406,7 +406,7 @@ real(kind=dp) function ABIFM_Pfrz_particle(i_part, aero_state, aero_data, & j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 - surface_ratio = aero_state%apa%particle(i_part)%vol(i_spec) / total_vol + surface_ratio = aero_particle%vol(i_spec) / total_vol j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & surface_ratio diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index a72eebd7c..f679d6e88 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -17,21 +17,21 @@ program theoretical_freezing use pmc_env_state implicit none - !> Temperature (unit: Kelvin) + ! Temperature (unit: Kelvin) real(kind=dp), parameter :: temperature = 253.15 - !> Time duration (unit: s) + ! Time duration (unit: s) real(kind=dp), parameter :: total_time = 600 - !> Output time interval (unit: s) + ! Output time interval (unit: s) real(kind=dp), parameter :: out_dt = 10 - !> ABIFM parameters (m and c) for species 1. + ! ABIFM parameters (m and c) for species 1. real(kind=dp), parameter :: abifm_m_1 = 17.62106, abifm_c_1 = 1.42411 - !> ABIFM parameters (m and c) for species 2. + ! ABIFM parameters (m and c) for species 2. real(kind=dp), parameter :: abifm_m_2 = 54.48075, abifm_c_2 = -10.66873 - !> The ratio of total surface for species 1 and 2. + ! The ratio of total surface for species 1 and 2. real(kind=dp), parameter :: s_ratio_1 = 0.5, s_ratio_2 = 0.5 - !> Dry diameter of INPs (unit: m) + ! Dry diameter of INPs (unit: m) real(kind=dp), parameter :: Dp_dry = 1d-6 - !> The name of output file + ! The name of output file character(len=*), parameter :: out_filename = "out/freezing_theoretical_data.txt" integer, parameter :: out_unit = 65 real(kind=dp) :: time, Jhet_1, Jhet_2, Jhet_mean, Phi_mean, frozen_fraction From 9225cd1ebf8f6ae4f5b026dd94f00106ae524b3e Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Tue, 4 Feb 2025 20:08:58 -0600 Subject: [PATCH 104/127] Improve the rand_geometric function, link to GSL library --- src/aero_particle.F90 | 4 +- src/ice_nucleation.F90 | 7 ++-- src/rand.F90 | 93 +++++++++++++++++++++++++++++------------- src/rand_gsl.c | 15 +++++++ 4 files changed, 87 insertions(+), 32 deletions(-) diff --git a/src/aero_particle.F90 b/src/aero_particle.F90 index 8a4b9d77f..fb6712af2 100644 --- a/src/aero_particle.F90 +++ b/src/aero_particle.F90 @@ -999,7 +999,9 @@ subroutine aero_particle_coagulate(aero_particle_1, & aero_particle_2%greatest_create_time) aero_particle_new%frozen = aero_particle_1%frozen .OR. & aero_particle_2%frozen - !!! Not true, need further discussion + + ! Assumption: If two particles coagulate, the overall freezing temperature + ! is determined by the particle with higher freezing temperature. aero_particle_new%imf_temperature = max(aero_particle_1%imf_temperature, & aero_particle_2%imf_temperature) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index aa409882c..c6ef51fae 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -181,7 +181,8 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat H2O_frac(:) integer :: i_spec_max real(kind=dp) :: j_het_max - integer :: rand_geometric + integer :: rand_geo + allocate(total_masses(aero_state_n_part(aero_state))) allocate(H2O_masses(aero_state_n_part(aero_state))) @@ -218,8 +219,8 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat k_th = n_parts_in_bin + 1 loop_choosed_particles: do while(.TRUE.) - rand_geometric = pmc_random_geometric(p_freeze_max) - k_th = k_th - rand_geometric + rand_geo = rand_geometric(p_freeze_max) + k_th = k_th - rand_geo if (k_th <= 0) then EXIT loop_choosed_particles endif diff --git a/src/rand.F90 b/src/rand.F90 index 74bb41678..8a43dcacf 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -697,38 +697,75 @@ end subroutine uuid4_str !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Generate a random number in geometric distribution with the probability P - ! Reference: https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f - integer function pmc_random_geometric(P) - - implicit none - real(kind=dp) :: P, U, TINY - - TINY = 1.0D-12 - pmc_random_geometric = 0 - - call assert_msg(927129543, (P.GE.0.0D0).AND.(P.LE.1.0D0),& - "Range error") + !> Generate a Geometric-distributed random number with the given + !> probability. + !! + !! See https://en.wikipedia.org/wiki/Geometric_distribution and + !! https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f for + !! more details - IF (P.GT.0.9D0) THEN - pmc_random_geometric = pmc_random_geometric + 1 - U = pmc_random() - do while( U.GT.P ) - pmc_random_geometric = pmc_random_geometric + 1 - U = pmc_random() - enddo - ELSE - U = pmc_random() + integer function rand_geometric(p) + implicit none + !> Sample probability. + real(kind=dp), intent(in) :: p - IF (P.GT.TINY) THEN - pmc_random_geometric = 1 + INT( DLOG(U)/DLOG(1.0D0-P) ) - ELSE - pmc_random_geometric = 1 + INT(-DLOG(U)/P) - ENDIF - ENDIF +#ifdef PMC_USE_GSL + real(kind=c_double) :: p_c + integer(kind=c_int), target :: harvest + type(c_ptr) :: harvest_ptr + logical :: acceptable +#else + real(kind=dp) :: U, TINY +#endif - END FUNCTION pmc_random_geometric +#ifdef PMC_USE_GSL + interface + integer(kind=c_int) function pmc_rand_geometric_gsl(p, harvest) bind(c) + use iso_c_binding + real(kind=c_double), value :: p + type(c_ptr), value :: harvest + end function pmc_rand_geometric_gsl + end interface +#endif + call assert(386975305, p >= 0d0) + call assert(667756333, p <= 1d0) +#ifdef PMC_USE_GSL + p_c = real(p, kind=c_double) + harvest_ptr = c_loc(harvest) + acceptable = .false. + do while(.not. acceptable) + call rand_check_gsl(218328792, & + pmc_rand_geometric_gsl(p_c, harvest_ptr)) + rand_geometric = int(harvest) + if (rand_geometric .ge. 1) then + acceptable = .true. + end if + end do +#else + TINY = 1.0D-12 + rand_geometric = 0 + + call assert_msg(927129543, (P.ge.0.0D0).and.(P.le.1.0D0),& + "Range error") + + if (P.gt.0.9D0) then + rand_geometric = rand_geometric + 1 + U = pmc_random() + do while( U.gt.P ) + rand_geometric = rand_geometric + 1 + U = pmc_random() + enddo + else + U = pmc_random() + if (P.gt.TINY) then + rand_geometric = 1 + INT( DLOG(U)/DLOG(1.0D0-P) ) + else + rand_geometric = 1 + INT(-DLOG(U)/P) + endif + endif +#endif + end function rand_geometric !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! end module pmc_rand diff --git a/src/rand_gsl.c b/src/rand_gsl.c index db200abbf..179b927b6 100644 --- a/src/rand_gsl.c +++ b/src/rand_gsl.c @@ -150,3 +150,18 @@ int pmc_rand_binomial_gsl(int n, double p, int *harvest) *harvest = gsl_ran_binomial(pmc_rand_gsl_rng, p, u); return PMC_RAND_GSL_SUCCESS; } + +/** \brief Generate a Geometric-distributed random integer. + * + * \param p The sample probability for the distribution. + * \param harvest A pointer to the generated random number. + * \return PMC_RAND_GSL_SUCCESS on success, otherwise an error code. + */ +int pmc_rand_geometric_gsl(double p, int *harvest) +{ + if (!pmc_rand_gsl_rng) { + return PMC_RAND_GSL_NOT_INIT; + } + *harvest = gsl_ran_geometric(pmc_rand_gsl_rng, p); + return PMC_RAND_GSL_SUCCESS; +} From 286c96a5dc18481fff91842d9d8d240f5f52fd31 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Wed, 19 Feb 2025 20:18:21 -0600 Subject: [PATCH 105/127] Modifications following Jeff's comments --- src/ice_nucleation.F90 | 35 ++++++++++------------------------- 1 file changed, 10 insertions(+), 25 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index c6ef51fae..c24941684 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -35,7 +35,6 @@ module pmc_ice_nucleation !> Main subroutine for immersion freezing simulation. subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & env_state, del_t, immersion_freezing_scheme_type, freezing_rate) - !do_coating, coating_spec, coating_ratio) implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -48,7 +47,7 @@ subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & !> Immersion freezing scheme type. integer, intent(in) :: immersion_freezing_scheme_type !> Freezing rate (only used for the constant rate scheme). - real(kind=dp) :: freezing_rate + real(kind=dp), intent(in) :: freezing_rate !> Call the immersion freezing subroutine according to the immersion @@ -89,9 +88,9 @@ subroutine ice_nucleation_singular_initialize(aero_state, aero_data) real(kind=dp) :: aerosol_diameter T0 = const%water_freeze_temp + a_INAS = -0.517 + b_INAS = 8.934 do i_part = 1, aero_state_n_part(aero_state) - a_INAS = -0.517 - b_INAS = 8.934 aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) S = const%pi * aerosol_diameter **2 p = pmc_random() @@ -166,10 +165,11 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t + !> Freezing rate (only used for the constant rate scheme). + real(kind=dp), intent(in) :: freezing_rate integer :: i_part, i_bin, i_class, n_bins, n_class integer, intent(in) :: immersion_freezing_scheme_type - real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs real(kind=dp) :: p_freeze @@ -266,10 +266,8 @@ end subroutine ice_nucleation_immersion_freezing_time_dependent !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applies the naive algorithm that checks each particle. - subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state, del_t, & - immersion_freezing_scheme_type, & - freezing_rate) + subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& + aero_data, env_state, del_t, immersion_freezing_scheme_type, freezing_rate) !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -281,9 +279,10 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, ae real(kind=dp), intent(in) :: del_t !> Type of the immersion freezing scheme integer, intent(in) :: immersion_freezing_scheme_type + !> Freezing rate (only used for the constant rate scheme). + real(kind=dp), intent(in) :: freezing_rate integer :: i_part - real(kind=dp) :: freezing_rate real(kind=dp) :: a_w_ice, pis, pvs real(kind=dp) :: p_freeze = 0 real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & @@ -383,35 +382,21 @@ real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & real(kind=dp) :: j_het, j_het_x_aera integer :: i_spec - !aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) aerosol_diameter = aero_particle_dry_diameter(aero_particle, aero_data) - immersed_surface_area = const%pi * aerosol_diameter **2 - total_vol = 0d0 - do i_spec = 1,aero_data_n_spec(aero_data) - if (i_spec == aero_data%i_water) then - cycle - end if - !total_vol = total_vol + aero_state%apa%particle(i_part)%vol(i_spec) - total_vol = total_vol + aero_particle%vol(i_spec) - end do + total_vol = aero_particle_dry_volume(aero_particle, aero_data) j_het_x_aera = 0d0 do i_spec = 1,aero_data_n_spec(aero_data) if (i_spec == aero_data%i_water) cycle - abifm_m = aero_data%abifm_m(i_spec) abifm_c = aero_data%abifm_c(i_spec) - - j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 surface_ratio = aero_particle%vol(i_spec) / total_vol j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & surface_ratio - - end do ABIFM_Pfrz_particle = 1 - exp(-j_het_x_aera * del_t) From 8afaf9d0a207d47ba93d98bc961368845586fbda Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sat, 14 Jun 2025 13:02:27 -0500 Subject: [PATCH 106/127] change variable name (typo fix) j_het_x_aera -> j_het_x_area --- src/ice_nucleation.F90 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index c24941684..f1211aed9 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -379,7 +379,7 @@ real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & real(kind=dp) :: total_vol real(kind=dp) :: surface_ratio real(kind=dp) :: abifm_m, abifm_c - real(kind=dp) :: j_het, j_het_x_aera + real(kind=dp) :: j_het, j_het_x_area integer :: i_spec aerosol_diameter = aero_particle_dry_diameter(aero_particle, aero_data) @@ -388,18 +388,18 @@ real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & total_vol = 0d0 total_vol = aero_particle_dry_volume(aero_particle, aero_data) - j_het_x_aera = 0d0 + j_het_x_area = 0d0 do i_spec = 1,aero_data_n_spec(aero_data) if (i_spec == aero_data%i_water) cycle abifm_m = aero_data%abifm_m(i_spec) abifm_c = aero_data%abifm_c(i_spec) j_het = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 surface_ratio = aero_particle%vol(i_spec) / total_vol - j_het_x_aera = j_het_x_aera + j_het * immersed_surface_area * & + j_het_x_area = j_het_x_area + j_het * immersed_surface_area * & surface_ratio end do - ABIFM_Pfrz_particle = 1 - exp(-j_het_x_aera * del_t) + ABIFM_Pfrz_particle = 1 - exp(-j_het_x_area * del_t) end function ABIFM_Pfrz_particle From 3477809f62cdafb6057fcf534c17d534d7ce5efc Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Wed, 6 Aug 2025 14:22:43 -0500 Subject: [PATCH 107/127] fix whitespace issues --- src/constants.F90 | 2 +- src/env_state.F90 | 2 +- src/ice_nucleation.F90 | 48 +++++++++++++++++++++--------------------- src/rand.F90 | 10 ++++----- src/run_part.F90 | 2 +- 5 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/constants.F90 b/src/constants.F90 index 95c11fa60..041187ca0 100644 --- a/src/constants.F90 +++ b/src/constants.F90 @@ -63,7 +63,7 @@ module pmc_constants real(kind=dp) :: air_std_press = 101325d0 !> Dynamic viscosity of air (kg m^{-1} s^{-1}). real(kind=dp) :: air_dyn_visc = 1.78d-5 - !> Reference ice density (Kg m^{-3}). + !> Reference ice density (kg m^{-3}). real(kind=dp) :: reference_ice_density = 920d0 !> Immersion freezing water mass ratio threshold. real(kind=dp) :: imf_water_threshold = 1d-2 diff --git a/src/env_state.F90 b/src/env_state.F90 index 5f1009b19..dbbc4dd5d 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -676,7 +676,7 @@ end function env_state_saturated_vapor_pressure_water !> Compute saturated vapor pressure (units : Pa) with respective to ice !> Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) - + !> Temperature (K) real(kind=dp), intent(in) :: T diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index f1211aed9..783d537a0 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -40,7 +40,7 @@ subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state. + !> Environment state. type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t @@ -88,7 +88,7 @@ subroutine ice_nucleation_singular_initialize(aero_state, aero_data) real(kind=dp) :: aerosol_diameter T0 = const%water_freeze_temp - a_INAS = -0.517 + a_INAS = -0.517 b_INAS = 8.934 do i_part = 1, aero_state_n_part(aero_state) aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) @@ -111,13 +111,13 @@ subroutine ice_nucleation_immersion_freezing_singular(aero_state, aero_data,& type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state. + !> Environment state. type(env_state_t), intent(inout) :: env_state real(kind=dp), allocatable :: H2O_masses(:), total_masses(:), & H2O_frac(:) integer :: i_part - + ! FIXME: Do this to avoid compiler warning/error, fix it in the future. allocate(total_masses(aero_state_n_part(aero_state))) allocate(H2O_masses(aero_state_n_part(aero_state))) @@ -151,7 +151,7 @@ end subroutine ice_nucleation_immersion_freezing_singular !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), - !> deciding whether to freeze for each particle. Run in each time step. + !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applys the binned-tau leaping algorithm for speeding up. subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data,& env_state, del_t, immersion_freezing_scheme_type, freezing_rate) @@ -161,7 +161,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state. + !> Environment state. type(env_state_t), intent(inout) :: env_state !> Total time to integrate. real(kind=dp), intent(in) :: del_t @@ -243,7 +243,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat const%reference_ice_density aero_state%apa%particle(i_part)%ice_shape_phi = 1d0 - endif + endif else aero_state%apa%particle(i_part)%frozen = .TRUE. aero_state%apa%particle(i_part)%den_ice = & @@ -254,17 +254,17 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat enddo loop_choosed_particles enddo loop_classes enddo loop_bins - + deallocate(total_masses) deallocate(H2O_masses) deallocate(H2O_frac) - + end subroutine ice_nucleation_immersion_freezing_time_dependent !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), - !> deciding whether to freeze for each particle. Run in each time step. + !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applies the naive algorithm that checks each particle. subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& aero_data, env_state, del_t, immersion_freezing_scheme_type, freezing_rate) @@ -298,7 +298,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& total_masses = aero_state_masses(aero_state, aero_data) H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) H2O_frac = H2O_masses / total_masses - + pvs = env_state_saturated_vapor_pressure_water(env_state%temp) pis = env_state_saturated_vapor_pressure_ice(env_state%temp) a_w_ice = pis / pvs @@ -307,7 +307,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& if (aero_state%apa%particle(i_part)%frozen) cycle if (H2O_frac(i_part) < const%imf_water_threshold) cycle rand = pmc_random() - + if (immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_ABIFM) then p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) @@ -342,10 +342,10 @@ subroutine ice_nucleation_melting(aero_state, aero_data, env_state) type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data - !> Environment state. + !> Environment state. type(env_state_t), intent(inout) :: env_state - integer :: i_part + integer :: i_part if (env_state%temp > const%water_freeze_temp) then do i_part = 1, aero_state_n_part(aero_state) @@ -359,11 +359,11 @@ end subroutine ice_nucleation_melting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Calculating the freezing probability for the particle (i_part) using ABIFM + !> Calculating the freezing probability for the particle (i_part) using ABIFM !> method (Knopf et al.,2013) real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & a_w_ice, del_t) - + implicit none !> Aerosol particle. type(aero_particle_t), intent(in) :: aero_particle @@ -381,10 +381,10 @@ real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & real(kind=dp) :: abifm_m, abifm_c real(kind=dp) :: j_het, j_het_x_area integer :: i_spec - + aerosol_diameter = aero_particle_dry_diameter(aero_particle, aero_data) immersed_surface_area = const%pi * aerosol_diameter **2 - + total_vol = 0d0 total_vol = aero_particle_dry_volume(aero_particle, aero_data) @@ -398,14 +398,14 @@ real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & j_het_x_area = j_het_x_area + j_het * immersed_surface_area * & surface_ratio end do - + ABIFM_Pfrz_particle = 1 - exp(-j_het_x_area * del_t) end function ABIFM_Pfrz_particle !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Calculating the heterogeneous ice nucleation rate coefficient + !> Calculating the heterogeneous ice nucleation rate coefficient !> for each species, and fining the species having the largest rate. subroutine ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) implicit none @@ -421,8 +421,8 @@ subroutine ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) real(kind=dp) :: abifm_m, abifm_c real(kind=dp) :: j_het integer :: i_spec - - j_het_max = const%nan + + j_het_max = const%nan do i_spec = 1,aero_data_n_spec(aero_data) if (i_spec == aero_data%i_water) cycle abifm_m = aero_data%abifm_m(i_spec) @@ -438,7 +438,7 @@ end subroutine ABIFM_max_spec !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Calculating the maximum freezing probability for particles in + !> Calculating the maximum freezing probability for particles in !> one bin using ABIFM method (Knopf et al.,2013). Only used by !> the binned-tau leaping algorithm. real(kind=dp) function ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) @@ -453,7 +453,7 @@ real(kind=dp) function ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) real(kind=dp), intent(in) :: j_het_max real(kind=dp) :: immersed_surface_area - + immersed_surface_area = const%pi * diameter_max **2 ABIFM_Pfrz_max = 1 - exp(-j_het_max * immersed_surface_area * del_t) diff --git a/src/rand.F90 b/src/rand.F90 index 8a43dcacf..7a596bea1 100644 --- a/src/rand.F90 +++ b/src/rand.F90 @@ -697,11 +697,11 @@ end subroutine uuid4_str !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Generate a Geometric-distributed random number with the given + !> Generate a Geometric-distributed random number with the given !> probability. !! !! See https://en.wikipedia.org/wiki/Geometric_distribution and - !! https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f for + !! https://www.ucl.ac.uk/~ucakarc/work/software/randgen.f for !! more details integer function rand_geometric(p) @@ -744,15 +744,15 @@ end function pmc_rand_geometric_gsl #else TINY = 1.0D-12 rand_geometric = 0 - + call assert_msg(927129543, (P.ge.0.0D0).and.(P.le.1.0D0),& "Range error") if (P.gt.0.9D0) then - rand_geometric = rand_geometric + 1 + rand_geometric = rand_geometric + 1 U = pmc_random() do while( U.gt.P ) - rand_geometric = rand_geometric + 1 + rand_geometric = rand_geometric + 1 U = pmc_random() enddo else diff --git a/src/run_part.F90 b/src/run_part.F90 index 1b25e382b..345c57810 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -699,7 +699,7 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & run_part_opt%do_immersion_freezing) if (run_part_opt%do_immersion_freezing) then - + call spec_file_read_immersion_freezing_scheme_type(file, & run_part_opt%immersion_freezing_scheme_type) From a3a6fa648e15f3421b6678928c2dfdb102d9af41 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 21 Aug 2025 14:49:29 -0500 Subject: [PATCH 108/127] Apply the temperature threshold for immersion freezing (<=0 degree celsius) --- src/ice_nucleation.F90 | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index f1211aed9..360604990 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -52,22 +52,24 @@ subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & !> Call the immersion freezing subroutine according to the immersion !> freezing scheme. - if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & - .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then - if (do_speedup) then - call ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + if (env_state%temp .le. const%water_freeze_temp) then + if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & + .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then + if (do_speedup) then + call ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data, & + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + else + call ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + end if + else if (immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_SINGULAR) then + call ice_nucleation_immersion_freezing_singular(aero_state, aero_data, & + env_state) else - call ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) - end if - else if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_SINGULAR) then - call ice_nucleation_immersion_freezing_singular(aero_state, aero_data, & - env_state) - else - call assert_msg(121370299, .false., & - 'Error type of immersion freezing scheme') + call assert_msg(121370299, .false., & + 'Error type of immersion freezing scheme') + endif endif end subroutine ice_nucleation_immersion_freezing From 195690a21fd597b5bb4accba8c1d40c8490e32d4 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Wed, 27 Aug 2025 14:17:19 -0500 Subject: [PATCH 109/127] Rename tchem.yml to tchem.yml.temporarily_off --- .github/workflows/{tchem.yml => tchem.yml.temporarily_off} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{tchem.yml => tchem.yml.temporarily_off} (100%) diff --git a/.github/workflows/tchem.yml b/.github/workflows/tchem.yml.temporarily_off similarity index 100% rename from .github/workflows/tchem.yml rename to .github/workflows/tchem.yml.temporarily_off From 085ad816fbe5e843bf598dd3edaccaacafb64aee Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Thu, 28 Aug 2025 18:46:13 -0500 Subject: [PATCH 110/127] fortitude changes. break long lines --- src/ice_nucleation.F90 | 97 ++++++++++++++++++++++-------------------- 1 file changed, 52 insertions(+), 45 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index c427d1df3..859af5ef1 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -34,8 +34,8 @@ module pmc_ice_nucleation !> Main subroutine for immersion freezing simulation. subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) - implicit none + env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. @@ -49,23 +49,24 @@ subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & !> Freezing rate (only used for the constant rate scheme). real(kind=dp), intent(in) :: freezing_rate - !> Call the immersion freezing subroutine according to the immersion !> freezing scheme. - if (env_state%temp .le. const%water_freeze_temp) then - if ((immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) & - .OR. (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_CONST)) then + if (env_state%temp <= const%water_freeze_temp) then + if ((immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_ABIFM) & + .OR. (immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_CONST)) then if (do_speedup) then - call ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + call ice_nucleation_immersion_freezing_time_dependent( & + aero_state, aero_data, env_state, del_t, & + immersion_freezing_scheme_type, freezing_rate) else - call ice_nucleation_immersion_freezing_time_dependent_naive(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + call ice_nucleation_immersion_freezing_time_dependent_naive( & + aero_state, aero_data, env_state, del_t, & + immersion_freezing_scheme_type, freezing_rate) end if - else if (immersion_freezing_scheme_type .eq. & - IMMERSION_FREEZING_SCHEME_SINGULAR) then - call ice_nucleation_immersion_freezing_singular(aero_state, aero_data, & - env_state) + else if (immersion_freezing_scheme_type == & + IMMERSION_FREEZING_SCHEME_SINGULAR) then + call ice_nucleation_immersion_freezing_singular(aero_state, & + aero_data, env_state) else call assert_msg(121370299, .false., & 'Error type of immersion freezing scheme') @@ -79,7 +80,7 @@ end subroutine ice_nucleation_immersion_freezing !> Initialization for the sigular scheme, sampling the freezing temperature !> for each particles. subroutine ice_nucleation_singular_initialize(aero_state, aero_data) - implicit none + !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. @@ -93,7 +94,8 @@ subroutine ice_nucleation_singular_initialize(aero_state, aero_data) a_INAS = -0.517 b_INAS = 8.934 do i_part = 1, aero_state_n_part(aero_state) - aerosol_diameter = aero_particle_dry_diameter(aero_state%apa%particle(i_part), aero_data) + aerosol_diameter = aero_particle_dry_diameter( & + aero_state%apa%particle(i_part), aero_data) S = const%pi * aerosol_diameter **2 p = pmc_random() temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) @@ -108,7 +110,7 @@ end subroutine ice_nucleation_singular_initialize !> particle. Run in each time step. subroutine ice_nucleation_immersion_freezing_singular(aero_state, aero_data,& env_state) - implicit none + !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. @@ -126,7 +128,7 @@ subroutine ice_nucleation_immersion_freezing_singular(aero_state, aero_data,& allocate(H2O_frac(aero_state_n_part(aero_state))) total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_masses = aero_state_masses(aero_state, aero_data, include=["H2O"]) H2O_frac = H2O_masses / total_masses do i_part = 1, aero_state_n_part(aero_state) if (aero_state%apa%particle(i_part)%frozen) then @@ -135,7 +137,7 @@ subroutine ice_nucleation_immersion_freezing_singular(aero_state, aero_data,& if (H2O_frac(i_part) < const%imf_water_threshold) then cycle end if - if (env_state%temp .le. & + if (env_state%temp <= & aero_state%apa%particle(i_part)%imf_temperature) then aero_state%apa%particle(i_part)%frozen = .TRUE. aero_state%apa%particle(i_part)%den_ice = & @@ -155,10 +157,10 @@ end subroutine ice_nucleation_immersion_freezing_singular !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applys the binned-tau leaping algorithm for speeding up. - subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_data,& - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, & + aero_data, env_state, del_t, immersion_freezing_scheme_type, & + freezing_rate) - implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. @@ -193,12 +195,12 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat call aero_state_sort(aero_state, aero_data) total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_masses = aero_state_masses(aero_state, aero_data, include=["H2O"]) H2O_frac = H2O_masses / total_masses pvs = env_state_saturated_vapor_pressure_water(env_state%temp) pis = env_state_saturated_vapor_pressure_ice(env_state%temp) a_w_ice = pis / pvs - if (immersion_freezing_scheme_type .eq. IMMERSION_FREEZING_SCHEME_ABIFM) then + if (immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) endif @@ -211,10 +213,11 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat aero_state%aero_sorted%size_class%inverse(i_bin, i_class)) radius_max = aero_state%aero_sorted%bin_grid%edges(i_bin + 1) diameter_max = radius_max * 2 - if (immersion_freezing_scheme_type .eq. & + if (immersion_freezing_scheme_type == & IMMERSION_FREEZING_SCHEME_ABIFM) then - p_freeze_max = ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) - else if (immersion_freezing_scheme_type .eq. & + p_freeze_max = ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, & + del_t) + else if (immersion_freezing_scheme_type == & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze_max = 1 - exp(freezing_rate * del_t) endif @@ -226,17 +229,19 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, aero_dat if (k_th <= 0) then EXIT loop_choosed_particles endif - i_part = aero_state%aero_sorted%size_class%inverse(i_bin, i_class)%entry(k_th) + i_part = aero_state%aero_sorted%size_class & + %inverse(i_bin, i_class)%entry(k_th) if (aero_state%apa%particle(i_part)%frozen) then cycle end if if (H2O_frac(i_part) < const%imf_water_threshold) then cycle end if - if (immersion_freezing_scheme_type .eq. & + if (immersion_freezing_scheme_type == & IMMERSION_FREEZING_SCHEME_ABIFM) then - p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) - call warn_assert_msg(301184565, p_freeze .le. p_freeze_max,& + p_freeze = ABIFM_Pfrz_particle( & + aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) + call warn_assert_msg(301184565, p_freeze <= p_freeze_max,& "p_freeze > p_freeze_max.") rand = pmc_random() if (rand < p_freeze / p_freeze_max) then @@ -268,8 +273,9 @@ end subroutine ice_nucleation_immersion_freezing_time_dependent !> Simulation for time-dependent scheme (e.g., ABIFM, constant rate), !> deciding whether to freeze for each particle. Run in each time step. !> This subroutine applies the naive algorithm that checks each particle. - subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& - aero_data, env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + subroutine ice_nucleation_immersion_freezing_time_dependent_naive( & + aero_state, aero_data, env_state, del_t, & + immersion_freezing_scheme_type, freezing_rate) !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -298,7 +304,7 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& allocate(H2O_frac(aero_state_n_part(aero_state))) total_masses = aero_state_masses(aero_state, aero_data) - H2O_masses = aero_state_masses(aero_state, aero_data, include=(/"H2O"/)) + H2O_masses = aero_state_masses(aero_state, aero_data, include=["H2O"]) H2O_frac = H2O_masses / total_masses pvs = env_state_saturated_vapor_pressure_water(env_state%temp) @@ -310,10 +316,11 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& if (H2O_frac(i_part) < const%imf_water_threshold) cycle rand = pmc_random() - if (immersion_freezing_scheme_type .eq. & + if (immersion_freezing_scheme_type == & IMMERSION_FREEZING_SCHEME_ABIFM) then - p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), aero_data, a_w_ice, del_t) - else if (immersion_freezing_scheme_type .eq. & + p_freeze = ABIFM_Pfrz_particle(aero_state%apa%particle(i_part), & + aero_data, a_w_ice, del_t) + else if (immersion_freezing_scheme_type == & IMMERSION_FREEZING_SCHEME_CONST) then p_freeze = 1 - exp(freezing_rate * del_t) end if @@ -330,7 +337,6 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive(aero_state,& deallocate(H2O_masses) deallocate(H2O_frac) - end subroutine ice_nucleation_immersion_freezing_time_dependent_naive !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -339,7 +345,7 @@ end subroutine ice_nucleation_immersion_freezing_time_dependent_naive !> for each particle once the temperature is higher than water freezing !> tempearture) subroutine ice_nucleation_melting(aero_state, aero_data, env_state) - implicit none + !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. @@ -364,9 +370,8 @@ end subroutine ice_nucleation_melting !> Calculating the freezing probability for the particle (i_part) using ABIFM !> method (Knopf et al.,2013) real(kind=dp) function ABIFM_Pfrz_particle(aero_particle, aero_data, & - a_w_ice, del_t) + a_w_ice, del_t) - implicit none !> Aerosol particle. type(aero_particle_t), intent(in) :: aero_particle !> Aerosol data. @@ -410,7 +415,7 @@ end function ABIFM_Pfrz_particle !> Calculating the heterogeneous ice nucleation rate coefficient !> for each species, and fining the species having the largest rate. subroutine ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) - implicit none + !> Aerosol data. type(aero_data_t), intent(in) :: aero_data !> The water activity w.r.t. ice. @@ -443,8 +448,9 @@ end subroutine ABIFM_max_spec !> Calculating the maximum freezing probability for particles in !> one bin using ABIFM method (Knopf et al.,2013). Only used by !> the binned-tau leaping algorithm. - real(kind=dp) function ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, del_t) - implicit none + real(kind=dp) function ABIFM_Pfrz_max(diameter_max, aero_data, j_het_max, & + del_t) + !> Aerosol data. type(aero_data_t), intent(in) :: aero_data !> Maximum diameter. @@ -465,7 +471,8 @@ end function ABIFM_Pfrz_max !> Read the specification for a kernel type from a spec file and !> generate it. - subroutine spec_file_read_immersion_freezing_scheme_type(file, immersion_freezing_scheme_type) + subroutine spec_file_read_immersion_freezing_scheme_type(file, & + immersion_freezing_scheme_type) !> Spec file. type(spec_file_t), intent(inout) :: file From d8c7cf0cced150ca16630d06000b9a1288c847df Mon Sep 17 00:00:00 2001 From: Jeffrey Curtis Date: Wed, 10 Sep 2025 12:21:09 -0500 Subject: [PATCH 111/127] add abifm parameters to camp aerosol species --- .../6_camp/monarch_mod37/custom_species.json | 28 ++++++++++++++----- .../species.json | 10 +++++++ 2 files changed, 31 insertions(+), 7 deletions(-) diff --git a/scenarios/6_camp/monarch_mod37/custom_species.json b/scenarios/6_camp/monarch_mod37/custom_species.json index df8673d47..0ef9e68ca 100644 --- a/scenarios/6_camp/monarch_mod37/custom_species.json +++ b/scenarios/6_camp/monarch_mod37/custom_species.json @@ -28,7 +28,9 @@ "molecular weight [kg mol-1]" : 0.1, "density [kg m-3]" : 2650.0, "num_ions" : 0, - "kappa" : 0.1 + "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0 }, { "monarch name" : "lumped low-density dust species", @@ -39,7 +41,9 @@ "molecular weight [kg mol-1]" : 0.1, "density [kg m-3]" : 2650.0, "num_ions" : 0, - "kappa" : 0.1 + "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0 }, { "monarch name" : "lumped sea salt species", @@ -50,7 +54,9 @@ "molecular weight [kg mol-1]" : 0.1, "density [kg m-3]" : 2160.0, "num_ions" : 0, - "kappa" : 0.53 + "kappa" : 0.53, + "abifm_m": 0, + "abifm_c": 0 }, { "name" : "BC_phob", @@ -61,7 +67,9 @@ "molecular weight [kg mol-1]" : 0.1, "description" : "hydrophobic black carbon", "num_ions" : 0, - "kappa" : 0 + "kappa" : 0, + "abifm_m": 0, + "abifm_c": 0 }, { "name" : "BC_phil", @@ -72,7 +80,9 @@ "molecular weight [kg mol-1]" : 0.1, "description" : "hydrophilic black carbon", "num_ions" : 0, - "kappa" : 0.001 + "kappa" : 0.001, + "abifm_m": 0, + "abifm_c": 0 }, { "name" : "other_PM", @@ -83,7 +93,9 @@ "density [kg m-3]" : 1800.0, "description" : "unspecified particulate matter FIXME", "num_ions" : 0, - "kappa" : 0 + "kappa" : 0, + "abifm_m": 0, + "abifm_c": 0 }, { "name" : "other_other_PM", @@ -94,7 +106,9 @@ "density [kg m-3]" : 1800.0, "description" : "second unspecified particulate matter species FIXME", "num_ions" : 0, - "kappa" : 0 + "kappa" : 0, + "abifm_m": 0, + "abifm_c": 0 } ] } diff --git a/scenarios/6_camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json b/scenarios/6_camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json index e46bc5511..72bfcc6b0 100644 --- a/scenarios/6_camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json +++ b/scenarios/6_camp/monarch_mod37/tsigaridis_2_product_SOA_scheme/species.json @@ -58,6 +58,8 @@ "description" : "lumped hydrophobic particulate matter", "num_ions" : 0, "kappa" : 0.0, + "abifm_m": 0, + "abifm_c": 0, "note" : "Using C30H54 for molecular weight. TODO find best surrogate" }, { @@ -70,6 +72,8 @@ "description" : "First isoprene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0, "note" : [ "Using ketopropanoic acid for molecular weight. TODO find best surrogate", "TODO update SIMPOL parameters based on MW of new surrogate" @@ -85,6 +89,8 @@ "description" : "Second isoprene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0, "note" : [ "Using oxalic acid for molecular weight. TODO find best surrogate", "TODO update SIMPOL parameters based on MW of new surrogate" @@ -100,6 +106,8 @@ "description" : "First monoterpene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0, "note" : [ "Using 2-hydroxy-3-isopropyl-6-methyl-cyclohexanone for molecular weight", "TODO find best surrogate", @@ -116,6 +124,8 @@ "description" : "Second monoterpene SOA species in 2-product scheme", "num_ions" : 0, "kappa" : 0.1, + "abifm_m": 0, + "abifm_c": 0, "note" : [ "Using 2-methyl-5-carboxy-2,4-hexodienoic acid. TODO find best surrogate", "TODO update SIMPOL parameters based on MW of new surrogate" From 00234bb536e6e0635aefa5562b141ff66b60c289 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 18:39:48 -0500 Subject: [PATCH 112/127] Simplify the freezing scenario, keep only exp8 --- scenarios/7_freezing/0_README.md | 21 +-- scenarios/7_freezing/1_run.sh | 20 ++- scenarios/7_freezing/2_process.sh | 12 +- scenarios/7_freezing/3_draw.py | 134 +++++------------- .../standard_setting/exp1/aero_init_comp.dat | 4 - .../standard_setting/exp1/aero_init_dist.dat | 9 -- .../7_freezing/standard_setting/exp1/temp.dat | 4 - .../standard_setting/exp2/aero_init_comp.dat | 5 - .../standard_setting/exp2/aero_init_dist.dat | 9 -- .../7_freezing/standard_setting/exp2/temp.dat | 4 - .../standard_setting/exp3/aero_init_comp1.dat | 3 - .../standard_setting/exp3/aero_init_comp2.dat | 3 - .../standard_setting/exp3/aero_init_dist.dat | 17 --- .../7_freezing/standard_setting/exp3/temp.dat | 4 - .../standard_setting/exp4/aero_init_comp.dat | 5 - .../standard_setting/exp4/aero_init_dist.dat | 8 -- .../7_freezing/standard_setting/exp4/temp.dat | 4 - .../standard_setting/exp5/aero_init_comp.dat | 4 - .../standard_setting/exp5/aero_init_dist.dat | 8 -- .../7_freezing/standard_setting/exp5/temp.dat | 4 - .../standard_setting/exp6/aero_init_comp.dat | 4 - .../standard_setting/exp6/aero_init_dist.dat | 8 -- .../7_freezing/standard_setting/exp6/temp.dat | 4 - .../standard_setting/exp7/aero_init_comp1.dat | 3 - .../standard_setting/exp7/aero_init_comp2.dat | 3 - .../standard_setting/exp7/aero_init_dist.dat | 17 --- .../7_freezing/standard_setting/exp7/temp.dat | 4 - .../standard_setting/exp8/aero_init_comp.dat | 4 - .../standard_setting/exp8/aero_init_dist.dat | 8 -- .../7_freezing/standard_setting/exp8/temp.dat | 4 - .../7_freezing/standard_setting/run_part.spec | 2 +- 31 files changed, 57 insertions(+), 286 deletions(-) delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp1/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp2/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp3/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp4/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp5/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp6/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp7/temp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/exp8/temp.dat diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md index ed6f10e8d..20ad3ea54 100644 --- a/scenarios/7_freezing/0_README.md +++ b/scenarios/7_freezing/0_README.md @@ -6,22 +6,13 @@ Tang, W. (2024). Particle-resolved simulations of immersion freezing with multi- This is a scenario demonstrating how to use PartMC to simulate the immersion freezing process of multiple species INPs. -There are a total of 4*2=8 simulation groups, consisting of four types of INP populations and two temperature curve scenarios. The four types of INPs are 100% illite, 100% Fe2O3, a 50% illite and 50% Fe2O3 external mixture, and an internal mixture. The two temperature curves are a constant -20 degrees Celsius and a steady cooling from -10 to -30 degrees Celsius. The simulation time for each is 10 minutes. All immersion freezing simulations are using the ABIFM scheme. +Species: Fe2O3 and illite (50:50) +Mixing state: internal mixture +Temperature: -10 to -30 degrees Celsius. +Immersion freezing scheme: ABIFM. -exp1: 100% illite, constant temperature -exp2: 100% Fe2O3, constant temperature -exp3: external mixture, constant temperature -exp3: internal mixture, constant temperature -exp5: 100% illite, steady cooling -exp6: 100% Fe2O3, steady cooling -exp7: external mixture, steady cooling -exp8: internal mixture, steady cooling - -1. Run 1_run.sh. This is the shell scripts for running all simulations. +1. Run 1_run.sh. This is the shell scripts for running simulation. 2. Run 2_process.sh. This is the shell scripts for extract data from netcdf files. 3. Run 3_draw.py. This creates the figure showing the frozen fraction time series in each simulation. - (Reproduces the Figure 3.6 in the reference mentioned above, the output png file is out/TSs.png) + (the output pdf file is out/TSs.pdf) 4. (Optional) Run 4_clean.sh. This deletes all files created by the processes above. - -Figure capture of out/TSs.png: -Simulated frozen fraction from PartMC for four different INP species and mixing states. (a) isothermal conditions, while panel (b) constant-rate cooling process. The red lines represent the temperature profiles as a function of time. The green lines correspond to simulations with 100% illite, gray lines indicate 100% Fe2O3, light blue lines are for external mixtures, and dark blue lines represent internal mixtures. Solid lines represent the average frozen fraction from 10 repeated simulations for each scenario, and the shaded areas denote the range between the maximum and minimum values. diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh index 7297521fd..45caf8be5 100755 --- a/scenarios/7_freezing/1_run.sh +++ b/scenarios/7_freezing/1_run.sh @@ -16,18 +16,14 @@ cp -rp $setDir $outDir/ # Copy the constant settings among experiments cp -p $setDir/*.dat . cp -p $setDir/run_part.spec . -for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 -do - caseName=${expName} - echo "Running $caseName ..." +echo "Running $caseName ..." # Copy the special settings for that experiment - cp -p $setDir/$expName/*.dat . - sed -i "/output_prefix /coutput_prefix ${outDir}/${caseName}/freezing_part # prefix of output files" run_part.spec - mkdir -p $outDir/$caseName - cp -p run_part.spec $outDir/$caseName - cp -p *.dat $outDir/$caseName - sleep 1 +cp -p $setDir/$expName/*.dat . +sed -i "/output_prefix /coutput_prefix ${outDir}/freezing_part # prefix of output files" run_part.spec +mkdir -p $outDir +cp -p run_part.spec $outDir +cp -p *.dat $outDir +sleep 1 - ../../build/partmc run_part.spec +../../build/partmc run_part.spec -done diff --git a/scenarios/7_freezing/2_process.sh b/scenarios/7_freezing/2_process.sh index 1c6f48a3c..369a07a9d 100755 --- a/scenarios/7_freezing/2_process.sh +++ b/scenarios/7_freezing/2_process.sh @@ -1,13 +1,9 @@ #!/bin/bash N_ensemble=10 -for expName in exp1 exp2 exp3 exp4 exp5 exp6 exp7 exp8 -do - echo "Processing $expName ..." - for i_ensemble in $(seq 1 $N_ensemble); do - prefix=$(printf "freezing_part_%04d " $i_ensemble) - ../../build/freezing_process out/$expName/$prefix - done - +for i_ensemble in $(seq 1 $N_ensemble); do + prefix=$(printf "freezing_part_%04d " $i_ensemble) + ../../build/freezing_process out/$prefix done + diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py index 4dedd1d59..1577d3103 100755 --- a/scenarios/7_freezing/3_draw.py +++ b/scenarios/7_freezing/3_draw.py @@ -3,43 +3,13 @@ import numpy as np import glob import matplotlib.pyplot as plt -import matplotlib.colors as mcolors import matplotlib.ticker as ticker -from pdb import set_trace - -cmap = plt.cm.Blues -colors = cmap(np.linspace(0.4, 1, 10)) -chi_list = np.array([0, 0.01, 0.05, 0.1, 0.15, 0.2, 0.4, 0.6, 0.8, 1]) -chi_colors = cmap(0.3 + 0.7 * chi_list) -chi_colors = chi_colors[::-1] xlabel_fontsize = 15 ylabel_fontsize = 15 -def bck_read_expFile(caseName): - fileName = "out/freezing_part_data_" + caseName + ".txt" - timeList = [] - tempList = [] - ice_ratio_mean = [] - ice_ratio_max = [] - ice_ratio_min = [] - with open(fileName, "r") as fr: - for iline in fr: - time, temp, ff_mean, ff_max, ff_min = iline.strip().split() - timeList.append(float(time)) - tempList.append(float(temp)) - ice_ratio_mean.append(float(ff_mean)) - ice_ratio_max.append(float(ff_max)) - ice_ratio_min.append(float(ff_min)) - timeList = np.array(timeList) - tempList = np.array(tempList) - ice_ratio_mean = np.array(ice_ratio_mean) - ice_ratio_max = np.array(ice_ratio_max) - ice_ratio_min = np.array(ice_ratio_min) - return timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min - -def read_expFile(caseName): - fileNameList = glob.glob("out/" + caseName + "/freezing_part_*_aero_time.txt") +def read_expFile(): + fileNameList = glob.glob("out/freezing_part_*_aero_time.txt") timeList = [] tempList = [] ice_ratio_mean = [] @@ -65,90 +35,62 @@ def read_expFile(caseName): ice_ratio_mean = ice_ratio.mean(axis = 0) ice_ratio_max = ice_ratio.max(axis = 0) ice_ratio_min = ice_ratio.min(axis = 0) - return timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min - - - - -def draw(fig, ax, casesName, ax_label): + return { + "timeList": timeList, + "tempList": tempList, + "ice_ratio_mean": ice_ratio_mean, + "ice_ratio_max": ice_ratio_max, + "ice_ratio_min": ice_ratio_min + } + +def draw(fig, ax): OutDir = "output" - casesLabel = ["100% $Illite$", "100% $Fe_2O_3$", "Internal Mixture", "External Mixture"] - casesColor = ["green", "grey", chi_colors[0], chi_colors[-1]] - - sampleName = casesName[0] - casesDict = {} - - for caseName in casesName: - timeList, tempList, ice_ratio_mean, ice_ratio_max, ice_ratio_min = read_expFile(caseName) - #timeList_, tempList_, ice_ratio_mean_, ice_ratio_max_, ice_ratio_min_ = bck_read_expFile(caseName) - - #assert np.max(np.abs(ice_ratio_mean - ice_ratio_mean_)) < 1e-10 - #assert np.max(np.abs(ice_ratio_max - ice_ratio_max_)) < 1e-10 - #assert np.max(np.abs(ice_ratio_min - ice_ratio_min_)) < 1e-10 - #assert np.max(np.abs(timeList - timeList_)) < 1e-15 - #try: - # assert np.max(np.abs(tempList - tempList_)) < 1e-5 - #except: - # set_trace() - - CaseDict = {"timeList": timeList, "tempList": tempList, "ice_ratio_mean": ice_ratio_mean, - "ice_ratio_max": ice_ratio_max, "ice_ratio_min": ice_ratio_min} - casesDict[caseName] = CaseDict - - timeList = casesDict[sampleName]["timeList"] - timeList = timeList / 60 - temperature = casesDict[sampleName]["tempList"] - + output = read_expFile() + timeList = output["timeList"] + temperature = output["tempList"] axt = ax.twinx() - axt.plot(timeList, temperature - 273.15, color = "red") + axt.plot(timeList / 60, temperature - 273.15, color = "red") axt.set_yticks([-40, -30, -20, -10]) axt.set_ylim([-102.5, -5]) axt.grid(linestyle = "--") - - - for ind, caseName in enumerate(casesName): - ice_ratio_mean = casesDict[caseName]["ice_ratio_mean"] - ice_ratio_max = casesDict[caseName]["ice_ratio_max"] - ice_ratio_min = casesDict[caseName]["ice_ratio_min"] - ax.plot(timeList, ice_ratio_mean * 100, label = casesLabel[ind], color = casesColor[ind], linewidth = 0.7) - ax.fill_between(timeList, ice_ratio_min * 100, ice_ratio_max * 100, color = casesColor[ind], alpha = 0.3, edgecolor = None) - #print(caseName, ice_ratio_mean[-1] * 100) - + ice_ratio_mean = output["ice_ratio_mean"] + ice_ratio_max = output["ice_ratio_max"] + ice_ratio_min = output["ice_ratio_min"] + ax.plot( + timeList / 60, + ice_ratio_mean * 100, + color = "blue", + linewidth = 0.7 + ) + ax.fill_between( + timeList / 60, + ice_ratio_min * 100, + ice_ratio_max * 100, + color = "blue", + alpha = 0.3, + edgecolor = None + ) ax.set_yticks([0, 20, 40, 60, 80]) ax.set_ylim([-15, 140]) ax.grid() - ax.xaxis.set_major_locator(ticker.MultipleLocator(1)) for label in axt.get_yticklabels(): label.set_fontsize(12) - label.set_fontname("serif") axt.set_ylabel("Temperature (˚C)", loc = "top", fontsize = ylabel_fontsize) for label in ax.get_yticklabels(): label.set_fontsize(12) - label.set_fontname("serif") for label in ax.get_xticklabels(): label.set_fontsize(12) - label.set_fontname("serif") - - ax.set_ylabel("Frozen fraction (%)", loc = "bottom", fontsize = ylabel_fontsize) - - ax.text(-0.01, 0.96, ax_label, horizontalalignment = "right", verticalalignment = "top", transform = ax.transAxes, fontsize = 15) return fig, ax if __name__ == "__main__": - fig, axes = plt.subplots(2, 1, figsize = (10, 7), sharex = True) - plt.subplots_adjust(hspace = 0.1) - ax1, ax2 = axes[0], axes[1] - casesName = ["exp1", "exp2", "exp3", "exp4"] - fig, ax1 = draw(fig, ax1, casesName, ax_label = "(a)") - - casesName = ["exp5", "exp6", "exp7", "exp8"] - fig, ax2 = draw(fig, ax2, casesName, ax_label = "(b)") - ax2.set_xlabel("Time (min)", fontsize = xlabel_fontsize) + fig = plt.figure(figsize = (10, 5)) + ax = fig.add_subplot(1, 1, 1) + fig, ax = draw(fig, ax) + ax.set_xlabel("Time (min)", fontsize = xlabel_fontsize) - #plt.show() - plt.savefig("out/TSs.png", dpi = 500) - print("The figure has been saved to out/TSs.png") + plt.savefig("out/TSs.pdf") + print("The figure has been saved to out/TSs.pdf") diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat deleted file mode 100644 index 3a120b47e..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_comp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# mass fractions -H2O 0.76595745 -ILT 0.23404255 - diff --git a/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat deleted file mode 100644 index e78b0236e..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/aero_init_dist.dat +++ /dev/null @@ -1,9 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - diff --git a/scenarios/7_freezing/standard_setting/exp1/temp.dat b/scenarios/7_freezing/standard_setting/exp1/temp.dat deleted file mode 100644 index f23f98d65..000000000 --- a/scenarios/7_freezing/standard_setting/exp1/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat deleted file mode 100644 index c25aed79c..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_comp.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions - -H2O 0.63202247 -Fe2O3 0.36797753 - diff --git a/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat deleted file mode 100644 index e78b0236e..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/aero_init_dist.dat +++ /dev/null @@ -1,9 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - diff --git a/scenarios/7_freezing/standard_setting/exp2/temp.dat b/scenarios/7_freezing/standard_setting/exp2/temp.dat deleted file mode 100644 index f23f98d65..000000000 --- a/scenarios/7_freezing/standard_setting/exp2/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat deleted file mode 100644 index 834c53180..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp1.dat +++ /dev/null @@ -1,3 +0,0 @@ -# mass fractions -H2O 0.76595745 -ILT 0.23404255 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat deleted file mode 100644 index 209b23301..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_comp2.dat +++ /dev/null @@ -1,3 +0,0 @@ -# mass fractions -H2O 0.63202247 -Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat deleted file mode 100644 index 80f6d1601..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/aero_init_dist.dat +++ /dev/null @@ -1,17 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp1.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 0.5e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - - -mode_name init2 # name of mode source -mass_frac aero_init_comp2.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 0.5e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp3/temp.dat b/scenarios/7_freezing/standard_setting/exp3/temp.dat deleted file mode 100644 index f23f98d65..000000000 --- a/scenarios/7_freezing/standard_setting/exp3/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat deleted file mode 100644 index 014decb58..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_comp.dat +++ /dev/null @@ -1,5 +0,0 @@ -# mass fractions -H2O 0.69257407 -Fe2O3 0.20161601 -ILT 0.10580993 - diff --git a/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat deleted file mode 100644 index 4d433b9e4..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/aero_init_dist.dat +++ /dev/null @@ -1,8 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp4/temp.dat b/scenarios/7_freezing/standard_setting/exp4/temp.dat deleted file mode 100644 index f23f98d65..000000000 --- a/scenarios/7_freezing/standard_setting/exp4/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 253.150 253.150 diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat deleted file mode 100644 index 3a120b47e..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_comp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# mass fractions -H2O 0.76595745 -ILT 0.23404255 - diff --git a/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat deleted file mode 100644 index 09b335200..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/aero_init_dist.dat +++ /dev/null @@ -1,8 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp5/temp.dat b/scenarios/7_freezing/standard_setting/exp5/temp.dat deleted file mode 100644 index fcc259a39..000000000 --- a/scenarios/7_freezing/standard_setting/exp5/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat deleted file mode 100644 index 36d7180b5..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_comp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# mass fractions -H2O 0.63202247 -Fe2O3 0.36797753 - diff --git a/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat deleted file mode 100644 index 09b335200..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/aero_init_dist.dat +++ /dev/null @@ -1,8 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp6/temp.dat b/scenarios/7_freezing/standard_setting/exp6/temp.dat deleted file mode 100644 index fcc259a39..000000000 --- a/scenarios/7_freezing/standard_setting/exp6/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat deleted file mode 100644 index 834c53180..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp1.dat +++ /dev/null @@ -1,3 +0,0 @@ -# mass fractions -H2O 0.76595745 -ILT 0.23404255 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat deleted file mode 100644 index 209b23301..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_comp2.dat +++ /dev/null @@ -1,3 +0,0 @@ -# mass fractions -H2O 0.63202247 -Fe2O3 0.36797753 diff --git a/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat deleted file mode 100644 index 80f6d1601..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/aero_init_dist.dat +++ /dev/null @@ -1,17 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp1.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 0.5e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter - - -mode_name init2 # name of mode source -mass_frac aero_init_comp2.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 0.5e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp7/temp.dat b/scenarios/7_freezing/standard_setting/exp7/temp.dat deleted file mode 100644 index fcc259a39..000000000 --- a/scenarios/7_freezing/standard_setting/exp7/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat deleted file mode 100644 index a54d3469d..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_comp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# mass fractions -H2O 0.69257407 -Fe2O3 0.20161601 -ILT 0.10580993 diff --git a/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat b/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat deleted file mode 100644 index 4d433b9e4..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/aero_init_dist.dat +++ /dev/null @@ -1,8 +0,0 @@ -# -mode_name init1 # name of mode source -mass_frac aero_init_comp.dat # species mass fractions -diam_type geometric # type of diameter specified -mode_type log_normal # type of distribution -num_conc 1e8 # particle number concentration (#/m^3) -geom_mean_diam 2.154434690031885e-06 # geometric mean diameter (m) -log10_geom_std_dev 0.5 # log_10 of geometric std dev of diameter diff --git a/scenarios/7_freezing/standard_setting/exp8/temp.dat b/scenarios/7_freezing/standard_setting/exp8/temp.dat deleted file mode 100644 index fcc259a39..000000000 --- a/scenarios/7_freezing/standard_setting/exp8/temp.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# temp (K) -time 0.000 600.000 -temp 263.150 243.150 diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec index 23a5199e3..c66888f13 100644 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -47,7 +47,7 @@ immersion_freezing_scheme ABIFM #immersion_freezing_scheme const #freezing_rate -.01123456789 -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) From 73fe08f9412668b800989ec0ee3a689d733ea149 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 18:55:28 -0500 Subject: [PATCH 113/127] Resolve conflicts --- src/ice_nucleation.F90 | 14 +++++++------- src/run_part.F90 | 16 ++++++++++++++-- 2 files changed, 21 insertions(+), 9 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 859af5ef1..47a7786eb 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -79,28 +79,28 @@ end subroutine ice_nucleation_immersion_freezing !> Initialization for the sigular scheme, sampling the freezing temperature !> for each particles. - subroutine ice_nucleation_singular_initialize(aero_state, aero_data) - + subroutine ice_nucleation_singular_initialize(aero_state, aero_data, & + INAS_a, INAS_b) + implicit none !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state !> Aerosol data. type(aero_data_t), intent(in) :: aero_data + real(kind=dp), intent(in) :: INAS_a, INAS_b integer :: i_part - real(kind=dp) :: a_INAS, b_INAS, p, S, T0, temp + real(kind=dp) :: p, S, T0, temp real(kind=dp) :: aerosol_diameter T0 = const%water_freeze_temp - a_INAS = -0.517 - b_INAS = 8.934 do i_part = 1, aero_state_n_part(aero_state) aerosol_diameter = aero_particle_dry_diameter( & aero_state%apa%particle(i_part), aero_data) S = const%pi * aerosol_diameter **2 p = pmc_random() - temp = (log(1 - p) + exp(-S * exp(-a_INAS * T0 + b_INAS))) / (-S) + temp = (log(1 - p) + exp(-S * exp(-INAS_a * T0 + INAS_b))) / (-S) aero_state%apa%particle(i_part)%imf_temperature = T0 + (log(temp) & - - b_INAS) / a_INAS + - INAS_b) / INAS_a end do end subroutine ice_nucleation_singular_initialize diff --git a/src/run_part.F90 b/src/run_part.F90 index 345c57810..8e6f574c6 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -74,6 +74,9 @@ module pmc_run_part logical :: do_immersion_freezing !> The immersion freezing scheme options. integer :: immersion_freezing_scheme_type + !> The INAS parameters for "singular" scheme. + real(kind=dp) :: INAS_a + real(kind=dp) :: INAS_b !> The freezing rate parameter for "const" scheme. real(kind=dp) :: freezing_rate !> Allow doubling if needed. @@ -243,7 +246,8 @@ subroutine run_part(scenario, env_state, aero_data, aero_state, gas_data, & if (run_part_opt%do_immersion_freezing .and. & (run_part_opt%immersion_freezing_scheme_type .eq. & IMMERSION_FREEZING_SCHEME_SINGULAR)) then - call ice_nucleation_singular_initialize(aero_state, aero_data) + call ice_nucleation_singular_initialize(aero_state, aero_data, & + run_part_opt%INAS_a, run_part_opt%INAS_b) end if i_cur = 1 @@ -330,6 +334,8 @@ integer function pmc_mpi_pack_size_run_part_opt(val) + pmc_mpi_pack_size_logical(val%do_nucleation) & + pmc_mpi_pack_size_logical(val%do_immersion_freezing) & + pmc_mpi_pack_size_integer(val%immersion_freezing_scheme_type) & + + pmc_mpi_pack_size_real(val%INAS_a) & + + pmc_mpi_pack_size_real(val%INAS_b) & + pmc_mpi_pack_size_real(val%freezing_rate) & + pmc_mpi_pack_size_logical(val%allow_doubling) & + pmc_mpi_pack_size_logical(val%allow_halving) & @@ -385,6 +391,9 @@ subroutine pmc_mpi_pack_run_part_opt(buffer, position, val) call pmc_mpi_pack_logical(buffer, position, val%do_immersion_freezing) call pmc_mpi_pack_integer(buffer, position, & val%immersion_freezing_scheme_type) + + call pmc_mpi_pack_real(buffer, position, val%INAS_a) + call pmc_mpi_pack_real(buffer, position, val%INAS_b) call pmc_mpi_pack_real(buffer, position, val%freezing_rate) call pmc_mpi_pack_logical(buffer, position, val%allow_doubling) call pmc_mpi_pack_logical(buffer, position, val%allow_halving) @@ -442,6 +451,8 @@ subroutine pmc_mpi_unpack_run_part_opt(buffer, position, val) call pmc_mpi_unpack_logical(buffer, position, val%do_nucleation) call pmc_mpi_unpack_logical(buffer, position, val%do_immersion_freezing) call pmc_mpi_unpack_integer(buffer, position, val%immersion_freezing_scheme_type) + call pmc_mpi_unpack_real(buffer, position, val%INAS_a) + call pmc_mpi_unpack_real(buffer, position, val%INAS_b) call pmc_mpi_unpack_real(buffer, position, val%freezing_rate) call pmc_mpi_unpack_logical(buffer, position, val%allow_doubling) call pmc_mpi_unpack_logical(buffer, position, val%allow_halving) @@ -714,7 +725,8 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & else if (run_part_opt%immersion_freezing_scheme_type .eq.& IMMERSION_FREEZING_SCHEME_SINGULAR) then - continue + call spec_file_read_real(file, 'INAS_a', run_part_opt%INAS_a) + call spec_file_read_real(file, 'INAS_b', run_part_opt%INAS_b) else call assert_msg(121370299, .false., & "Error type of immersion freezing scheme") From e79f406843a8ef7ce64875f94e7b1d52936bba04 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:08:01 -0500 Subject: [PATCH 114/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 47a7786eb..806faf2c6 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -341,9 +341,8 @@ end subroutine ice_nucleation_immersion_freezing_time_dependent_naive !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> This subroutine simulates the melting process.(Set frozen = .False. - !> for each particle once the temperature is higher than water freezing - !> tempearture) + !> Simulates melting: if the environmental temperature is above the freezing + !> temperature of water, all particles are set to be unfrozen. subroutine ice_nucleation_melting(aero_state, aero_data, env_state) !> Aerosol state. From 2d003f70c4194b9b69a83b8a51234c582af89068 Mon Sep 17 00:00:00 2001 From: Wenhan Tang <81504538+tangwhiap@users.noreply.github.com> Date: Sun, 14 Sep 2025 19:10:50 -0500 Subject: [PATCH 115/127] Update src/ice_nucleation.F90 Co-authored-by: Jeffrey Curtis --- src/ice_nucleation.F90 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 806faf2c6..f71adf8b1 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -468,8 +468,7 @@ end function ABIFM_Pfrz_max !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Read the specification for a kernel type from a spec file and - !> generate it. + !> Read the specification for immersion freezing scheme. subroutine spec_file_read_immersion_freezing_scheme_type(file, & immersion_freezing_scheme_type) From fbc9ca778cdb573ff3372bf67be97d2eea518f1e Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 19:21:19 -0500 Subject: [PATCH 116/127] Change function name env_state_saturated_vapor_pressure_water-> env_state_saturated_vapor_pressure_wrt_water --- src/env_state.F90 | 22 ++++++++++----------- src/ice_nucleation.F90 | 11 +++++------ test/freezing/test_freezing_theoretical.F90 | 4 ++-- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index dbbc4dd5d..a7c14a88e 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -648,7 +648,7 @@ end subroutine env_state_input_netcdf !> compute saturated vapor pressure (units : Pa) with respective to water !> Formula (10) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) - real(kind=dp) function env_state_saturated_vapor_pressure_water(T) + real(kind=dp) function env_state_saturated_vapor_pressure_wrt_water(T) !> Temperature (K) real(kind=dp), intent(in) :: T @@ -658,7 +658,7 @@ real(kind=dp) function env_state_saturated_vapor_pressure_water(T) call warn_assert_msg(571128376, (T > 123) .and. (T < 332), & "The environment temperature is less then 123K or larger than "& - "332K, the subroutine env_state_saturated_vapor_pressure_water"& + "332K, the subroutine env_state_saturated_vapor_pressure_wrt_water"& " isn't applicable") tmp = 54.842763 & @@ -667,15 +667,15 @@ real(kind=dp) function env_state_saturated_vapor_pressure_water(T) + 0.000367 * T & + tanh( 0.0415 * (T - 218.8)) & * (53.878 - 1331.22 / T - 9.44523 * log(T) + 0.014025 * T) - env_state_saturated_vapor_pressure_water = exp(tmp) + env_state_saturated_vapor_pressure_wrt_water = exp(tmp) - end function env_state_saturated_vapor_pressure_water + end function env_state_saturated_vapor_pressure_wrt_water !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Compute saturated vapor pressure (units : Pa) with respective to ice !> Formula (7) from [Murphy & Koop, 2004] (https://doi.org/10.1256/qj.04.94) - real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) + real(kind=dp) function env_state_saturated_vapor_pressure_wrt_ice(T) !> Temperature (K) real(kind=dp), intent(in) :: T @@ -684,32 +684,32 @@ real(kind=dp) function env_state_saturated_vapor_pressure_ice(T) call warn_assert_msg(482130832, T > 110, & "The environment temperature is less then 110K, "& - "the subroutine env_state_saturated_vapor_pressure_water"& + "the subroutine env_state_saturated_vapor_pressure_wrt_ice"& " isn't applicable") tmp = 9.550426 & - 5723.265 / T & + 3.53068 * log(T) & - 0.00728332 * T - env_state_saturated_vapor_pressure_ice = exp(tmp) + env_state_saturated_vapor_pressure_wrt_ice = exp(tmp) - end function env_state_saturated_vapor_pressure_ice + end function env_state_saturated_vapor_pressure_wrt_ice !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> compute saturated vapor pressure (units : Pa) with respective to water - real(kind=dp) function env_state_saturated_vapor_pressure_water_2(T) + real(kind=dp) function env_state_saturated_vapor_pressure_wrt_water_2(T) !> Temperature (K) real(kind=dp), intent(in) :: T real(kind=dp) :: tmp - env_state_saturated_vapor_pressure_water_2 = const%water_eq_vap_press & + env_state_saturated_vapor_pressure_wrt_water_2 = const%water_eq_vap_press & * 10d0**(7.45d0 * (T - const%water_freeze_temp) & / (T - 38d0)) - end function env_state_saturated_vapor_pressure_water_2 + end function env_state_saturated_vapor_pressure_wrt_water_2 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index f71adf8b1..1cd6da6b1 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -197,8 +197,8 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, & total_masses = aero_state_masses(aero_state, aero_data) H2O_masses = aero_state_masses(aero_state, aero_data, include=["H2O"]) H2O_frac = H2O_masses / total_masses - pvs = env_state_saturated_vapor_pressure_water(env_state%temp) - pis = env_state_saturated_vapor_pressure_ice(env_state%temp) + pvs = env_state_saturated_vapor_pressure_wrt_water(env_state%temp) + pis = env_state_saturated_vapor_pressure_wrt_ice(env_state%temp) a_w_ice = pis / pvs if (immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_ABIFM) then call ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) @@ -307,8 +307,8 @@ subroutine ice_nucleation_immersion_freezing_time_dependent_naive( & H2O_masses = aero_state_masses(aero_state, aero_data, include=["H2O"]) H2O_frac = H2O_masses / total_masses - pvs = env_state_saturated_vapor_pressure_water(env_state%temp) - pis = env_state_saturated_vapor_pressure_ice(env_state%temp) + pvs = env_state_saturated_vapor_pressure_wrt_water(env_state%temp) + pis = env_state_saturated_vapor_pressure_wrt_ice(env_state%temp) a_w_ice = pis / pvs do i_part = 1, aero_state_n_part(aero_state) @@ -411,8 +411,7 @@ end function ABIFM_Pfrz_particle !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !> Calculating the heterogeneous ice nucleation rate coefficient - !> for each species, and fining the species having the largest rate. + !> Finding the maximum heterogeneous ice nucleation rate coefficient. subroutine ABIFM_max_spec(aero_data, a_w_ice, i_spec_max, j_het_max) !> Aerosol data. diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index f679d6e88..9d989692c 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -68,8 +68,8 @@ subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) real(kind=dp), intent(in) :: T, abifm_m, abifm_c real(kind=dp), intent(out) :: Jhet real(kind=dp) :: es, ei, a_w_ice - es = env_state_saturated_vapor_pressure_water(T) - ei = env_state_saturated_vapor_pressure_ice(T) + es = env_state_saturated_vapor_pressure_wrt_water(T) + ei = env_state_saturated_vapor_pressure_wrt_ice(T) a_w_ice = ei / es Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 From 6dd5b62e489243e0da4c0ad527bf9aff7f1331e6 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 19:32:23 -0500 Subject: [PATCH 117/127] Remove duplicated function: env_state_saturated_vapor_pressure_water_2 --- src/env_state.F90 | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/env_state.F90 b/src/env_state.F90 index a7c14a88e..db02d2b55 100644 --- a/src/env_state.F90 +++ b/src/env_state.F90 @@ -695,23 +695,6 @@ real(kind=dp) function env_state_saturated_vapor_pressure_wrt_ice(T) end function env_state_saturated_vapor_pressure_wrt_ice -!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - - !> compute saturated vapor pressure (units : Pa) with respective to water - real(kind=dp) function env_state_saturated_vapor_pressure_wrt_water_2(T) - - !> Temperature (K) - real(kind=dp), intent(in) :: T - - real(kind=dp) :: tmp - - env_state_saturated_vapor_pressure_wrt_water_2 = const%water_eq_vap_press & - * 10d0**(7.45d0 * (T - const%water_freeze_temp) & - / (T - 38d0)) - - end function env_state_saturated_vapor_pressure_wrt_water_2 - - !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! end module pmc_env_state From e7d05437e550789e08955b5377c11732994a0541 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 19:33:56 -0500 Subject: [PATCH 118/127] Modifications based on Jeff's comments --- src/ice_nucleation.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index 1cd6da6b1..aa95c4852 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -171,9 +171,9 @@ subroutine ice_nucleation_immersion_freezing_time_dependent(aero_state, & real(kind=dp), intent(in) :: del_t !> Freezing rate (only used for the constant rate scheme). real(kind=dp), intent(in) :: freezing_rate + integer, intent(in) :: immersion_freezing_scheme_type integer :: i_part, i_bin, i_class, n_bins, n_class - integer, intent(in) :: immersion_freezing_scheme_type real(kind=dp) :: a_w_ice, pis, pvs real(kind=dp) :: p_freeze From 6493ea78ca26fa6f3eff2087a9df86d39fd0cf3e Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 19:47:29 -0500 Subject: [PATCH 119/127] Modify the document for spec_file_read_immersion_freezing_scheme_type --- src/ice_nucleation.F90 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index aa95c4852..cd882f5ac 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -481,14 +481,14 @@ subroutine spec_file_read_immersion_freezing_scheme_type(file, & !> \page input_format_immersion_freezing_scheme Input File Format: Immersion freezing scheme !! !! The immersion freezing scheme is specified by the parameter: - !! - \b immersion_freezing_scheme (string): the type of immersion freezing scheme - !! must be one of: \c sedi for the gravitational sedimentation - !! kernel; \c additive for the additive kernel; \c constant - !! for the constant kernel; \c brown for the Brownian kernel, - !! or \c zero for no immersion freezing + !! - \b immersion_freezing_scheme (string): the type of + !! immersion freezing scheme must be one of: + !! \c const for freezing with a constant freezing rate; + !! \c singular for the INAS scheme based on singular perspective; + !! \c ABIFM for the ABIFM scheme based on CNT perspetive. !! - !! If \c immersion_freezing_scheme is \c additive, the kernel coefficient needs to be - !! provided using the \c additive_kernel_coeff parameter + !! If \c immersion_freezing_scheme is \c singular, the parameters INAS_a + !! and INAS_b need to be provided. !! !! See also: !! - \ref spec_file_format --- the input file text format From 6629ee58453583b0b4c565e783b27ff166cb1cd4 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Sun, 14 Sep 2025 20:00:16 -0500 Subject: [PATCH 120/127] Remove unreachable branch --- src/run_part.F90 | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/run_part.F90 b/src/run_part.F90 index 8e6f574c6..742f09592 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -719,18 +719,12 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & call spec_file_read_real(file, 'freezing_rate', & run_part_opt%freezing_rate) - else if (run_part_opt%immersion_freezing_scheme_type .eq.& - IMMERSION_FREEZING_SCHEME_ABIFM) then - continue - else if (run_part_opt%immersion_freezing_scheme_type .eq.& IMMERSION_FREEZING_SCHEME_SINGULAR) then call spec_file_read_real(file, 'INAS_a', run_part_opt%INAS_a) call spec_file_read_real(file, 'INAS_b', run_part_opt%INAS_b) - else - call assert_msg(121370299, .false., & - "Error type of immersion freezing scheme") endif + endif call spec_file_read_integer(file, 'rand_init', rand_init) From 0fefef55f24b9f380be937f6d108180d64332b41 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Thu, 18 Sep 2025 09:43:51 -0500 Subject: [PATCH 121/127] Add freezing test cases for singular and const --- .../{run_part.spec => run_part.ABIFM.spec} | 9 +- test/freezing/run_part.const.spec | 53 +++++++++++ test/freezing/run_part.singular.spec | 54 +++++++++++ test/freezing/temp.dat | 2 +- test/freezing/test_freezing_1.sh | 10 +-- test/freezing/test_freezing_2.sh | 23 +++++ test/freezing/test_freezing_3.sh | 23 +++++ test/freezing/test_freezing_theoretical.F90 | 90 ++++++++++++++++--- 8 files changed, 236 insertions(+), 28 deletions(-) rename test/freezing/{run_part.spec => run_part.ABIFM.spec} (89%) create mode 100644 test/freezing/run_part.const.spec create mode 100644 test/freezing/run_part.singular.spec create mode 100755 test/freezing/test_freezing_2.sh create mode 100755 test/freezing/test_freezing_3.sh diff --git a/test/freezing/run_part.spec b/test/freezing/run_part.ABIFM.spec similarity index 89% rename from test/freezing/run_part.spec rename to test/freezing/run_part.ABIFM.spec index 4d45ef59c..009aed332 100644 --- a/test/freezing/run_part.spec +++ b/test/freezing/run_part.ABIFM.spec @@ -1,9 +1,8 @@ run_type particle # particle-resolved run -output_prefix out/freezing_part # prefix of output files +output_prefix out/ABIFM/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats n_part 10000 # total number of particles restart no # whether to restart from saved state (yes/no) -#restart_file output/chiexp_indsize_0.8/restart.nc do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -40,17 +39,11 @@ start_time 0 # start time (s since 00:00 UTC) start_day 1 # start day of year (UTC) do_coagulation no # whether to do coagulation (yes/no) -#coag_kernel brown do_condensation no # whether to do condensation (yes/no) -#do_init_equilibrate yes # whether to initially equilibrate water (yes/no) do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) do_immersion_freezing yes # whether to do freezing (yes/no) -#immersion_freezing_scheme singular immersion_freezing_scheme ABIFM -#immersion_freezing_scheme const -#freezing_rate -.01123456789 -#do_coating no rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/freezing/run_part.const.spec b/test/freezing/run_part.const.spec new file mode 100644 index 000000000..e28e28ee3 --- /dev/null +++ b/test/freezing/run_part.const.spec @@ -0,0 +1,53 @@ +run_type particle # particle-resolved run +output_prefix out/const/freezing_part # prefix of output files +n_repeat 10 # number of Monte Carlo repeats +n_part 10000 # total number of particles +restart no # whether to restart from saved state (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat + + +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing yes # whether to do freezing (yes/no) +immersion_freezing_scheme const +freezing_rate -.01123456789 + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/run_part.singular.spec b/test/freezing/run_part.singular.spec new file mode 100644 index 000000000..b7d93e66e --- /dev/null +++ b/test/freezing/run_part.singular.spec @@ -0,0 +1,54 @@ +run_type particle # particle-resolved run +output_prefix out/singular/freezing_part # prefix of output files +n_repeat 10 # number of Monte Carlo repeats +n_part 10000 # total number of particles +restart no # whether to restart from saved state (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat + + +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing yes # whether to do freezing (yes/no) +immersion_freezing_scheme singular +INAS_a -0.517 +INAS_b 8.934 + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/temp.dat b/test/freezing/temp.dat index 87c2ea5d0..45e691790 100644 --- a/test/freezing/temp.dat +++ b/test/freezing/temp.dat @@ -1,4 +1,4 @@ # time (s) # temp (K) time 0.000 -temp 253.150 +temp 243.150 diff --git a/test/freezing/test_freezing_1.sh b/test/freezing/test_freezing_1.sh index 4a8adab54..3ee5d9ef5 100755 --- a/test/freezing/test_freezing_1.sh +++ b/test/freezing/test_freezing_1.sh @@ -8,16 +8,16 @@ set -v cd ${0%/*} # make the output directory if it doesn't exist -mkdir -p out +mkdir -p out/ABIFM # run PartMC freezing test -../../partmc run_part.spec +../../partmc run_part.ABIFM.spec # extract frozen fraction results to a txt file -../../test_freezing_extract out/freezing_part +../../test_freezing_extract out/ABIFM/freezing_part # calculate the freezing theoretical results -../../test_freezing_theoretical +../../test_freezing_theoretical ABIFM # compare the PartMC versus theoretical results -../../numeric_diff --rel-tol 0.02 out/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_data.txt +../../numeric_diff --rel-tol 0.02 out/ABIFM/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_ABIFM_data.txt diff --git a/test/freezing/test_freezing_2.sh b/test/freezing/test_freezing_2.sh new file mode 100755 index 000000000..9a63e2e19 --- /dev/null +++ b/test/freezing/test_freezing_2.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} + +# make the output directory if it doesn't exist +mkdir -p out/singular + +# run PartMC freezing test +../../partmc run_part.singular.spec + +# extract frozen fraction results to a txt file +../../test_freezing_extract out/singular/freezing_part + +# calculate the freezing theoretical results +../../test_freezing_theoretical singular + +# compare the PartMC versus theoretical results +../../numeric_diff --rel-tol 0.04 out/singular/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_singular_data.txt diff --git a/test/freezing/test_freezing_3.sh b/test/freezing/test_freezing_3.sh new file mode 100755 index 000000000..0dac7d6f8 --- /dev/null +++ b/test/freezing/test_freezing_3.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} + +# make the output directory if it doesn't exist +mkdir -p out/const + +# run PartMC freezing test +../../partmc run_part.const.spec + +# extract frozen fraction results to a txt file +../../test_freezing_extract out/const/freezing_part + +# calculate the freezing theoretical results +../../test_freezing_theoretical const + +# compare the PartMC versus theoretical results +../../numeric_diff --rel-tol 0.02 out/const/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_const_data.txt diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index 9d989692c..89eba266c 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -17,8 +17,11 @@ program theoretical_freezing use pmc_env_state implicit none + ! Temperature (unit: Kelvin) - real(kind=dp), parameter :: temperature = 253.15 + real(kind=dp), parameter :: temperature = 243.15 + ! Melting point (unit: Kelvin) + real(kind=dp), parameter :: T0 = 273.15 ! Time duration (unit: s) real(kind=dp), parameter :: total_time = 600 ! Output time interval (unit: s) @@ -27,15 +30,40 @@ program theoretical_freezing real(kind=dp), parameter :: abifm_m_1 = 17.62106, abifm_c_1 = 1.42411 ! ABIFM parameters (m and c) for species 2. real(kind=dp), parameter :: abifm_m_2 = 54.48075, abifm_c_2 = -10.66873 - ! The ratio of total surface for species 1 and 2. + ! The ratio of total surface for species 1 and 2 (for ABIFM only). real(kind=dp), parameter :: s_ratio_1 = 0.5, s_ratio_2 = 0.5 + ! INAS parameters (a and b) for mineral dust. (for singular only) + real(kind=dp), parameter :: inas_a = -0.517, inas_b = 8.934 + ! Constant freezing rate. (for const only) + real(kind=dp), parameter :: freezing_rate = -0.01123456789 ! Dry diameter of INPs (unit: m) real(kind=dp), parameter :: Dp_dry = 1d-6 ! The name of output file - character(len=*), parameter :: out_filename = "out/freezing_theoretical_data.txt" + !character(len=*), parameter :: out_filename = "out/freezing_theoretical_data.txt" + character(len=100) :: out_filename, imf_scheme + !character(len=*), parameter :: out_dir = "out" + !character(len=*), parameter :: filename = "freezing_theoretical_data.txt" integer, parameter :: out_unit = 65 + integer, parameter :: IMMERSION_FREEZING_SCHEME_CONST = 0 + integer, parameter :: IMMERSION_FREEZING_SCHEME_SINGULAR = 1 + integer, parameter :: IMMERSION_FREEZING_SCHEME_ABIFM = 2 real(kind=dp) :: time, Jhet_1, Jhet_2, Jhet_mean, Phi_mean, frozen_fraction - integer :: ios + real(kind=dp) :: ns + integer :: ios, immersion_freezing_scheme_type + + call getarg(1, imf_scheme) + if (trim(imf_scheme) == 'const') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_CONST + elseif (trim(imf_scheme) == 'singular') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_SINGULAR + elseif (trim(imf_scheme) == 'ABIFM') then + immersion_freezing_scheme_type = IMMERSION_FREEZING_SCHEME_ABIFM + else + print*, "Unknown immersion freezing scheme: " // trim(imf_scheme) + immersion_freezing_scheme_type = -1 + endif + out_filename = "out/freezing_theoretical_" // trim(imf_scheme) // & + "_data.txt" ! open output open(unit=out_unit, file=out_filename, iostat=ios) if (ios /= 0) then @@ -43,17 +71,42 @@ program theoretical_freezing trim(out_filename), ' for writing: ', ios stop 1 end if - call compute_Jhet_ABIFM(temperature, abifm_m_1, abifm_c_1, Jhet_1) - call compute_Jhet_ABIFM(temperature, abifm_m_2, abifm_c_2, Jhet_2) - Jhet_mean = Jhet_1 * s_ratio_1 + Jhet_2 * s_ratio_2 - time = 0 - do while(time .le. total_time) - Phi_mean = Jhet_mean * time - frozen_fraction = 1 - exp(- const%pi * Dp_dry**2 * Phi_mean) - write(out_unit,'(e20.10)') frozen_fraction - time = time + out_dt - end do + if (immersion_freezing_scheme_type == & + IMMERSION_FREEZING_SCHEME_ABIFM) then + call compute_Jhet_ABIFM(temperature, abifm_m_1, abifm_c_1, Jhet_1) + call compute_Jhet_ABIFM(temperature, abifm_m_2, abifm_c_2, Jhet_2) + Jhet_mean = Jhet_1 * s_ratio_1 + Jhet_2 * s_ratio_2 + + time = 0 + do while(time .le. total_time) + Phi_mean = Jhet_mean * time + frozen_fraction = 1 - exp(- const%pi * Dp_dry**2 * Phi_mean) + write(out_unit,'(e20.10)') frozen_fraction + time = time + out_dt + end do + elseif (immersion_freezing_scheme_type == & + IMMERSION_FREEZING_SCHEME_SINGULAR) then + time = 0 + do while(time .le. total_time) + if (time .eq. 0) then + frozen_fraction = 0.0 + else + call compute_INAS(temperature, inas_a, inas_b, ns) + frozen_fraction = 1 - exp(- const%pi * Dp_dry**2 * ns) + end if + write(out_unit,'(e20.10)') frozen_fraction + time = time + out_dt + end do + elseif (immersion_freezing_scheme_type == & + IMMERSION_FREEZING_SCHEME_CONST) then + time = 0 + do while(time .le. total_time) + frozen_fraction = 1 - exp(freezing_rate * time) + write(out_unit,'(e20.10)') frozen_fraction + time = time + out_dt + end do + endif close(out_unit) @@ -74,6 +127,15 @@ subroutine compute_Jhet_ABIFM(T, abifm_m, abifm_c, Jhet) Jhet = 10 ** (abifm_m * (1 - a_w_ice) + abifm_c) * 10000 end subroutine compute_Jhet_ABIFM + + subroutine compute_INAS(T, inas_a, inas_b, ns) + implicit none + ! Calculate the INAS density (Niemand et al., 2012) + real(kind=dp), intent(in) :: T, inas_a, inas_b + real(kind=dp), intent(out) :: ns + ns = exp(inas_a * (T - T0) + inas_b) + end subroutine + end program theoretical_freezing From 5efbf4f453c29398f42acc50a5a24aab266b3a21 Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Fri, 19 Sep 2025 09:00:24 -0500 Subject: [PATCH 122/127] Move do_freezing_naive to spec file and add tests for naive algorithrm --- .../7_freezing/standard_setting/run_part.spec | 3 ++- src/ice_nucleation.F90 | 19 +++++++++++------- src/run_part.F90 | 20 +++++++++++++++++-- test/freezing/run_part.ABIFM.spec | 1 + test/freezing/run_part.const.spec | 1 + 5 files changed, 34 insertions(+), 10 deletions(-) diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec index c66888f13..1d6ea1563 100644 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ b/scenarios/7_freezing/standard_setting/run_part.spec @@ -45,7 +45,8 @@ do_immersion_freezing yes # whether to do freezing (yes/no) #immersion_freezing_scheme singular immersion_freezing_scheme ABIFM #immersion_freezing_scheme const -#freezing_rate -.01123456789 +#freezing_rate -.01123456789 # freezing rate for const scheme (-s^-1) +do_freezing_naive no # whether to use naive algorithm (yes/no) rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/src/ice_nucleation.F90 b/src/ice_nucleation.F90 index cd882f5ac..0cfcd913a 100644 --- a/src/ice_nucleation.F90 +++ b/src/ice_nucleation.F90 @@ -25,16 +25,14 @@ module pmc_ice_nucleation !> Type code for the ABIFM immersion freezing scheme. integer, parameter :: IMMERSION_FREEZING_SCHEME_ABIFM = 3 - !> Whether to use the binned-tau leaping algorithm for time-dependent scheme. - logical :: do_speedup = .true. - contains !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !> Main subroutine for immersion freezing simulation. subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & - env_state, del_t, immersion_freezing_scheme_type, freezing_rate) + env_state, del_t, immersion_freezing_scheme_type, & + freezing_rate, do_freezing_naive) !> Aerosol state. type(aero_state_t), intent(inout) :: aero_state @@ -48,18 +46,21 @@ subroutine ice_nucleation_immersion_freezing(aero_state, aero_data, & integer, intent(in) :: immersion_freezing_scheme_type !> Freezing rate (only used for the constant rate scheme). real(kind=dp), intent(in) :: freezing_rate + !> Whether to use the naive algorithm for time-dependent scheme. + !> (If false, use the binned tau-leaping algorithm.) + logical, intent(in) :: do_freezing_naive !> Call the immersion freezing subroutine according to the immersion !> freezing scheme. if (env_state%temp <= const%water_freeze_temp) then if ((immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_ABIFM) & .OR. (immersion_freezing_scheme_type == IMMERSION_FREEZING_SCHEME_CONST)) then - if (do_speedup) then - call ice_nucleation_immersion_freezing_time_dependent( & + if (do_freezing_naive) then + call ice_nucleation_immersion_freezing_time_dependent_naive( & aero_state, aero_data, env_state, del_t, & immersion_freezing_scheme_type, freezing_rate) else - call ice_nucleation_immersion_freezing_time_dependent_naive( & + call ice_nucleation_immersion_freezing_time_dependent( & aero_state, aero_data, env_state, del_t, & immersion_freezing_scheme_type, freezing_rate) end if @@ -489,6 +490,10 @@ subroutine spec_file_read_immersion_freezing_scheme_type(file, & !! !! If \c immersion_freezing_scheme is \c singular, the parameters INAS_a !! and INAS_b need to be provided. + !! If \c immersion_freezing_scheme is \c const, the parameter freezing_rate + !! need to be provided. + !! If \c immersion_freezing_scheme is \c ABIFM or const, a logical variable + !! \c do_freezing_naive need to be provided. !! !! See also: !! - \ref spec_file_format --- the input file text format diff --git a/src/run_part.F90 b/src/run_part.F90 index 742f09592..76a2ddcfe 100644 --- a/src/run_part.F90 +++ b/src/run_part.F90 @@ -79,6 +79,9 @@ module pmc_run_part real(kind=dp) :: INAS_b !> The freezing rate parameter for "const" scheme. real(kind=dp) :: freezing_rate + !> Whether to use the naive algorithm for time-dependent scheme. + !> (If false, use the binned tau-leaping algorithm.) + logical :: do_freezing_naive !> Allow doubling if needed. logical :: allow_doubling !> Allow halving if needed. @@ -337,6 +340,7 @@ integer function pmc_mpi_pack_size_run_part_opt(val) + pmc_mpi_pack_size_real(val%INAS_a) & + pmc_mpi_pack_size_real(val%INAS_b) & + pmc_mpi_pack_size_real(val%freezing_rate) & + + pmc_mpi_pack_size_logical(val%do_freezing_naive) & + pmc_mpi_pack_size_logical(val%allow_doubling) & + pmc_mpi_pack_size_logical(val%allow_halving) & + pmc_mpi_pack_size_logical(val%do_condensation) & @@ -395,6 +399,7 @@ subroutine pmc_mpi_pack_run_part_opt(buffer, position, val) call pmc_mpi_pack_real(buffer, position, val%INAS_a) call pmc_mpi_pack_real(buffer, position, val%INAS_b) call pmc_mpi_pack_real(buffer, position, val%freezing_rate) + call pmc_mpi_pack_logical(buffer, position, val%do_freezing_naive) call pmc_mpi_pack_logical(buffer, position, val%allow_doubling) call pmc_mpi_pack_logical(buffer, position, val%allow_halving) call pmc_mpi_pack_logical(buffer, position, val%do_condensation) @@ -454,6 +459,7 @@ subroutine pmc_mpi_unpack_run_part_opt(buffer, position, val) call pmc_mpi_unpack_real(buffer, position, val%INAS_a) call pmc_mpi_unpack_real(buffer, position, val%INAS_b) call pmc_mpi_unpack_real(buffer, position, val%freezing_rate) + call pmc_mpi_unpack_logical(buffer, position, val%do_freezing_naive) call pmc_mpi_unpack_logical(buffer, position, val%allow_doubling) call pmc_mpi_unpack_logical(buffer, position, val%allow_halving) call pmc_mpi_unpack_logical(buffer, position, val%do_condensation) @@ -718,8 +724,18 @@ subroutine spec_file_read_run_part(file, run_part_opt, aero_data, & IMMERSION_FREEZING_SCHEME_CONST) then call spec_file_read_real(file, 'freezing_rate', & run_part_opt%freezing_rate) + endif + + if ((run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_ABIFM) .or. & + (run_part_opt%immersion_freezing_scheme_type .eq. & + IMMERSION_FREEZING_SCHEME_CONST)) then + call spec_file_read_logical(file, 'do_freezing_naive', & + run_part_opt%do_freezing_naive) + endif + - else if (run_part_opt%immersion_freezing_scheme_type .eq.& + if (run_part_opt%immersion_freezing_scheme_type .eq.& IMMERSION_FREEZING_SCHEME_SINGULAR) then call spec_file_read_real(file, 'INAS_a', run_part_opt%INAS_a) call spec_file_read_real(file, 'INAS_b', run_part_opt%INAS_b) @@ -899,7 +915,7 @@ subroutine run_part_timestep(scenario, env_state, aero_data, aero_state, & if (run_part_opt%do_immersion_freezing) then call ice_nucleation_immersion_freezing(aero_state, aero_data, env_state, & run_part_opt%del_t, run_part_opt%immersion_freezing_scheme_type, & - run_part_opt%freezing_rate) + run_part_opt%freezing_rate, run_part_opt%do_freezing_naive) call ice_nucleation_melting(aero_state, aero_data, env_state) end if if (run_part_opt%do_coagulation) then diff --git a/test/freezing/run_part.ABIFM.spec b/test/freezing/run_part.ABIFM.spec index 009aed332..c1c5b7653 100644 --- a/test/freezing/run_part.ABIFM.spec +++ b/test/freezing/run_part.ABIFM.spec @@ -44,6 +44,7 @@ do_mosaic no # whether to do MOSAIC (yes/no) do_nucleation no # whether to do nucleation (yes/no) do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM +do_freezing_naive no # whether to use naive algorithm (yes/no) rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) diff --git a/test/freezing/run_part.const.spec b/test/freezing/run_part.const.spec index e28e28ee3..d5d1327f1 100644 --- a/test/freezing/run_part.const.spec +++ b/test/freezing/run_part.const.spec @@ -45,6 +45,7 @@ do_nucleation no # whether to do nucleation (yes/no) do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme const freezing_rate -.01123456789 +do_freezing_naive no # whether to use naive algorithm (yes/no) rand_init 1 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) From 03ecfb15bc817da652b543d45bd5538578fd40df Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Fri, 19 Sep 2025 17:20:04 -0500 Subject: [PATCH 123/127] Add test_freezing_4.sh and test_freezing_5.sh, including relative spec files. --- test/freezing/run_part.ABIFM.naive.spec | 53 ++++++++++++++++++++++++ test/freezing/run_part.const.naive.spec | 54 +++++++++++++++++++++++++ test/freezing/test_freezing_4.sh | 23 +++++++++++ test/freezing/test_freezing_5.sh | 23 +++++++++++ 4 files changed, 153 insertions(+) create mode 100644 test/freezing/run_part.ABIFM.naive.spec create mode 100644 test/freezing/run_part.const.naive.spec create mode 100755 test/freezing/test_freezing_4.sh create mode 100755 test/freezing/test_freezing_5.sh diff --git a/test/freezing/run_part.ABIFM.naive.spec b/test/freezing/run_part.ABIFM.naive.spec new file mode 100644 index 000000000..a1a1dd3a8 --- /dev/null +++ b/test/freezing/run_part.ABIFM.naive.spec @@ -0,0 +1,53 @@ +run_type particle # particle-resolved run +output_prefix out/ABIFM_naive/freezing_part # prefix of output files +n_repeat 10 # number of Monte Carlo repeats +n_part 10000 # total number of particles +restart no # whether to restart from saved state (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat + + +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing yes # whether to do freezing (yes/no) +immersion_freezing_scheme ABIFM +do_freezing_naive yes # whether to use naive algorithm (yes/no) + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/run_part.const.naive.spec b/test/freezing/run_part.const.naive.spec new file mode 100644 index 000000000..7a615af9f --- /dev/null +++ b/test/freezing/run_part.const.naive.spec @@ -0,0 +1,54 @@ +run_type particle # particle-resolved run +output_prefix out/const_naive/freezing_part # prefix of output files +n_repeat 10 # number of Monte Carlo repeats +n_part 10000 # total number of particles +restart no # whether to restart from saved state (yes/no) +do_select_weighting yes # whether to select weighting explicitly (yes/no) +weight_type flat + + +t_max 600 # total simulation time (s) +del_t 1 # timestep (s) +t_output 10 # output interval (0 disables) (s) +t_progress 10 # progress printing interval (0 disables) (s) + +do_camp_chem no # whether to run the campible chemistry module +do_tchem no # whether to use TChem for chemistry + +gas_data gas_data.dat # file containing gas data +gas_init gas_init.dat # initial gas mixing ratios + +aerosol_data aero_data.dat # file containing aerosol data +do_fractal no # whether to do fractal treatment +aerosol_init aero_init_dist.dat # aerosol initial condition file + +temp_profile temp.dat # temperature profile file +pressure_profile pressure.dat # pressure profile file +height_profile height.dat # height profile file +gas_emissions gas_emit.dat # gas emissions file +gas_background gas_back.dat # background gas mixing ratios file +aero_emissions aero_emit.dat # aerosol emissions file +aero_background aero_back.dat # aerosol background file +loss_function none # particle loss function + +rel_humidity 1.000 # initial relative humidity (1) +latitude 40 # latitude (degrees, -90 to 90) +longitude 0 # longitude (degrees, -180 to 180) +altitude 0 # altitude (m) +start_time 0 # start time (s since 00:00 UTC) +start_day 1 # start day of year (UTC) + +do_coagulation no # whether to do coagulation (yes/no) +do_condensation no # whether to do condensation (yes/no) +do_mosaic no # whether to do MOSAIC (yes/no) +do_nucleation no # whether to do nucleation (yes/no) +do_immersion_freezing yes # whether to do freezing (yes/no) +immersion_freezing_scheme const +freezing_rate -.01123456789 +do_freezing_naive yes # whether to use naive algorithm (yes/no) + +rand_init 1 # random initialization (0 to auto-generate) +allow_doubling yes # whether to allow doubling (yes/no) +allow_halving yes # whether to allow halving (yes/no) +record_removals no # whether to record particle removals (yes/no) +do_parallel no # whether to run in parallel (yes/no) diff --git a/test/freezing/test_freezing_4.sh b/test/freezing/test_freezing_4.sh new file mode 100755 index 000000000..6431fc809 --- /dev/null +++ b/test/freezing/test_freezing_4.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} + +# make the output directory if it doesn't exist +mkdir -p out/ABIFM_naive + +# run PartMC freezing test +../../partmc run_part.ABIFM.naive.spec + +# extract frozen fraction results to a txt file +../../test_freezing_extract out/ABIFM_naive/freezing_part + +# calculate the freezing theoretical results +#../../test_freezing_theoretical ABIFM + +# compare the PartMC versus theoretical results +../../numeric_diff --rel-tol 0.02 out/ABIFM_naive/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_ABIFM_data.txt diff --git a/test/freezing/test_freezing_5.sh b/test/freezing/test_freezing_5.sh new file mode 100755 index 000000000..f2b60b2b8 --- /dev/null +++ b/test/freezing/test_freezing_5.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# exit on error +set -e +# turn on command echoing +set -v +# make sure that the current directory is the one where this script is +cd ${0%/*} + +# make the output directory if it doesn't exist +mkdir -p out/const_naive + +# run PartMC freezing test +../../partmc run_part.const.naive.spec + +# extract frozen fraction results to a txt file +../../test_freezing_extract out/const_naive/freezing_part + +# calculate the freezing theoretical results +#../../test_freezing_theoretical const + +# compare the PartMC versus theoretical results +../../numeric_diff --rel-tol 0.02 out/const_naive/freezing_part_frozen_fraction_ensemble_mean.txt out/freezing_theoretical_const_data.txt From b6032c1f17c3f27bdc0df8f273b1927b1e5c6eab Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Wed, 24 Sep 2025 13:12:35 -0500 Subject: [PATCH 124/127] reduce number of particles --- test/freezing/run_part.ABIFM.naive.spec | 4 ++-- test/freezing/run_part.ABIFM.spec | 4 ++-- test/freezing/run_part.const.naive.spec | 4 ++-- test/freezing/run_part.const.spec | 4 ++-- test/freezing/run_part.singular.spec | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/test/freezing/run_part.ABIFM.naive.spec b/test/freezing/run_part.ABIFM.naive.spec index a1a1dd3a8..5f283b4d6 100644 --- a/test/freezing/run_part.ABIFM.naive.spec +++ b/test/freezing/run_part.ABIFM.naive.spec @@ -1,7 +1,7 @@ run_type particle # particle-resolved run output_prefix out/ABIFM_naive/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles +n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -10,7 +10,7 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.ABIFM.spec b/test/freezing/run_part.ABIFM.spec index c1c5b7653..7376ad906 100644 --- a/test/freezing/run_part.ABIFM.spec +++ b/test/freezing/run_part.ABIFM.spec @@ -1,7 +1,7 @@ run_type particle # particle-resolved run output_prefix out/ABIFM/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles +n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -10,7 +10,7 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.const.naive.spec b/test/freezing/run_part.const.naive.spec index 7a615af9f..0a7ffbcf2 100644 --- a/test/freezing/run_part.const.naive.spec +++ b/test/freezing/run_part.const.naive.spec @@ -1,7 +1,7 @@ run_type particle # particle-resolved run output_prefix out/const_naive/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles +n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -10,7 +10,7 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.const.spec b/test/freezing/run_part.const.spec index d5d1327f1..0d040271e 100644 --- a/test/freezing/run_part.const.spec +++ b/test/freezing/run_part.const.spec @@ -1,7 +1,7 @@ run_type particle # particle-resolved run output_prefix out/const/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles +n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -10,7 +10,7 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.singular.spec b/test/freezing/run_part.singular.spec index b7d93e66e..d9d19f638 100644 --- a/test/freezing/run_part.singular.spec +++ b/test/freezing/run_part.singular.spec @@ -1,7 +1,7 @@ run_type particle # particle-resolved run output_prefix out/singular/freezing_part # prefix of output files n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles +n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) weight_type flat @@ -10,7 +10,7 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) +t_progress 100 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry From ce1b70941f09362f17c17a65075e2937040767ab Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Wed, 24 Sep 2025 14:06:00 -0500 Subject: [PATCH 125/127] reduce output frequency. reduce number of runs --- test/freezing/run_part.ABIFM.naive.spec | 6 +++--- test/freezing/run_part.ABIFM.spec | 6 +++--- test/freezing/run_part.const.naive.spec | 6 +++--- test/freezing/run_part.const.spec | 6 +++--- test/freezing/run_part.singular.spec | 6 +++--- test/freezing/test_freezing_extract.F90 | 7 ++++--- test/freezing/test_freezing_theoretical.F90 | 2 +- 7 files changed, 20 insertions(+), 19 deletions(-) diff --git a/test/freezing/run_part.ABIFM.naive.spec b/test/freezing/run_part.ABIFM.naive.spec index 5f283b4d6..db526f192 100644 --- a/test/freezing/run_part.ABIFM.naive.spec +++ b/test/freezing/run_part.ABIFM.naive.spec @@ -1,6 +1,6 @@ run_type particle # particle-resolved run output_prefix out/ABIFM_naive/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats +n_repeat 5 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) @@ -9,8 +9,8 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_output 60 # output interval (0 disables) (s) +t_progress 120 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.ABIFM.spec b/test/freezing/run_part.ABIFM.spec index 7376ad906..47d8cfdff 100644 --- a/test/freezing/run_part.ABIFM.spec +++ b/test/freezing/run_part.ABIFM.spec @@ -1,6 +1,6 @@ run_type particle # particle-resolved run output_prefix out/ABIFM/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats +n_repeat 5 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) @@ -9,8 +9,8 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_output 60 # output interval (0 disables) (s) +t_progress 120 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.const.naive.spec b/test/freezing/run_part.const.naive.spec index 0a7ffbcf2..38f4f19b0 100644 --- a/test/freezing/run_part.const.naive.spec +++ b/test/freezing/run_part.const.naive.spec @@ -1,6 +1,6 @@ run_type particle # particle-resolved run output_prefix out/const_naive/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats +n_repeat 5 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) @@ -9,8 +9,8 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_output 60 # output interval (0 disables) (s) +t_progress 120 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.const.spec b/test/freezing/run_part.const.spec index 0d040271e..ca4d2ffed 100644 --- a/test/freezing/run_part.const.spec +++ b/test/freezing/run_part.const.spec @@ -1,6 +1,6 @@ run_type particle # particle-resolved run output_prefix out/const/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats +n_repeat 5 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) @@ -9,8 +9,8 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_output 60 # output interval (0 disables) (s) +t_progress 120 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/run_part.singular.spec b/test/freezing/run_part.singular.spec index d9d19f638..55a9e3660 100644 --- a/test/freezing/run_part.singular.spec +++ b/test/freezing/run_part.singular.spec @@ -1,6 +1,6 @@ run_type particle # particle-resolved run output_prefix out/singular/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats +n_repeat 5 # number of Monte Carlo repeats n_part 1000 # total number of particles restart no # whether to restart from saved state (yes/no) do_select_weighting yes # whether to select weighting explicitly (yes/no) @@ -9,8 +9,8 @@ weight_type flat t_max 600 # total simulation time (s) del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 100 # progress printing interval (0 disables) (s) +t_output 60 # output interval (0 disables) (s) +t_progress 120 # progress printing interval (0 disables) (s) do_camp_chem no # whether to run the campible chemistry module do_tchem no # whether to use TChem for chemistry diff --git a/test/freezing/test_freezing_extract.F90 b/test/freezing/test_freezing_extract.F90 index d8a48f9f2..eb7d584d9 100644 --- a/test/freezing/test_freezing_extract.F90 +++ b/test/freezing/test_freezing_extract.F90 @@ -15,7 +15,7 @@ program extract_freezing use pmc_mpi use getopt_m - integer, parameter :: N_ensemble = 10 + integer :: n_ensemble character(len=PMC_MAX_FILENAME_LEN) :: in_prefix, in_prefix_ensemble, out_filename character(len=PMC_MAX_FILENAME_LEN), allocatable :: filename_list(:) character(len=1000) :: tmp_str @@ -66,12 +66,13 @@ program extract_freezing out_filename = trim(in_prefix) // "_frozen_fraction_ensemble_mean.txt" end if - + + call input_n_files(in_prefix, n_ensemble, n_file) + allocate(filename_list(0)) write(in_prefix_ensemble, "(a,a,i4.4)") trim(in_prefix), "_", 1 call input_filename_list(in_prefix_ensemble, filename_list) - n_file = size(filename_list) allocate(frozen_fractions(n_file)) allocate(frozen_fractions_mean(n_file)) diff --git a/test/freezing/test_freezing_theoretical.F90 b/test/freezing/test_freezing_theoretical.F90 index 89eba266c..d585866de 100644 --- a/test/freezing/test_freezing_theoretical.F90 +++ b/test/freezing/test_freezing_theoretical.F90 @@ -25,7 +25,7 @@ program theoretical_freezing ! Time duration (unit: s) real(kind=dp), parameter :: total_time = 600 ! Output time interval (unit: s) - real(kind=dp), parameter :: out_dt = 10 + real(kind=dp), parameter :: out_dt = 60 ! ABIFM parameters (m and c) for species 1. real(kind=dp), parameter :: abifm_m_1 = 17.62106, abifm_c_1 = 1.42411 ! ABIFM parameters (m and c) for species 2. From 6d962a39b43750e0747c67539749a27e13788ec4 Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Wed, 24 Sep 2025 14:06:55 -0500 Subject: [PATCH 126/127] fix the fixed rand_init issue --- test/freezing/run_part.ABIFM.naive.spec | 2 +- test/freezing/run_part.ABIFM.spec | 2 +- test/freezing/run_part.const.naive.spec | 2 +- test/freezing/run_part.const.spec | 2 +- test/freezing/run_part.singular.spec | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/freezing/run_part.ABIFM.naive.spec b/test/freezing/run_part.ABIFM.naive.spec index db526f192..c2a5876f0 100644 --- a/test/freezing/run_part.ABIFM.naive.spec +++ b/test/freezing/run_part.ABIFM.naive.spec @@ -46,7 +46,7 @@ do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM do_freezing_naive yes # whether to use naive algorithm (yes/no) -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) diff --git a/test/freezing/run_part.ABIFM.spec b/test/freezing/run_part.ABIFM.spec index 47d8cfdff..6b025a404 100644 --- a/test/freezing/run_part.ABIFM.spec +++ b/test/freezing/run_part.ABIFM.spec @@ -46,7 +46,7 @@ do_immersion_freezing yes # whether to do freezing (yes/no) immersion_freezing_scheme ABIFM do_freezing_naive no # whether to use naive algorithm (yes/no) -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) diff --git a/test/freezing/run_part.const.naive.spec b/test/freezing/run_part.const.naive.spec index 38f4f19b0..76f0558b7 100644 --- a/test/freezing/run_part.const.naive.spec +++ b/test/freezing/run_part.const.naive.spec @@ -47,7 +47,7 @@ immersion_freezing_scheme const freezing_rate -.01123456789 do_freezing_naive yes # whether to use naive algorithm (yes/no) -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) diff --git a/test/freezing/run_part.const.spec b/test/freezing/run_part.const.spec index ca4d2ffed..d45d0b89f 100644 --- a/test/freezing/run_part.const.spec +++ b/test/freezing/run_part.const.spec @@ -47,7 +47,7 @@ immersion_freezing_scheme const freezing_rate -.01123456789 do_freezing_naive no # whether to use naive algorithm (yes/no) -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) diff --git a/test/freezing/run_part.singular.spec b/test/freezing/run_part.singular.spec index 55a9e3660..eb3e31e06 100644 --- a/test/freezing/run_part.singular.spec +++ b/test/freezing/run_part.singular.spec @@ -47,7 +47,7 @@ immersion_freezing_scheme singular INAS_a -0.517 INAS_b 8.934 -rand_init 1 # random initialization (0 to auto-generate) +rand_init 0 # random initialization (0 to auto-generate) allow_doubling yes # whether to allow doubling (yes/no) allow_halving yes # whether to allow halving (yes/no) record_removals no # whether to record particle removals (yes/no) From 6b136043cbc3f05a75e7e566d4b17176f0960e3a Mon Sep 17 00:00:00 2001 From: tangwhiap Date: Fri, 10 Oct 2025 09:06:10 -0500 Subject: [PATCH 127/127] Stop tracking 7_freezing scenario --- .gitignore | 1 + scenarios/7_freezing/0_README.md | 18 --- scenarios/7_freezing/1_run.sh | 29 ---- scenarios/7_freezing/2_process.sh | 9 -- scenarios/7_freezing/3_draw.py | 96 ------------- scenarios/7_freezing/4_clean.sh | 5 - scenarios/7_freezing/freezing_process.F90 | 136 ------------------ .../7_freezing/standard_setting/aero_back.dat | 6 - .../standard_setting/aero_back_dist.dat | 1 - .../7_freezing/standard_setting/aero_data.dat | 30 ---- .../7_freezing/standard_setting/aero_emit.dat | 6 - .../standard_setting/aero_emit_dist.dat | 1 - .../7_freezing/standard_setting/gas_back.dat | 7 - .../7_freezing/standard_setting/gas_data.dat | 7 - .../7_freezing/standard_setting/gas_emit.dat | 7 - .../7_freezing/standard_setting/gas_init.dat | 3 - .../7_freezing/standard_setting/height.dat | 4 - .../7_freezing/standard_setting/pressure.dat | 4 - .../7_freezing/standard_setting/run_part.spec | 55 ------- 19 files changed, 1 insertion(+), 424 deletions(-) delete mode 100644 scenarios/7_freezing/0_README.md delete mode 100755 scenarios/7_freezing/1_run.sh delete mode 100755 scenarios/7_freezing/2_process.sh delete mode 100755 scenarios/7_freezing/3_draw.py delete mode 100755 scenarios/7_freezing/4_clean.sh delete mode 100644 scenarios/7_freezing/freezing_process.F90 delete mode 100644 scenarios/7_freezing/standard_setting/aero_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/aero_back_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/aero_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/aero_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/aero_emit_dist.dat delete mode 100644 scenarios/7_freezing/standard_setting/gas_back.dat delete mode 100644 scenarios/7_freezing/standard_setting/gas_data.dat delete mode 100644 scenarios/7_freezing/standard_setting/gas_emit.dat delete mode 100644 scenarios/7_freezing/standard_setting/gas_init.dat delete mode 100644 scenarios/7_freezing/standard_setting/height.dat delete mode 100644 scenarios/7_freezing/standard_setting/pressure.dat delete mode 100644 scenarios/7_freezing/standard_setting/run_part.spec diff --git a/.gitignore b/.gitignore index 6f9897539..f8b4ede53 100644 --- a/.gitignore +++ b/.gitignore @@ -18,5 +18,6 @@ scenarios/3_condense/temp/ scenarios/3_condense/out/ scenarios/4_chamber/out/ scenarios/7_freezing/out/ +scenarios/7_freezing *.o *.mod diff --git a/scenarios/7_freezing/0_README.md b/scenarios/7_freezing/0_README.md deleted file mode 100644 index 20ad3ea54..000000000 --- a/scenarios/7_freezing/0_README.md +++ /dev/null @@ -1,18 +0,0 @@ - -# Immersion freezing scenario - -Reference: -Tang, W. (2024). Particle-resolved simulations of immersion freezing with multi-species ice nucleating particles. (Master’s thesis, University of Illinois at Urbana-Champaign). https://hdl.handle.net/2142/124611 - -This is a scenario demonstrating how to use PartMC to simulate the immersion freezing process of multiple species INPs. - -Species: Fe2O3 and illite (50:50) -Mixing state: internal mixture -Temperature: -10 to -30 degrees Celsius. -Immersion freezing scheme: ABIFM. - -1. Run 1_run.sh. This is the shell scripts for running simulation. -2. Run 2_process.sh. This is the shell scripts for extract data from netcdf files. -3. Run 3_draw.py. This creates the figure showing the frozen fraction time series in each simulation. - (the output pdf file is out/TSs.pdf) -4. (Optional) Run 4_clean.sh. This deletes all files created by the processes above. diff --git a/scenarios/7_freezing/1_run.sh b/scenarios/7_freezing/1_run.sh deleted file mode 100755 index 45caf8be5..000000000 --- a/scenarios/7_freezing/1_run.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -setDir=standard_setting -outDir=out - - -if [ ! -d "$outDir" ]; then - mkdir -p $outDir - echo "Create the folder $outDir" -else - echo "The folder $outDir exists" -fi - -cp -rp $setDir $outDir/ - -# Copy the constant settings among experiments -cp -p $setDir/*.dat . -cp -p $setDir/run_part.spec . -echo "Running $caseName ..." -# Copy the special settings for that experiment -cp -p $setDir/$expName/*.dat . -sed -i "/output_prefix /coutput_prefix ${outDir}/freezing_part # prefix of output files" run_part.spec -mkdir -p $outDir -cp -p run_part.spec $outDir -cp -p *.dat $outDir -sleep 1 - -../../build/partmc run_part.spec - diff --git a/scenarios/7_freezing/2_process.sh b/scenarios/7_freezing/2_process.sh deleted file mode 100755 index 369a07a9d..000000000 --- a/scenarios/7_freezing/2_process.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -N_ensemble=10 - -for i_ensemble in $(seq 1 $N_ensemble); do - prefix=$(printf "freezing_part_%04d " $i_ensemble) - ../../build/freezing_process out/$prefix -done - diff --git a/scenarios/7_freezing/3_draw.py b/scenarios/7_freezing/3_draw.py deleted file mode 100755 index 1577d3103..000000000 --- a/scenarios/7_freezing/3_draw.py +++ /dev/null @@ -1,96 +0,0 @@ -#!/usr/bin/env python - -import numpy as np -import glob -import matplotlib.pyplot as plt -import matplotlib.ticker as ticker - -xlabel_fontsize = 15 -ylabel_fontsize = 15 - -def read_expFile(): - fileNameList = glob.glob("out/freezing_part_*_aero_time.txt") - timeList = [] - tempList = [] - ice_ratio_mean = [] - ice_ratio_max = [] - ice_ratio_min = [] - ice_ratio = [] - - for i_file, fileName in enumerate(fileNameList): - ice_ratio_i_file = [] - with open(fileName, "r") as fr: - for iline in fr: - time, temp, ff = iline.strip().split() - if i_file == 0: - timeList.append(float(time)) - tempList.append(float(temp)) - ice_ratio_i_file.append(float(ff)) - ice_ratio.append(ice_ratio_i_file) - - timeList = np.array(timeList) - tempList = np.array(tempList) - ice_ratio = np.array(ice_ratio) - - ice_ratio_mean = ice_ratio.mean(axis = 0) - ice_ratio_max = ice_ratio.max(axis = 0) - ice_ratio_min = ice_ratio.min(axis = 0) - return { - "timeList": timeList, - "tempList": tempList, - "ice_ratio_mean": ice_ratio_mean, - "ice_ratio_max": ice_ratio_max, - "ice_ratio_min": ice_ratio_min - } - -def draw(fig, ax): - OutDir = "output" - output = read_expFile() - timeList = output["timeList"] - temperature = output["tempList"] - axt = ax.twinx() - axt.plot(timeList / 60, temperature - 273.15, color = "red") - axt.set_yticks([-40, -30, -20, -10]) - axt.set_ylim([-102.5, -5]) - axt.grid(linestyle = "--") - ice_ratio_mean = output["ice_ratio_mean"] - ice_ratio_max = output["ice_ratio_max"] - ice_ratio_min = output["ice_ratio_min"] - ax.plot( - timeList / 60, - ice_ratio_mean * 100, - color = "blue", - linewidth = 0.7 - ) - ax.fill_between( - timeList / 60, - ice_ratio_min * 100, - ice_ratio_max * 100, - color = "blue", - alpha = 0.3, - edgecolor = None - ) - ax.set_yticks([0, 20, 40, 60, 80]) - ax.set_ylim([-15, 140]) - ax.grid() - ax.xaxis.set_major_locator(ticker.MultipleLocator(1)) - for label in axt.get_yticklabels(): - label.set_fontsize(12) - axt.set_ylabel("Temperature (˚C)", loc = "top", fontsize = ylabel_fontsize) - for label in ax.get_yticklabels(): - label.set_fontsize(12) - for label in ax.get_xticklabels(): - label.set_fontsize(12) - ax.set_ylabel("Frozen fraction (%)", loc = "bottom", fontsize = ylabel_fontsize) - return fig, ax - - -if __name__ == "__main__": - - fig = plt.figure(figsize = (10, 5)) - ax = fig.add_subplot(1, 1, 1) - fig, ax = draw(fig, ax) - ax.set_xlabel("Time (min)", fontsize = xlabel_fontsize) - - plt.savefig("out/TSs.pdf") - print("The figure has been saved to out/TSs.pdf") diff --git a/scenarios/7_freezing/4_clean.sh b/scenarios/7_freezing/4_clean.sh deleted file mode 100755 index ce836dcdc..000000000 --- a/scenarios/7_freezing/4_clean.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -rm -f *.dat -rm -fr out -rm -f run_part.spec diff --git a/scenarios/7_freezing/freezing_process.F90 b/scenarios/7_freezing/freezing_process.F90 deleted file mode 100644 index 636b11855..000000000 --- a/scenarios/7_freezing/freezing_process.F90 +++ /dev/null @@ -1,136 +0,0 @@ -!! Copyright (C) 2009-2012 Matthew West -! Licensed under the GNU General Public License version 2 or (at your -! option) any later version. See the file COPYING for details. - -!> \file -!> The freezing_process program. - -!> Read NetCDF output files and write out the time evolution of -!> temperature and frozen fraction in text format. -program freezing_process - - use pmc_aero_state - use pmc_aero_particle - use pmc_output - use pmc_mpi - use getopt_m - - character(len=PMC_MAX_FILENAME_LEN) :: in_prefix, out_filename - character(len=PMC_MAX_FILENAME_LEN), allocatable :: filename_list(:) - character(len=1000) :: tmp_str - type(aero_data_t) :: aero_data - type(aero_state_t) :: aero_state - type(env_state_t) :: env_state - integer :: index, i_repeat, i_spec, out_unit - integer :: i_file, n_file - real(kind=dp) :: time, del_t - character(len=PMC_UUID_LEN) :: uuid, run_uuid - real(kind=dp), allocatable :: times(:), temperatures(:), frozen_fractions(:) - type(option_s) :: opts(2) - - call pmc_mpi_init() - - opts(1) = option_s("help", .false., 'h') - opts(2) = option_s("output", .true., 'o') - - out_filename = "" - - do - select case(getopt("ho:", opts)) - case(char(0)) - exit - case('h') - call print_help() - stop - case('o') - out_filename = optarg - case( '?' ) - call print_help() - call die_msg(514364550, 'unknown option: ' // trim(optopt)) - case default - call print_help() - call die_msg(603100341, 'unhandled option: ' // trim(optopt)) - end select - end do - - if (optind /= command_argument_count()) then - call print_help() - call die_msg(967032896, 'expected exactly one non-option prefix argument') - end if - - call get_command_argument(optind, in_prefix) - - if (out_filename == "") then - out_filename = trim(in_prefix) // "_aero_time.txt" - end if - - allocate(filename_list(0)) - call input_filename_list(in_prefix, filename_list) - n_file = size(filename_list) - call assert_msg(323514871, n_file > 0, & - "no NetCDF files found with prefix: " // trim(in_prefix)) - - call input_state(filename_list(1), index, time, del_t, i_repeat, uuid, & - aero_data=aero_data, aero_state=aero_state, env_state=env_state) - run_uuid = uuid - - allocate(times(n_file)) - allocate(temperatures(n_file)) - allocate(frozen_fractions(n_file)) - - do i_file = 1,n_file - call input_state(filename_list(i_file), index, time, del_t, i_repeat, & - uuid, aero_data=aero_data, aero_state=aero_state, env_state=env_state) - - call assert_msg(397906326, uuid == run_uuid, & - "UUID mismatch between " // trim(filename_list(1)) // " and " & - // trim(filename_list(i_file))) - - times(i_file) = time - temperatures(i_file) = env_state%temp - frozen_fractions(i_file) = aero_state_frozen_fraction(aero_state, aero_data) - - end do - - write(*,'(a,a)') "Output file: ", trim(out_filename) - write(*,'(a)') " Each row of output is one time." - write(*,'(a)') " The columns of output are:" - write(*,'(a)') " column 1: time (s)" - write(*,'(a)') " column 2: temperature (K)" - write(*,'(a)') " column 3: frozen fraction (unitless)" - - call open_file_write(out_filename, out_unit) - do i_file = 1,n_file - write(out_unit, '(e30.15e3)', advance='no') times(i_file) - write(out_unit, '(e30.15e3)', advance='no') temperatures(i_file) - write(out_unit, '(e30.15e3)', advance='no') frozen_fractions(i_file) - write(out_unit, '(a)') '' - end do - call close_file(out_unit) - - deallocate(times) - deallocate(temperatures) - deallocate(frozen_fractions) - deallocate(filename_list) - - call pmc_mpi_finalize() - -contains - - subroutine print_help() - - write(*,'(a)') 'Usage: freezing_process [options] ' - write(*,'(a)') '' - write(*,'(a)') 'options are:' - write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' - write(*,'(a)') '' - write(*,'(a)') 'Examples:' - write(*,'(a)') ' freezing_process freezing_part_0001' - write(*,'(a)') '' - - end subroutine print_help - -end program freezing_process - - diff --git a/scenarios/7_freezing/standard_setting/aero_back.dat b/scenarios/7_freezing/standard_setting/aero_back.dat deleted file mode 100644 index 3879b8f6b..000000000 --- a/scenarios/7_freezing/standard_setting/aero_back.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_back_dist.dat diff --git a/scenarios/7_freezing/standard_setting/aero_back_dist.dat b/scenarios/7_freezing/standard_setting/aero_back_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/aero_back_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/aero_data.dat b/scenarios/7_freezing/standard_setting/aero_data.dat deleted file mode 100644 index 3735cb147..000000000 --- a/scenarios/7_freezing/standard_setting/aero_data.dat +++ /dev/null @@ -1,30 +0,0 @@ -# dens (kg/m^3) ions in soln (1) molec wght (kg/mole) kappa (1) abifm_m (1) abifm_c (1) -H2O 1000 0 18d-3 0 0 0 -#OIN 2600 0 1d-3 0.1 28.13797 -2.92414 - -ILT 2750 0 389.34d-3 0.003 54.48075 -10.66873 -# Illite: -# dens, molec wght: http://www.webmineral.com/data/Illite.shtml#.ZA0JpezMJ_Q -# kappa: 0.1039/b901585j - -#Al2O3 3970 0 101.96d-3 0.01 14.96639 1.60671 -# Aluminium oxide: -# dens, molec wght: https://en.wikipedia.org/wiki/Aluminium_oxide -# kappa: [unknown] - -Fe2O3 5240 0 159.69d-3 0.01 17.62106 1.42411 -# Iron(III) oxide: -# den, molec wght: https://en.wikipedia.org/wiki/Iron(III)_oxide -# kappa: [unknown] - -#KLN 2650 0 258.16d-3 0.023 54.58834 -10.54758 -# Kaolinite -# den: https://cameochemicals.noaa.gov/chemical/25036 -# molec wght: http://webmineral.com/data/Kaolinite.shtml#.ZA0TTezMJ_Q -# kappa: 10.1039/b901585j -# - -#NVF 5240 0 1d-3 0.01 0.0 0.0 -# NeVer Freeze (other parameters are same as OIN) -#VOLC 2600 0 1d-3 0.01 28.13797 -2.92414 -# Volcano (Steinke et al., 2011) diff --git a/scenarios/7_freezing/standard_setting/aero_emit.dat b/scenarios/7_freezing/standard_setting/aero_emit.dat deleted file mode 100644 index 34fb5fb66..000000000 --- a/scenarios/7_freezing/standard_setting/aero_emit.dat +++ /dev/null @@ -1,6 +0,0 @@ -# time (s) -# rate (s^{-1}) -# aerosol distribution filename -time 0 -rate 0 -dist aero_emit_dist.dat diff --git a/scenarios/7_freezing/standard_setting/aero_emit_dist.dat b/scenarios/7_freezing/standard_setting/aero_emit_dist.dat deleted file mode 100644 index c56ed75ed..000000000 --- a/scenarios/7_freezing/standard_setting/aero_emit_dist.dat +++ /dev/null @@ -1 +0,0 @@ -# empty aerosol state with no particles diff --git a/scenarios/7_freezing/standard_setting/gas_back.dat b/scenarios/7_freezing/standard_setting/gas_back.dat deleted file mode 100644 index 38737461f..000000000 --- a/scenarios/7_freezing/standard_setting/gas_back.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# mixing ratios (ppb) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/gas_data.dat b/scenarios/7_freezing/standard_setting/gas_data.dat deleted file mode 100644 index 5bf86180b..000000000 --- a/scenarios/7_freezing/standard_setting/gas_data.dat +++ /dev/null @@ -1,7 +0,0 @@ -# list of gas species -H2SO4 -HNO3 -HCl -NH3 -NO -NO2 diff --git a/scenarios/7_freezing/standard_setting/gas_emit.dat b/scenarios/7_freezing/standard_setting/gas_emit.dat deleted file mode 100644 index 80db9bcf2..000000000 --- a/scenarios/7_freezing/standard_setting/gas_emit.dat +++ /dev/null @@ -1,7 +0,0 @@ -# time (s) -# rate (s^{-1}) -# emissions (mol m^{-2} s^{-1}) -time 0 -rate 1 -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/gas_init.dat b/scenarios/7_freezing/standard_setting/gas_init.dat deleted file mode 100644 index 5a02fb933..000000000 --- a/scenarios/7_freezing/standard_setting/gas_init.dat +++ /dev/null @@ -1,3 +0,0 @@ -# species init mixing ratio (ppb) -# these lines intentionally left empty -# to serve as an empty gas state diff --git a/scenarios/7_freezing/standard_setting/height.dat b/scenarios/7_freezing/standard_setting/height.dat deleted file mode 100644 index d4927c431..000000000 --- a/scenarios/7_freezing/standard_setting/height.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# height (m) -time 0 -height 1000 diff --git a/scenarios/7_freezing/standard_setting/pressure.dat b/scenarios/7_freezing/standard_setting/pressure.dat deleted file mode 100644 index 40b74628f..000000000 --- a/scenarios/7_freezing/standard_setting/pressure.dat +++ /dev/null @@ -1,4 +0,0 @@ -# time (s) -# pressure (Pa) -time 0 600 -pressure 50000.000 50000.000 diff --git a/scenarios/7_freezing/standard_setting/run_part.spec b/scenarios/7_freezing/standard_setting/run_part.spec deleted file mode 100644 index 1d6ea1563..000000000 --- a/scenarios/7_freezing/standard_setting/run_part.spec +++ /dev/null @@ -1,55 +0,0 @@ -run_type particle # particle-resolved run -output_prefix out/freezing_part # prefix of output files -n_repeat 10 # number of Monte Carlo repeats -n_part 10000 # total number of particles -restart no # whether to restart from saved state (yes/no) -do_select_weighting yes # whether to select weighting explicitly (yes/no) -weight_type flat - -t_max 600 # total simulation time (s) -del_t 1 # timestep (s) -t_output 10 # output interval (0 disables) (s) -t_progress 10 # progress printing interval (0 disables) (s) - -do_camp_chem no # whether to run the campible chemistry module -do_tchem no # whether to use TChem for chemistry - -gas_data gas_data.dat # file containing gas data -gas_init gas_init.dat # initial gas mixing ratios - -aerosol_data aero_data.dat # file containing aerosol data -do_fractal no # whether to do fractal treatment -aerosol_init aero_init_dist.dat # aerosol initial condition file - -temp_profile temp.dat # temperature profile file -pressure_profile pressure.dat # pressure profile file -height_profile height.dat # height profile file -gas_emissions gas_emit.dat # gas emissions file -gas_background gas_back.dat # background gas mixing ratios file -aero_emissions aero_emit.dat # aerosol emissions file -aero_background aero_back.dat # aerosol background file -loss_function none # particle loss function - -rel_humidity 1.000 # initial relative humidity (1) -latitude 40 # latitude (degrees, -90 to 90) -longitude 0 # longitude (degrees, -180 to 180) -altitude 0 # altitude (m) -start_time 0 # start time (s since 00:00 UTC) -start_day 1 # start day of year (UTC) - -do_coagulation no # whether to do coagulation (yes/no) -do_condensation no # whether to do condensation (yes/no) -do_mosaic no # whether to do MOSAIC (yes/no) -do_nucleation no # whether to do nucleation (yes/no) -do_immersion_freezing yes # whether to do freezing (yes/no) -#immersion_freezing_scheme singular -immersion_freezing_scheme ABIFM -#immersion_freezing_scheme const -#freezing_rate -.01123456789 # freezing rate for const scheme (-s^-1) -do_freezing_naive no # whether to use naive algorithm (yes/no) - -rand_init 0 # random initialization (0 to auto-generate) -allow_doubling yes # whether to allow doubling (yes/no) -allow_halving yes # whether to allow halving (yes/no) -record_removals no # whether to record particle removals (yes/no) -do_parallel no # whether to run in parallel (yes/no)